Home
last modified time | relevance | path

Searched refs:other (Results 1 – 25 of 597) sorted by relevance

12345678910>>...24

/trunk/main/offapi/com/sun/star/awt/
H A DImagePosition.idl39 …/** specifies that the image should be positioned at the left of, and top-aligned to, the other ob…
47 …ecifies that the image should be positioned at the left of, and bottom-aligned to, the other object
51 …specifies that the image should be positioned at the right of, and top-aligned to, the other object
59 …cifies that the image should be positioned at the right of, and bottom-aligned to, the other object
63 /** specifies that the image should be positioned above and left-aligned to the other object
67 …/** specifies that the image should be positioned above and horizontally centered to the other obj…
71 /** specifies that the image should be positioned above and right-aligned to the other object
75 /** specifies that the image should be positioned below and left-aligned to the other object
79 …/** specifies that the image should be positioned below and horizontally centered to the other obj…
83 …/** specifies that the image should be positioned below and right-aligned centered to the other ob…
[all …]
H A DXKeyHandler.idl52 The return value decides about whether other handlers will be
57 when known, with that of other handlers.</p>
65 When <FALSE/> is returned the other handlers are called and a
67 Otherwise, when <TRUE/> is returned, no other handler will be
76 value decides about whether other handlers will be called and a
81 when known, with that of other handlers.</p>
86 When <FALSE/> is returned the other handlers are called and a
88 Otherwise, when <TRUE/> is returned, no other handler will be
/trunk/main/l10ntools/scripts/tool/
H A Dpseudo.py34 def __or__(self, other): argument
36 if self._list != None and other != None:
38 tmplist.extend(other)
43 def __sub__(self,other): argument
45 if self._list != None and other != None:
47 [tmplist.remove(key) for key in other if key in tmplist]
52 def __and__(self, other): argument
54 if other != None and self._list != None:
55 [tmplist.append(key) for key in self._list if key in other]
/trunk/main/xmlsecurity/source/xmlsec/nss/
H A Dsanextension_nssimpl.cxx136 …[i].Value <<= ::rtl::OUString((const sal_Char*)current->name.other.data, current->name.other.len, … in getAlternativeNames()
140 …[i].Value <<= ::rtl::OUString((const sal_Char*)current->name.other.data, current->name.other.len, … in getAlternativeNames()
159 …[i].Value <<= ::rtl::OUString((const sal_Char*)current->name.other.data, current->name.other.len, … in getAlternativeNames()
164 Sequence< sal_Int8 > ipAddress( current->name.other.len ) ; in getAlternativeNames()
165 for( unsigned int r = 0; r < current->name.other.len ; r ++ ) in getAlternativeNames()
166 ipAddress[r] = *( current->name.other.data + r ) ; in getAlternativeNames()
175 rtl::OString nssOid = ::rtl::OString(CERT_GetOidString(&current->name.other)); in getAlternativeNames()
/trunk/main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typedesc/
H A DMethodDescription.java45 MethodDescription(IMethodDescription other, int index) { in MethodDescription() argument
47 other.getName(), index, other.isOneway(), other.getInSignature(), in MethodDescription()
48 other.getOutSignature(), other.getReturnSignature(), in MethodDescription()
49 other.getMethod()); in MethodDescription()
/trunk/main/configmgr/source/
H A Dpropertynode.cxx94 PropertyNode::PropertyNode(PropertyNode const & other): in PropertyNode() argument
95 Node(other), staticType_(other.staticType_), nillable_(other.nillable_), in PropertyNode()
96 value_(other.value_), externalDescriptor_(other.externalDescriptor_), in PropertyNode()
97 extension_(other.extension_) in PropertyNode()
H A Dsetnode.cxx104 SetNode::SetNode(SetNode const & other, bool keepTemplateName): in SetNode() argument
105 Node(other), defaultTemplateName_(other.defaultTemplateName_), in SetNode()
106 additionalTemplateNames_(other.additionalTemplateNames_), in SetNode()
107 mandatory_(other.mandatory_) in SetNode()
109 cloneNodeMap(other.members_, &members_); in SetNode()
111 templateName_ = other.templateName_; in SetNode()
H A Dgroupnode.cxx67 GroupNode::GroupNode(GroupNode const & other, bool keepTemplateName): in GroupNode() argument
68 Node(other), extensible_(other.extensible_), mandatory_(other.mandatory_) in GroupNode()
70 cloneNodeMap(other.members_, &members_); in GroupNode()
72 templateName_ = other.templateName_; in GroupNode()
H A Dlocalizedpropertynode.cxx67 LocalizedPropertyNode const & other): in LocalizedPropertyNode() argument
68 Node(other), staticType_(other.staticType_), nillable_(other.nillable_) in LocalizedPropertyNode()
70 cloneNodeMap(other.members_, &members_); in LocalizedPropertyNode()
/trunk/main/binaryurp/source/
H A Dbinaryany.cxx60 BinaryAny::BinaryAny(BinaryAny const & other) throw () { in BinaryAny() argument
61 uno_type_any_construct(&data_, other.data_.pData, other.data_.pType, 0); in BinaryAny()
68 BinaryAny & BinaryAny::operator =(BinaryAny const & other) throw () { in operator =() argument
69 if (&other != this) { in operator =()
70 uno_type_any_assign(&data_, other.data_.pData, other.data_.pType, 0, 0); in operator =()
/trunk/main/testtools/source/bridgetest/
H A Dcurrentcontextchecker.cxx89 ::test::testtools::bridgetest::XCurrentContextChecker > const & other, in perform()
95 return performCheck(other, setSteps, checkSteps); in perform()
97 return performCheck(other, setSteps, checkSteps); in perform()
103 ::test::testtools::bridgetest::XCurrentContextChecker > const & other, in performCheck()
106 OSL_ASSERT(other.is() && checkSteps >= 0); in performCheck()
122 return other->perform( in performCheck()
/trunk/main/sal/inc/systools/win32/
H A Dcomtools.hxx84 COMReference(const COMReference<T>& other) : in COMReference() argument
85 com_ptr_(other.com_ptr_) in COMReference()
90 COMReference<T>& operator=(const COMReference<T>& other) in operator =() argument
92 if (other.com_ptr_) in operator =()
93 other.com_ptr_->AddRef(); in operator =()
95 com_ptr_ = other.com_ptr_; in operator =()
/trunk/main/scripting/java/com/sun/star/script/framework/container/
H A DScriptEntry.java82 public boolean equals(ScriptEntry other) { in equals() argument
83 if (language.equals(other.getLanguage()) && in equals()
84 languagename.equals(other.getLanguageName()) && in equals()
85 logicalname.equals(other.getLogicalName()) && in equals()
86 languagedepprops.equals(other.getLanguageProperties()) && in equals()
87 location.equals(other.getLocation())) in equals()
/trunk/main/sw/qa/complex/writer/
H A DTextPortionEnumerationTest.java120 boolean equals(MarkNode other) { in equals() argument
121 return (other.m_Name.equals(m_Name)) && (other.m_isPoint == m_isPoint) in equals()
140 public boolean equals(Object other) { in equals() argument
174 public boolean equals(Object other) { in equals() argument
204 public boolean equals(Object other) { in equals() argument
242 boolean equals(ContentNode other) { in equals() argument
252 public boolean equals(Object other) { in equals() argument
253 return (other instanceof TextNode) && super.equals((ContentNode) other); in equals()
262 public boolean equals(Object other) { in equals() argument
279 public boolean equals(Object other) { in equals() argument
[all …]
/trunk/main/reportbuilder/java/com/sun/star/report/
H A DSDBCReportDataFactory.java103 final RowSetProperties other = (RowSetProperties) obj; in equals() local
104 …if (this.escapeProcessing != other.escapeProcessing && (this.escapeProcessing == null || !this.esc… in equals()
108 if (this.commandType != other.commandType) in equals()
112 …if (this.maxRows != other.maxRows && (this.maxRows == null || !this.maxRows.equals(other.maxRows))) in equals()
116 … if ((this.command == null) ? (other.command != null) : !this.command.equals(other.command)) in equals()
120 if ((this.filter == null) ? (other.filter != null) : !this.filter.equals(other.filter)) in equals()
/trunk/main/toolkit/src2xml/source/
H A Dsrclexer.py127 def copyProperties (self, other): argument
131 self.headerDict = other.headerDict
132 self.debug = other.debug
133 self.debugMacro = other.debugMacro
134 self.includeDirs = other.includeDirs[:]
135 self.expandHeaders = other.expandHeaders
136 self.inMacroDefine = other.inMacroDefine
137 self.stopOnHeader = other.stopOnHeader
/trunk/main/testtools/com/sun/star/comp/bridge/
H A DCurrentContextChecker.java36 XCurrentContextChecker other, int setSteps, int checkSteps) in perform() argument
48 return performCheck(other, setSteps, checkSteps); in perform()
53 return performCheck(other, setSteps, checkSteps); in perform()
58 XCurrentContextChecker other, int setSteps, int checkSteps) in performCheck() argument
70 return other.perform( in performCheck()
/trunk/main/
H A DLICENSE_category_b52 1.5. "Executable" means Covered Code in any form other than Source
114 (a) under intellectual property rights (other than patent or
139 (a) under intellectual property rights (other than patent or
143 unmodified basis, with other Modifications, as Covered Code
635 means any form of the work other than Source Code Form.
749 applicable copyright doctrines of fair use, fair dealing, or other
1518 that Contributor alone and not by any other party; and
1737 by that Contributor alone and not by any other party; and
1889 however, cannot be released under any other type of license. The
1910 writer or other person who contributed to the Font Software.
[all …]
/trunk/main/offapi/com/sun/star/embed/
H A DXStorage.idl180 wraps other exceptions
233 wraps other exceptions
272 wraps other exceptions
307 wraps other exceptions
359 wraps other exceptions
392 wraps other exceptions
425 wraps other exceptions
516 wraps other exceptions
551 wraps other exceptions
592 wraps other exceptions
[all …]
/trunk/main/sysui/desktop/solaris/
H A Dprototype13 d none usr/share/applications 0755 root other
16 d none usr/share/application-registry 0755 root other
17 d none usr/share/mime-info 0755 root other
18 d none usr/share/pixmaps 0755 root other
19 d none share/mime 0755 root other
20 d none share/mime/packages 0755 root other
/trunk/main/solenv/bin/modules/installer/
H A Dlogger.pm363 my ($self, $other) = @_;
369 foreach my $line (@{$other->{'lines'}})
387 my ($self, $other) = @_;
390 if (defined $other)
392 $self->{'forward'} = [$other];
/trunk/main/pyuno/source/module/
H A Dpyuno.cxx654 PyUNO *other = reinterpret_cast< PyUNO *> (that ); in PyUNO_richcompare() local
656 … com::sun::star::uno::TypeClass tcOther = other->members->wrappedObject.getValueTypeClass(); in PyUNO_richcompare()
664 … Reference< XMaterialHolder > xOther( other->members->xInvocation,UNO_QUERY ); in PyUNO_richcompare()
675 if( me->members->wrappedObject == other->members->wrappedObject ) in PyUNO_richcompare()
723 PyUNO *other = reinterpret_cast< PyUNO *> (that ); in PyUNO_cmp() local
725 … com::sun::star::uno::TypeClass tcOther = other->members->wrappedObject.getValueTypeClass(); in PyUNO_cmp()
733 Reference< XMaterialHolder > xOther( other->members->xInvocation,UNO_QUERY ); in PyUNO_cmp()
739 if( me->members->wrappedObject == other->members->wrappedObject ) in PyUNO_cmp()
/trunk/main/offapi/com/sun/star/drawing/
H A DXPresenterHelper.idl50 <p>With time some, maybe all, methods can moved to other, better suited,
61 by other windows that lie behind it.
71 child windows are painted. This is the other half of allowing
131 /** Load a bitmap from a file or other accessible resource that can be
144 /** Capture the mouse so that no other window will receive mouse events.
149 mouse pointer moves outside the window or over other windows.
/trunk/main/offapi/com/sun/star/chart/
H A DChartAxisPosition.idl42 …/** Cross the other axes at zero. If zero is not contained in the current scale the value is used …
48 /** Cross the other axes at their minimum scale value.
54 /** Cross the other axes at their maximum scale value.
60 /** Cross the other axes at the value specified in the property CrossoverValue.
/trunk/main/offapi/com/sun/star/text/
H A DMailMerge.idl98 <p>For the interaction of this property with other data access relevant properties, see
108 <p>For the interaction of this property with other data access relevant properties, see
117 <p>For the interaction of this property with other data access relevant properties, see
135 <p>For the interaction of this property with other data access relevant properties, see
144 <p>For the interaction of this property with other data access relevant properties, see
162 <p>For the interaction of this property with other data access relevant properties, see
171 <p>For the interaction of this property with other data access relevant properties, see
180 <p>For the interaction of this property with other data access relevant properties, see

Completed in 133 milliseconds

12345678910>>...24