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

1 2 3 4 56 7 8 91011>>

  /dalvik/libcore/nio/src/main/java/java/nio/channels/
package.html 5 files, sockets or other structures that allow input and/or output of
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERUnknownTag.java 51 DERUnknownTag other = (DERUnknownTag)o; local
53 if (tag != other.tag)
58 if (data.length != other.data.length)
65 if(data[i] != other.data[i])
  /dalvik/tests/060-reflection-security/src/other/
Blort.java 1 package other; package
  /dalvik/tests/064-field-access/src/other/
OtherPackage.java 3 package other; package
  /external/kernel-headers/original/linux/nfsd/
interface.h 4 * defines interface between nfsd and other bits of
  /external/openssl/crypto/
ebcdic.h 8 /* Avoid name clashes with other applications */
  /external/openssl/include/openssl/
ebcdic.h 8 /* Avoid name clashes with other applications */
  /external/qemu/distrib/sdl-1.2.12/src/main/macosx/
SDLMain.h 3 Non-NIB-Code & other changes: Max Horn <max@quendi.de>
  /external/stlport/stlport/
rlocks.h 8 # error "This file is for SUN CC only. Please remove it if it causes any harm for other compilers."
stdiostream.h 8 # error "This file is for SUN CC only. Please remove it if it causes any harm for other compilers."
  /external/webkit/JavaScriptCore/icu/
README 3 For other platforms, installed ICU headers should be used rather than these.
  /external/webkit/JavaScriptGlue/icu/
README 3 For other platforms, installed ICU headers should be used rather than these.
  /external/webkit/WebCore/icu/
README 3 For other platforms, installed ICU headers should be used rather than these.
  /external/webkit/WebCore/manual-tests/
empty-script-crash.html 3 test since it would get loaded after many other documents that ran
  /external/webkit/WebCore/platform/graphics/
FontDescription.h 72 bool operator!=(const FontDescription& other) const { return !(*this == other); }
135 inline bool FontDescription::operator==(const FontDescription& other) const
137 return m_familyList == other.m_familyList
138 && m_specifiedSize == other.m_specifiedSize
139 && m_computedSize == other.m_computedSize
140 && m_italic == other.m_italic
141 && m_smallCaps == other.m_smallCaps
142 && m_isAbsoluteSize == other.m_isAbsoluteSize
143 && m_weight == other.m_weigh
    [all...]
  /external/webkit/WebKit/mac/icu/
README 3 For other platforms, installed ICU headers should be used rather than these.
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/icons/
README 6 To convert the svg icon to other formats, make sure inkscape and imagemagick
  /frameworks/base/tools/aapt/tests/plurals/res/values/
strings.xml 5 <item quantity="other">Some dogs</item>
  /packages/experimental/procstatlog/
README 4 on an ongoing basis, to measure CPU and other activity as a function
  /external/icu4c/i18n/unicode/
tmunit.h 71 TimeUnit(const TimeUnit& other);
77 TimeUnit& operator=(const TimeUnit& other);
84 virtual UBool operator==(const UObject& other) const;
91 UBool operator!=(const UObject& other) const;
97 * class have the same class ID. Objects of other classes have
138 TimeUnit::operator!=(const UObject& other) const {
139 return !operator==(other);
  /external/proguard/src/proguard/optimize/info/
ClassOptimizationInfo.java 126 public void merge(ClassOptimizationInfo other)
128 this.isInstantiated |= other.isInstantiated;
129 this.isInstanceofed |= other.isInstanceofed;
130 this.isDotClassed |= other.isDotClassed;
131 this.isCaught |= other.isCaught;
132 this.containsPackageVisibleMembers |= other.containsPackageVisibleMembers;
133 this.invokesPackageVisibleMembers |= other.invokesPackageVisibleMembers;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstArray.java 23 * Constant type to represent a fixed array of other constants. The contents
24 * may be of any type <i>other</i> than {@link CstUtf8}.
47 public boolean equals(Object other) {
48 if (! (other instanceof CstArray)) {
52 return list.equals(((CstArray) other).list);
63 protected int compareTo0(Constant other) {
64 return list.compareTo(((CstArray) other).list);
115 public int compareTo(List other) {
117 int otherSize = other.size();
122 Constant otherItem = (Constant) other.get0(i)
    [all...]
Constant.java 48 public final int compareTo(Constant other) {
50 Class otherClazz = other.getClass();
56 return compareTo0(other);
63 * @param other {@code non-null;} the instance to compare to
67 protected abstract int compareTo0(Constant other);
  /external/webkit/WebCore/platform/graphics/win/
FontPlatformData.h 2 * This file is part of the internal font implementation. It should not be included by anyone other than
96 bool operator==(const FontPlatformData& other) const
98 return m_font == other.m_font &&
100 m_cgFont == other.m_cgFont &&
102 m_fontFace == other.m_fontFace &&
103 m_scaledFont == other.m_scaledFont &&
105 m_size == other.m_size &&
106 m_syntheticBold == other.m_syntheticBold && m_syntheticOblique == other.m_syntheticOblique &&
107 m_useGDI == other.m_useGDI
    [all...]
  /frameworks/base/media/libdrm/mobile2/src/dcf/
DrmDcfCommon.cpp 60 Box::Box(const Box& other)
62 mSize = other.mSize;
63 mType = other.mType;
64 mLargeSize = other.mLargeSize;
67 if(other.mUserType)
70 memcpy(mUserType,other.mUserType,USER_TYPE_LEN);
74 Box& Box::operator=(const Box& other)
76 if(this == &other)
87 if(other.mUserType)
90 memcpy(mUserType, other.mUserType, USER_TYPE_LEN)
    [all...]

Completed in 52 milliseconds

1 2 3 4 56 7 8 91011>>