HomeSort by relevance Sort by last modified time
    Searched full:other (Results 176 - 200 of 18848) sorted by null

1 2 3 4 5 6 78 91011>>

  /dalvik/libcore/nio/src/main/java/java/nio/
ReadOnlyFloatArrayBuffer.java 34 static ReadOnlyFloatArrayBuffer copy(FloatArrayBuffer other, int markOfOther) {
35 ReadOnlyFloatArrayBuffer buf = new ReadOnlyFloatArrayBuffer(other
36 .capacity(), other.backingArray, other.offset);
37 buf.limit = other.limit();
38 buf.position = other.position();
ReadOnlyIntArrayBuffer.java 34 static ReadOnlyIntArrayBuffer copy(IntArrayBuffer other, int markOfOther) {
35 ReadOnlyIntArrayBuffer buf = new ReadOnlyIntArrayBuffer(other
36 .capacity(), other.backingArray, other.offset);
37 buf.limit = other.limit();
38 buf.position = other.position();
ReadOnlyLongArrayBuffer.java 34 static ReadOnlyLongArrayBuffer copy(LongArrayBuffer other, int markOfOther) {
35 ReadOnlyLongArrayBuffer buf = new ReadOnlyLongArrayBuffer(other
36 .capacity(), other.backingArray, other.offset);
37 buf.limit = other.limit();
38 buf.position = other.position();
ReadOnlyShortArrayBuffer.java 34 static ReadOnlyShortArrayBuffer copy(ShortArrayBuffer other, int markOfOther) {
35 ReadOnlyShortArrayBuffer buf = new ReadOnlyShortArrayBuffer(other
36 .capacity(), other.backingArray, other.offset);
37 buf.limit = other.limit();
38 buf.position = other.position();
ReadWriteCharArrayBuffer.java 33 static ReadWriteCharArrayBuffer copy(CharArrayBuffer other, int markOfOther) {
34 ReadWriteCharArrayBuffer buf = new ReadWriteCharArrayBuffer(other
35 .capacity(), other.backingArray, other.offset);
36 buf.limit = other.limit();
37 buf.position = other.position();
ReadWriteDoubleArrayBuffer.java 34 static ReadWriteDoubleArrayBuffer copy(DoubleArrayBuffer other,
36 ReadWriteDoubleArrayBuffer buf = new ReadWriteDoubleArrayBuffer(other
37 .capacity(), other.backingArray, other.offset);
38 buf.limit = other.limit();
39 buf.position = other.position();
ReadWriteFloatArrayBuffer.java 34 static ReadWriteFloatArrayBuffer copy(FloatArrayBuffer other,
36 ReadWriteFloatArrayBuffer buf = new ReadWriteFloatArrayBuffer(other
37 .capacity(), other.backingArray, other.offset);
38 buf.limit = other.limit();
39 buf.position = other.position();
ReadWriteIntArrayBuffer.java 33 static ReadWriteIntArrayBuffer copy(IntArrayBuffer other, int markOfOther) {
34 ReadWriteIntArrayBuffer buf = new ReadWriteIntArrayBuffer(other
35 .capacity(), other.backingArray, other.offset);
36 buf.limit = other.limit();
37 buf.position = other.position();
ReadWriteLongArrayBuffer.java 33 static ReadWriteLongArrayBuffer copy(LongArrayBuffer other, int markOfOther) {
34 ReadWriteLongArrayBuffer buf = new ReadWriteLongArrayBuffer(other
35 .capacity(), other.backingArray, other.offset);
36 buf.limit = other.limit();
37 buf.position = other.position();
ReadWriteShortArrayBuffer.java 34 static ReadWriteShortArrayBuffer copy(ShortArrayBuffer other,
36 ReadWriteShortArrayBuffer buf = new ReadWriteShortArrayBuffer(other
37 .capacity(), other.backingArray, other.offset);
38 buf.limit = other.limit();
39 buf.position = other.position();
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
DocumentBuilderSettingStrategy.java 15 public boolean hasConflict(DocumentBuilderSettingStrategy other) {
16 return (other == this);
147 public boolean hasConflict(DocumentBuilderSettingStrategy other) {
148 if (other == this
149 || other == DocumentBuilderSettingStrategy.namespaceAware
150 || other == DocumentBuilderSettingStrategy.validating) {
  /external/webkit/JavaScriptCore/wrec/
CharacterClassConstructor.cpp 11 * documentation and/or other materials provided with the distribution.
165 // if we fall through to here, unicodeCurr <= hi & has another case. Get the other case.
170 // and if it's other case value is one greater then the othercase value for the current last
174 // increment otherCurr, due to the check above other for next must be 1 greater than the currrent other value.
179 // otherChar is the last in the range of other case chars, calculate offset to get back to the start.
217 int other = jsc_pcre_ucp_othercase(m_charBuffer); local
218 if (other != -1)
219 addSorted(m_matchesUnicode, other);
231 void CharacterClassConstructor::append(const CharacterClass& other)
    [all...]
  /external/webkit/WebCore/css/
CSSProperty.h 41 CSSProperty& operator=(const CSSProperty& other)
43 m_id = other.m_id;
44 m_shorthandID = other.m_shorthandID;
45 m_important = other.m_important;
46 m_implicit = other.m_implicit;
47 m_value = other.m_value;
MediaQuery.cpp 13 * documentation and/or other materials provided with the distribution.
52 bool MediaQuery::operator==(const MediaQuery& other) const
54 if (m_restrictor != other.m_restrictor
55 || m_mediaType != other.m_mediaType
56 || m_expressions->size() != other.m_expressions->size())
61 MediaQueryExp* oexp = other.m_expressions->at(i);
MediaQueryExp.h 13 * documentation and/or other materials provided with the distribution.
48 bool operator==(const MediaQueryExp& other) const
50 return (other.m_mediaFeature == m_mediaFeature)
51 && ((!other.m_value && !m_value)
52 || (other.m_value && m_value && other.m_value->cssText() == m_value->cssText()));
  /packages/apps/IM/libwbxml/include/
wbxml_stl.h 44 string & operator=(const char* other)
46 setTo(other);
49 string & assign(const char* other, int len)
51 setTo(other, len);
67 string & operator+=(const char * other)
69 append(other);
  /external/proguard/src/proguard/
ClassSpecification.java 221 ClassSpecification other = (ClassSpecification)object; local
223 // (this.comments == null ? other.comments == null : this.comments.equals(other.comments) ) &&
224 (this.requiredSetAccessFlags == other.requiredSetAccessFlags ) &&
225 (this.requiredUnsetAccessFlags == other.requiredUnsetAccessFlags ) &&
226 (this.annotationType == null ? other.annotationType == null : this.annotationType.equals(other.annotationType) ) &&
227 (this.className == null ? other.className == null : this.className.equals(other.className) ) &&
228 (this.extendsAnnotationType == null ? other.extendsAnnotationType == null : this.extendsAnnotationType.equals(other.extendsAnnotationType)) &
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchTable.java 64 public int compareTo(CatchTable other) {
65 if (this == other) {
71 int otherSize = other.size();
76 Entry otherEntry = other.get(i);
140 public boolean equals(Object other) {
141 if (other instanceof Entry) {
142 return (compareTo((Entry) other) == 0);
149 public int compareTo(Entry other) {
150 if (start < other.start) {
152 } else if (start > other.start)
    [all...]
  /dalvik/libcore/support/src/test/java/tests/support/
Support_GetPutFieldsDefaulted.java 82 SimpleClass other = (SimpleClass) obj; local
83 return (a == other.getA() && b.equals(other.getB()));
104 Support_GetPutFieldsDefaulted other = (Support_GetPutFieldsDefaulted) obj; local
105 return (booleanValue == other.booleanValue &&
106 byteValue == other.byteValue &&
107 charValue == other.charValue &&
108 doubleValue == other.doubleValue &&
109 floatValue == other.floatValue &&
110 longValue == other.longValue &
    [all...]
  /external/guava/src/com/google/common/collect/
RegularImmutableList.java 74 @Override public <T> T[] toArray(T[] other) {
75 if (other.length < size) {
76 other = ObjectArrays.newArray(other, size);
77 } else if (other.length > size) {
78 other[size] = null;
80 Platform.unsafeArrayCopy(array, offset, other, 0, size);
81 return other;
193 RegularImmutableList<?> other = (RegularImmutableList<?>) object; local
194 for (int i = other.offset; i < other.offset + other.size; i++)
    [all...]
  /external/webkit/JavaScriptCore/wtf/
SegmentedVector.h 12 * documentation and/or other materials provided with the distribution.
68 bool operator==(const Iterator& other) const
70 return (m_index == other.m_index && m_segment = other.m_segment && &m_vector == &other.m_vector);
73 bool operator!=(const Iterator& other) const
75 return (m_index != other.m_index || m_segment != other.m_segment || &m_vector != &other.m_vector);
78 SegmentedVectorIterator& operator=(const SegmentedVectorIterator<T, SegmentSize>& other)
    [all...]
  /external/webkit/WebCore/dom/
QualifiedName.h 66 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { ref(); }
67 const QualifiedName& operator=(const QualifiedName& other) { other.ref(); deref(); m_impl = other.m_impl; return *this; }
69 bool operator==(const QualifiedName& other) const { return m_impl == other.m_impl; }
70 bool operator!=(const QualifiedName& other) const { return !(*this == other); }
72 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == o (…)
    [all...]
  /external/webkit/WebCore/platform/graphics/
Font.cpp 85 Font::Font(const Font& other)
86 : m_fontDescription(other.m_fontDescription)
87 , m_fontList(other.m_fontList)
88 , m_letterSpacing(other.m_letterSpacing)
89 , m_wordSpacing(other.m_wordSpacing)
90 , m_isPlatformFont(other.m_isPlatformFont)
94 Font& Font::operator=(const Font& other)
96 m_fontDescription = other.m_fontDescription;
97 m_fontList = other.m_fontList;
98 m_letterSpacing = other.m_letterSpacing
    [all...]
  /external/proguard/src/proguard/evaluation/value/
ReferenceValue.java 128 // Strip the class type prefix and suffix of the other type, if any.
134 // If this type is an array type, and the other type is not
143 // If the other type is an array type, and this type is not
158 // If this type is equal to the other type, or if the other type is
172 // If the other type is an array type, it might be ok.
214 * Returns the generalization of this ReferenceValue and the given other
217 public ReferenceValue generalize(ReferenceValue other)
220 if (this.equals(other))
226 String otherType = other.type
506 ReferenceValue other = (ReferenceValue)object; local
    [all...]
  /build/tools/droiddoc/src/
Sorter.java 28 public int compareTo(Object other)
30 return label.compareToIgnoreCase(((Sorter)other).label);

Completed in 57 milliseconds

1 2 3 4 5 6 78 91011>>