/prebuilt/linux-x86_64/swt/ |
NOTICE | 59 Patents. The patent license shall not apply to any other combinations 65 patent or other intellectual property rights of any other entity. Each 67 any other entity based on infringement of intellectual property rights 70 secure any other intellectual property rights needed, if any. For 98 offered by that Contributor alone and not by any other party; and 124 other Contributors. Therefore, if a Contributor includes the Program in 126 Contributor") hereby agrees to defend and indemnify every other 128 costs (collectively "Losses") arising from claims, lawsuits and other 147 defend claims against the other Contributors related to thos [all...] |
/prebuilt/windows/swt/ |
NOTICE | 59 Patents. The patent license shall not apply to any other combinations 65 patent or other intellectual property rights of any other entity. Each 67 any other entity based on infringement of intellectual property rights 70 secure any other intellectual property rights needed, if any. For 98 offered by that Contributor alone and not by any other party; and 124 other Contributors. Therefore, if a Contributor includes the Program in 126 Contributor") hereby agrees to defend and indemnify every other 128 costs (collectively "Losses") arising from claims, lawsuits and other 147 defend claims against the other Contributors related to thos [all...] |
/prebuilt/windows-x86_64/swt/ |
NOTICE | 59 Patents. The patent license shall not apply to any other combinations 65 patent or other intellectual property rights of any other entity. Each 67 any other entity based on infringement of intellectual property rights 70 secure any other intellectual property rights needed, if any. For 98 offered by that Contributor alone and not by any other party; and 124 other Contributors. Therefore, if a Contributor includes the Program in 126 Contributor") hereby agrees to defend and indemnify every other 128 costs (collectively "Losses") arising from claims, lawsuits and other 147 defend claims against the other Contributors related to thos [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/ |
NOTICE | 57 Patents. The patent license shall not apply to any other combinations 63 patent or other intellectual property rights of any other entity. Each 65 any other entity based on infringement of intellectual property rights 68 secure any other intellectual property rights needed, if any. For 96 offered by that Contributor alone and not by any other party; and 122 other Contributors. Therefore, if a Contributor includes the Program in 124 Contributor") hereby agrees to defend and indemnify every other 126 costs (collectively "Losses") arising from claims, lawsuits and other 145 defend claims against the other Contributors related to thos [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/ |
NOTICE | 57 Patents. The patent license shall not apply to any other combinations 63 patent or other intellectual property rights of any other entity. Each 65 any other entity based on infringement of intellectual property rights 68 secure any other intellectual property rights needed, if any. For 96 offered by that Contributor alone and not by any other party; and 122 other Contributors. Therefore, if a Contributor includes the Program in 124 Contributor") hereby agrees to defend and indemnify every other 126 costs (collectively "Losses") arising from claims, lawsuits and other 145 defend claims against the other Contributors related to thos [all...] |
/external/astl/src/ |
string.cpp | 12 * the documentation and/or other materials provided with the 340 // Specialization to append from other strings' iterators. 378 int string::compare(const string& other) const 380 if (this == &other) 384 else if (mLength == other.mLength) 386 return memcmp(mData, other.mData, mLength); 390 return mLength < other.mLength ? -1 : 1; 394 int string::compare(const value_type *other) const 396 if (NULL == other) 400 return strcmp(mData, other); [all...] |
/external/webkit/JavaScriptCore/wtf/ |
ListHashSet.h | 263 bool operator==(const iterator& other) const { return m_iterator == other.m_iterator; } 264 bool operator!=(const iterator& other) const { return m_iterator != other.m_iterator; } 327 bool operator==(const const_iterator& other) const 329 return m_position == other.m_position; 331 bool operator!=(const const_iterator& other) const 333 return m_position != other.m_position; 367 inline ListHashSet<T, U>::ListHashSet(const ListHashSet& other) 372 const_iterator end = other.end() [all...] |
/cts/tools/dasm/src/java_cup/ |
action_part.java | 57 public boolean equals(action_part other) 60 return other != null && super.equals(other) && 61 other.code_string().equals(code_string()); 67 public boolean equals(Object other) 69 if (!(other instanceof action_part)) 72 return equals((action_part)other);
|
parse_action.java | 6 * Objects of this base class will default to ERROR, while the other two 55 public boolean equals(parse_action other) 58 return other != null && other.kind() == ERROR; 64 public boolean equals(Object other) 66 if (other instanceof parse_action) 67 return equals((parse_action)other);
|
production_part.java | 51 public boolean equals(production_part other) 53 if (other == null) return false; 57 return label().equals(other.label()); 59 return other.label() == null; 65 public boolean equals(Object other) 67 if (!(other instanceof production_part)) 70 return equals((production_part)other);
|
symbol_part.java | 61 public boolean equals(symbol_part other) 63 return other != null && super.equals(other) && 64 the_symbol().equals(other.the_symbol()); 70 public boolean equals(Object other) 72 if (!(other instanceof symbol_part)) 75 return equals((symbol_part)other);
|
/dalvik/dx/src/com/android/dx/rop/annotation/ |
Annotation.java | 75 public boolean equals(Object other) { 76 if (! (other instanceof Annotation)) { 80 Annotation otherAnnotation = (Annotation) other; 99 public int compareTo(Annotation other) { 100 int result = type.compareTo(other.type); 106 result = visibility.compareTo(other.visibility); 113 Iterator<NameValuePair> otherIter = other.elements.values().iterator();
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/ |
DocumentBuilderSetting.java | 221 * @param other 222 * other setting, may not be null. 225 public final boolean hasConflict(DocumentBuilderSetting other) { 226 if (other == null) { 227 throw new NullPointerException("other"); 229 if (other == this) { 232 return strategy.hasConflict(other.strategy);
|
/dalvik/libcore/nio/src/main/java/java/nio/ |
ReadWriteHeapByteBuffer.java | 32 static ReadWriteHeapByteBuffer copy(HeapByteBuffer other, int markOfOther) { 34 other.backingArray, other.capacity(), other.offset); 35 buf.limit = other.limit(); 36 buf.position = other.position(); 38 buf.order(other.order());
|
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
DocumentBuilderSetting.java | 221 * @param other 222 * other setting, may not be null. 225 public final boolean hasConflict(DocumentBuilderSetting other) { 226 if (other == null) { 227 throw new NullPointerException("other"); 229 if (other == this) { 232 return strategy.hasConflict(other.strategy);
|
/external/proguard/src/proguard/classfile/editor/ |
ComparableConstant.java | 88 public int compareTo(Object other) 90 ComparableConstant otherComparableConstant = (ComparableConstant)other; 187 public boolean equals(Object other) 189 return other != null && 190 this.getClass().equals(other.getClass()) && 191 this.getConstant().getClass().equals(((ComparableConstant)other).getConstant().getClass()) && 192 this.compareTo(other) == 0;
|
/external/stlport/test/unit/ |
sort_test.cpp | 81 bool operator == (const Data& other) const 82 { return m_index == other.m_index && m_value == other.m_value; } 83 bool operator < (const Data& other) const 84 { return m_value < other.m_value; } 166 SortTestAux (SortTestAux const&other) : _b(other._b) {
|
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/ |
LockSupport.java | 13 * Basic thread blocking primitives for creating locks and other 32 * {@code park} method may also return at any other time, for "no 44 * where neither {@code canProceed} nor any other actions prior to the 116 * <li>Some other thread invokes {@link #unpark unpark} with the 119 * <li>Some other thread {@linkplain Thread#interrupt interrupts} 144 * <li>Some other thread invokes {@link #unpark unpark} with the 147 * <li>Some other thread {@linkplain Thread#interrupt interrupts} 178 * <li>Some other thread invokes {@link #unpark unpark} with the 181 * <li>Some other thread {@linkplain Thread#interrupt interrupts}
|
/build/tools/releasetools/ |
both_generator.py | 30 def AppendScript(self, other): 31 self.edify.AppendScript(other.edify) 32 self.amend.AppendScript(other.amend)
|
/dalvik/dx/src/com/android/dx/cf/code/ |
ReturnAddress.java | 86 public boolean equals(Object other) { 87 if (!(other instanceof ReturnAddress)) { 91 return subroutineAddress == ((ReturnAddress) other).subroutineAddress;
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstFieldRef.java | 67 protected int compareTo0(Constant other) { 68 int cmp = super.compareTo0(other); 74 CstFieldRef otherField = (CstFieldRef) other;
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
GLVertex.java | 44 public boolean equals(Object other) { 45 if (other instanceof GLVertex) { 46 GLVertex v = (GLVertex)other;
|
/external/icu4c/common/ |
rbbinode.h | 88 RBBINode(const RBBINode &other); 102 RBBINode &operator = (const RBBINode &other); // No defs. 103 UBool operator == (const RBBINode &other); // Private, so these functions won't accidently be used.
|
uvectr32.h | 77 * Assign this object to another (make this a copy of 'other'). 80 void assign(const UVector32& other, UErrorCode &ec); 87 UBool operator==(const UVector32& other); 92 inline UBool operator!=(const UVector32& other); 106 UBool equals(const UVector32 &other) const; 114 UBool containsAll(const UVector32& other) const; 116 UBool removeAll(const UVector32& other); 118 UBool retainAll(const UVector32& other); 149 * @param other vector to be checked for containment 152 UBool containsNone(const UVector32& other) const [all...] |
/external/kernel-headers/original/linux/ |
smp.h | 37 * Prepare machine for booting other CPUs. 52 * Call a function on all other processors 69 #define MSG_CALL_FUNCTION 0x0004 /* Call function on all other CPUs */
|