/system/wlan/ti/sta_dk_4_0_4_32/CUDK/Inc/ |
TI_AdapterSEC.h | 48 Return: TI_RESULT_OK on success. Any other value indicates an error. 67 Return: TI_RESULT_OK on success. Any other value indicates an error. 81 Return: TI_RESULT_OK on success. Any other value indicates an error. 104 Return: TI_RESULT_OK on success. Any other value indicates an error. 119 Return: TI_RESULT_OK on success. Any other value indicates an error. 132 Return: TI_RESULT_OK on success. Any other value indicates an error. 153 Return: TI_RESULT_OK on success. Any other value indicates an error. 166 Return: TI_RESULT_OK on success. Any other value indicates an error. 181 Return: TI_RESULT_OK on success. Any other value indicates an error. 196 Return: TI_RESULT_OK on success. Any other value indicates an error [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
OneLocalsArray.java | 191 public LocalsArray merge(LocalsArray other) { 192 if (other instanceof OneLocalsArray) { 193 return merge((OneLocalsArray)other); 196 return other.merge(this); 205 * @param other locals array with which to merge 209 public OneLocalsArray merge(OneLocalsArray other) { 211 return Merger.mergeLocals(this, other); 216 other.annotate(ex); 224 (LocalsArray other, int predLabel) { 227 return result.mergeWithSubroutineCaller(other, predLabel) [all...] |
/external/proguard/src/proguard/evaluation/ |
TracedVariables.java | 130 public void initialize(TracedVariables other) 132 super.initialize(other); 134 producerVariables.initialize(other.producerVariables); 137 public boolean generalize(TracedVariables other, 140 boolean variablesChanged = super.generalize(other, clearConflictingOtherVariables); 141 boolean producersChanged = producerVariables.generalize(other.producerVariables, clearConflictingOtherVariables); 142 /* consumerVariables.generalize(other.consumerVariables)*/ 155 other.producerVariables.values[index] = null; 199 TracedVariables other = (TracedVariables)object; local 202 this.producerVariables.equals(other.producerVariables) [all...] |
Stack.java | 96 public void copy(Stack other) 99 if (other.values.length > values.length) 102 values = new Value[other.values.length]; 106 System.arraycopy(other.values, 0, this.values, 0, other.currentSize); 109 currentSize = other.currentSize; 110 actualMaxSize = other.actualMaxSize; 119 public boolean generalize(Stack other) 121 if (this.currentSize != other.currentSize) 123 throw new IllegalArgumentException("Stacks have different current sizes ["+this.currentSize+"] and ["+other.currentSize+"]") 508 Stack other = (Stack)object; local [all...] |
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
RenameClassAdapterTest.java | 69 assertEquals("Lorg.blah.New$Other;", mOuter.renameTypeDesc("Lcom.pack.Old$Other;")); 70 assertEquals("Lorg.blah.New$Other;", mInner.renameTypeDesc("Lcom.pack.Old$Other;")); 104 assertEquals("org.blah.New$Other", mInner.renameInternalType("com.pack.Old$Other")); 105 assertEquals("org.blah.New$Other", mInner.renameInternalType("com.pack.Old$Other")); 114 assertEquals("(IDLorg.blah.New;[Lorg.blah.New$Inner;)Lorg.blah.New$Other;", 115 mOuter.renameMethodDesc("(IDLcom.pack.Old;[Lcom.pack.Old$Inner;)Lcom.pack.Old$Other;")); [all...] |
/external/v8/src/ |
frame-element.h | 10 // disclaimer in the documentation and/or other materials provided 163 bool Equals(FrameElement other) { 164 uint32_t masked_difference = (value_ ^ other.value_) & ~CopiedField::mask(); 172 handle().is_identical_to(other.handle()); 177 bool SameLocation(FrameElement* other) { 178 if (type() == other->type()) { 179 if (value_ == other->value_) return true; 180 if (is_constant() && handle().is_identical_to(other->handle())) { 189 FrameElement* Combine(FrameElement* other) { 192 if (!other->is_valid()) return other [all...] |
log-inl.h | 10 // disclaimer in the documentation and/or other materials provided 50 case OTHER: 51 return "OTHER"; 66 // EXTERNAL and OTHER. As an optimization in that case, we will not 67 // perform EXTERNAL->OTHER transitions through the API. We thus 69 if (state == EXTERNAL) state = OTHER;
|
register-allocator-inl.h | 10 // disclaimer in the documentation and/or other materials provided 51 Result::Result(const Result& other) { 52 other.CopyTo(this); 56 Result& Result::operator=(const Result& other) { 57 if (this != &other) { 59 other.CopyTo(this);
|
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ |
TypeInfo.java | 88 * <p ><b>Note:</b> Other schema languages are outside the scope of the W3C 115 * other type definition if the other type definition is the same as the 116 * reference type definition, or if the other type definition can be 126 * other type definition if the other type definition can be reached 135 * <br> The reference type definition is derived by union from the other 139 * <code>DERIVATION_EXTENSION</code>, T2 is derived from the other type 142 * as the other type definition. 148 * <br> The reference type definition is derived by list from the other [all...] |
/external/webkit/WebCore/platform/graphics/transforms/ |
AffineTransform.cpp | 12 * documentation and/or other materials provided with the distribution. 157 AffineTransform& AffineTransform::multiply(const AffineTransform& other) 159 return (*this) *= other; 162 AffineTransform& AffineTransform::multLeft(const AffineTransform& other) 166 trans.m_transform[0] = other.m_transform[0] * m_transform[0] + other.m_transform[1] * m_transform[2]; 167 trans.m_transform[1] = other.m_transform[0] * m_transform[1] + other.m_transform[1] * m_transform[3]; 168 trans.m_transform[2] = other.m_transform[2] * m_transform[0] + other.m_transform[3] * m_transform[2] [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
RegisterSpec.java | 162 public boolean equals(Object other) { 163 if (!(other instanceof RegisterSpec)) { 164 if (other instanceof ForComparison) { 165 ForComparison fc = (ForComparison) other; 171 RegisterSpec spec = (RegisterSpec) other; 181 * @param other {@code null-ok;} spec to compare to 182 * @return {@code true} iff {@code this} and {@code other} are equal 185 public boolean equalsUsingSimpleType(RegisterSpec other) { 186 if (!matchesVariable(other)) { 190 return (reg == other.reg) [all...] |
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstMemberRef.java | 50 public final boolean equals(Object other) { 51 if ((other == null) || (getClass() != other.getClass())) { 55 CstMemberRef otherRef = (CstMemberRef) other; 74 protected int compareTo0(Constant other) { 75 CstMemberRef otherMember = (CstMemberRef) other;
|
/dalvik/dx/src/com/android/dx/util/ |
BitIntSet.java | 71 public void merge(IntSet other) { 72 if (other instanceof BitIntSet) { 73 BitIntSet o = (BitIntSet) other; 76 } else if (other instanceof ListIntSet) { 77 ListIntSet o = (ListIntSet) other; 87 IntIterator iter = other.iterator();
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/ |
DocumentBuilderSettingStrategy.java | 33 public boolean hasConflict(DocumentBuilderSettingStrategy other) { 34 return (other == this); 188 public boolean hasConflict(DocumentBuilderSettingStrategy other) { 189 if (other == this || 190 other == DocumentBuilderSettingStrategy.namespaceAware || 191 other == DocumentBuilderSettingStrategy.validating) {
|
/dalvik/libcore/security/src/main/java/java/security/spec/ |
ECPoint.java | 85 * @param other 90 public boolean equals(Object other) { 91 if (this == other) { 94 if (other instanceof ECPoint) { 96 ECPoint otherPoint = (ECPoint)other; 101 return other == POINT_INFINITY;
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ |
ASN1TaggedObject.java | 92 ASN1TaggedObject other = (ASN1TaggedObject)o; local 94 if (tagNo != other.tagNo || empty != other.empty || explicit != other.explicit) 101 if(other.obj != null) 108 if(!(obj.equals(other.obj)))
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/ |
ExtendedType.java | 104 * @param other The other ExtendedType object to test for equality 107 public boolean equals(ExtendedType other) 111 return other.nodetype == this.nodetype && 112 other.localName.equals(this.localName) && 113 other.namespace.equals(this.namespace);
|
/external/easymock/src/org/easymock/internal/ |
ExpectedInvocation.java | 75 ExpectedInvocation other = (ExpectedInvocation) o;
76 return this.invocation.equals(other.invocation)
77 && ((this.matcher == null && other.matcher == null) || (this.matcher != null && this.matcher
78 .equals(other.matcher)))
79 && ((this.matchers == null && other.matchers == null) || (this.matchers != null && this.matchers
80 .equals(other.matchers)));
|
/external/icu4c/common/unicode/ |
dtintrv.h | 85 * other classes have different class IDs. 95 DateInterval(const DateInterval& other); 108 virtual UBool operator==(const DateInterval& other) const; 115 UBool operator!=(const DateInterval& other) const; 151 DateInterval::operator!=(const DateInterval& other) const { 152 return ( !operator==(other) );
|
/external/icu4c/common/ |
uvector.cpp | 92 * Assign this object to another (make this a copy of 'other'). 95 void UVector::assign(const UVector& other, UTokenAssigner *assign, UErrorCode &ec) { 96 if (ensureCapacity(other.count, ec)) { 97 setSize(other.count, ec); 99 for (int32_t i=0; i<other.count; ++i) { 103 (*assign)(&elements[i], &other.elements[i]); 110 UBool UVector::operator==(const UVector& other) { 112 if (count != other.count) return FALSE; 116 if (!(*comparer)(elements[i], other.elements[i])) { 193 UBool UVector::containsAll(const UVector& other) const [all...] |
/external/proguard/src/proguard/classfile/attribute/preverification/ |
FullFrame.java | 127 FullFrame other = (FullFrame)object; local 129 if (this.u2offsetDelta != other.u2offsetDelta || 130 this.variablesCount != other.variablesCount || 131 this.stackCount != other.stackCount) 139 VerificationType otherType = other.variables[index]; 150 VerificationType otherType = other.stack[index];
|
/external/webkit/WebCore/platform/graphics/haiku/ |
PathHaiku.cpp | 13 * documentation and/or other materials provided with the distribution. 50 Path::Path(const Path& other) 51 : m_path(new BRegion(*other.platformPath())) 55 Path& Path::operator=(const Path& other) 57 if (&other != this) 58 m_path = other.platformPath();
|
/external/webkit/WebCore/platform/graphics/wince/ |
PathWince.cpp | 37 Path::Path(const Path& other) 38 : m_path(new PlatformPath(*other.m_path)) 47 Path& Path::operator=(const Path& other) 49 if (&other != this) { 51 m_path = new PlatformPath(*other.m_path); 155 // Not sure if this is correct. At the meantime, we do what other ports
|
/external/webkit/WebCore/platform/graphics/wx/ |
FontPlatformData.h | 12 * documentation and/or other materials provided with the distribution. 103 bool operator==(const FontPlatformData& other) const 105 if (m_font && m_fontState == VALID && other.m_fontState == VALID && other.m_font) { 107 wxFont* otherFont = other.m_font->font(); 111 return m_fontState == other.m_fontState;
|
/bionic/libc/arch-arm/bionic/ |
kill.S | 12 * the documentation and/or other materials provided with the 29 on the stack, as well as a few other registers. this makes 31 traces after the C library or other parts of the system
|