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

<<11121314151617181920>>

  /frameworks/base/services/java/com/android/server/am/
PendingIntentRecord.java 93 Key other = (Key)otherObj; local
94 if (type != other.type) {
97 if (!packageName.equals(other.packageName)) {
100 if (activity != other.activity) {
103 if (who != other.who) {
105 if (!who.equals(other.who)) {
108 } else if (other.who != null) {
112 if (requestCode != other.requestCode) {
115 if (requestIntent != other.requestIntent) {
117 if (!requestIntent.filterEquals(other.requestIntent))
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JDKDSAPublicKey.java 118 DSAPublicKey other = (DSAPublicKey)o; local
120 return this.getY().equals(other.getY())
121 && this.getParams().getG().equals(other.getParams().getG())
122 && this.getParams().getP().equals(other.getParams().getP())
123 && this.getParams().getQ().equals(other.getParams().getQ());
  /external/icu4c/i18n/
reldtfmt.cpp 41 RelativeDateFormat::RelativeDateFormat(const RelativeDateFormat& other) :
42 DateFormat(other), fDateFormat(NULL), fTimeFormat(NULL), fCombinedFormat(NULL),
43 fDateStyle(other.fDateStyle), fTimeStyle(other.fTimeStyle), fLocale(other.fLocale),
44 fDayMin(other.fDayMin), fDayMax(other.fDayMax),
45 fDatesLen(other.fDatesLen), fDates(NULL)
47 if(other.fDateFormat != NULL) {
48 fDateFormat = (DateFormat*)other.fDateFormat->clone()
    [all...]
  /external/webkit/WebCore/page/mac/
WebDashboardRegion.m 11 * documentation and/or other materials provided with the distribution.
87 - (BOOL)isEqual:(id)other
89 return NSEqualRects(rect, [other dashboardRegionRect]) && NSEqualRects(clip, [other dashboardRegionClip]) && type == [other dashboardRegionType];
  /external/webkit/WebCore/rendering/style/
ContentData.cpp 53 bool ContentData::dataEquivalent(const ContentData& other) const
55 if (type() != other.type())
63 return equal(text(), other.text());
66 return StyleImage::imagesEquivalent(image(), other.image());
69 return *counter() == *other.counter();
  /frameworks/base/core/java/android/content/
PeriodicSync.java 77 final PeriodicSync other = (PeriodicSync) o; local
79 return account.equals(other.account)
80 && authority.equals(other.authority)
81 && period == other.period
82 && SyncStorageEngine.equals(extras, other.extras);
  /frameworks/base/docs/html/guide/practices/ui_guidelines/
index.jd 20 shading, and other details for making all your icons fit in the Android system.
35 re-use activities from other applications as if they were yours,
44 that enable users to perform operations and navigate to other parts
45 of your application or to other applications. These guidelines describe
47 menu items, when to put commands on-screen, and other details about
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
CommandDetails.java 43 public boolean compareTo(CommandDetails other) {
44 return (this.compRequired == other.compRequired &&
45 this.commandNumber == other.commandNumber &&
46 this.commandQualifier == other.commandQualifier &&
47 this.typeOfCommand == other.typeOfCommand);
  /packages/apps/Camera/src/com/android/camera/gallery/
BaseImage.java 30 * and two thumbnail bitmaps as well as other information such as the id, and
52 public boolean equals(Object other) {
53 if (other == null || !(other instanceof Image)) return false;
54 return mUri.equals(((Image) other).mUri);
  /packages/apps/Gallery/src/com/android/camera/gallery/
VideoObject.java 34 * two thumbnail bitmaps as well as other information such as the id, and the
53 public boolean equals(Object other) {
54 if (other == null || !(other instanceof VideoObject)) return false;
56 ((VideoObject) other).fullSizeImageUri());
  /dalvik/dx/src/com/android/dx/dex/code/
CatchHandlerList.java 136 public int compareTo(CatchHandlerList other) {
137 if (this == other) {
143 int otherSize = other.size();
148 Entry otherEntry = other.get(i);
201 public boolean equals(Object other) {
202 if (other instanceof Entry) {
203 return (compareTo((Entry) other) == 0);
210 public int compareTo(Entry other) {
211 if (handler < other.handler) {
213 } else if (handler > other.handler)
    [all...]
  /external/proguard/src/proguard/optimize/info/
MethodOptimizationInfo.java 259 public void merge(MethodOptimizationInfo other)
261 if (other != null)
263 this.hasNoSideEffects &= other.hasNoSideEffects;
264 this.hasSideEffects |= other.hasSideEffects;
265 //this.canBeMadePrivate &= other.canBeMadePrivate;
266 this.catchesExceptions |= other.catchesExceptions;
267 this.branchesBackward |= other.branchesBackward;
268 this.invokesSuperMethods |= other.invokesSuperMethods;
269 this.accessesPrivateCode |= other.accessesPrivateCode;
270 this.accessesPackageCode |= other.accessesPackageCode
    [all...]
  /external/webkit/WebCore/platform/graphics/
FloatSize.h 13 * documentation and/or other materials provided with the distribution.
67 FloatSize expandedTo(const FloatSize& other) const
69 return FloatSize(m_width > other.m_width ? m_width : other.m_width,
70 m_height > other.m_height ? m_height : other.m_height);
73 FloatSize shrunkTo(const FloatSize& other) const
75 return FloatSize(m_width < other.m_width ? m_width : other.m_width,
76 m_height < other.m_height ? m_height : other.m_height)
    [all...]
IntPoint.h 11 * documentation and/or other materials provided with the distribution.
92 IntPoint expandedTo(const IntPoint& other) const
94 return IntPoint(m_x > other.m_x ? m_x : other.m_x,
95 m_y > other.m_y ? m_y : other.m_y);
98 IntPoint shrunkTo(const IntPoint& other) const
100 return IntPoint(m_x < other.m_x ? m_x : other.m_x,
101 m_y < other.m_y ? m_y : other.m_y)
    [all...]
IntSize.h 11 * documentation and/or other materials provided with the distribution.
90 IntSize expandedTo(const IntSize& other) const
92 return IntSize(m_width > other.m_width ? m_width : other.m_width,
93 m_height > other.m_height ? m_height : other.m_height);
96 IntSize shrunkTo(const IntSize& other) const
98 return IntSize(m_width < other.m_width ? m_width : other.m_width,
99 m_height < other.m_height ? m_height : other.m_height)
    [all...]
  /external/webkit/WebCore/platform/win/
BString.cpp 11 * documentation and/or other materials provided with the distribution.
121 BString::BString(const BString& other)
123 if (!other.m_bstr)
126 m_bstr = SysAllocString(other.m_bstr);
136 BString& BString::operator=(const BString& other)
138 if (this != &other)
139 *this = other.m_bstr;
143 BString& BString::operator=(const BSTR& other)
145 if (other != m_bstr) {
147 m_bstr = other ? SysAllocString(other) : 0
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/
ReadOnlyDirectByteBuffer.java 36 static ReadOnlyDirectByteBuffer copy(DirectByteBuffer other, int markOfOther) {
38 other.safeAddress, other.capacity(), other.offset);
39 buf.limit = other.limit();
40 buf.position = other.position();
42 buf.order(other.order());
ReadOnlyHeapByteBuffer.java 34 static ReadOnlyHeapByteBuffer copy(HeapByteBuffer other, int markOfOther) {
36 other.backingArray, other.capacity(), other.offset);
37 buf.limit = other.limit();
38 buf.position = other.position();
40 buf.order(other.order());
  /external/proguard/src/proguard/
KeepClassSpecification.java 105 KeepClassSpecification other = (KeepClassSpecification)object; local
107 this.markClasses == other.markClasses &&
108 this.markConditionally == other.markConditionally &&
109 this.allowShrinking == other.allowShrinking &&
110 this.allowOptimization == other.allowOptimization &&
111 this.allowObfuscation == other.allowObfuscation &&
112 super.equals(other);
  /external/webkit/WebCore/platform/graphics/chromium/
FontPlatformDataChromiumWin.h 13 * in the documentation and/or other materials provided with the
53 // will create us with this structure, and it will compare other values
77 bool operator==(const FontPlatformData& other) const
79 return m_font == other.m_font && m_size == other.m_size;
108 bool operator==(const RefCountedHFONT& other) const
110 return m_hfont == other.m_hfont;
  /external/webkit/WebCore/platform/graphics/mac/
FontPlatformData.h 105 bool operator==(const FontPlatformData& other) const
107 return m_font == other.m_font && m_syntheticBold == other.m_syntheticBold && m_syntheticOblique == other.m_syntheticOblique &&
108 m_cgFont == other.m_cgFont && m_size == other.m_size && m_atsuFontID == other.m_atsuFontID;
  /external/icu4c/test/intltest/
plurfmts.cpp 52 UnicodeString otherPattern = UnicodeString("other{#}");
127 UNICODE_STRING_SIMPLE("odd {# is odd.} other{# is even.}"),
128 UNICODE_STRING_SIMPLE("other{# is odd or even.}"),
129 UNICODE_STRING_SIMPLE("odd{The number {0, number, #.#0} is odd.}other{The number {0, number, #.#0} is even.}"),
130 UNICODE_STRING_SIMPLE("odd{The number {#} is odd.}other{The number {#} is even.}"),
145 UNICODE_STRING_SIMPLE("odd{foo} odd{bar} other{foobar}"),
146 UNICODE_STRING_SIMPLE("odd{foo} other{bar} other{foobar}"),
148 UNICODE_STRING_SIMPLE("otto{foo} other{bar}"),
149 UNICODE_STRING_SIMPLE("1odd{foo} other{bar}")
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArraySet.java 255 * @param other {@code non-null;} to merge
259 private LocalsArraySet mergeWithSet(LocalsArraySet other) {
264 newPrimary = primary.merge(other.getPrimary());
267 int sz2 = other.secondaries.size();
273 LocalsArray la2 = (i < sz2 ? other.secondaries.get(i) : null);
306 * @param other {@code non-null;} to merge
310 private LocalsArraySet mergeWithOne(OneLocalsArray other) {
315 newPrimary = primary.merge(other.getPrimary());
325 resultla = la.merge(other);
346 public LocalsArraySet merge(LocalsArray other) {
    [all...]
  /external/quake/quake/src/WinQuake/data/
SLICNSE.TXT 18 other storage device. You agree that the Software will not be
20 the U.S. Export Administration Act (or any other law governing such
21 matters) and that you will not utilize, in any other manner, the
38 e. Distribute the Software for money or any other
41 f. In any other manner and through any medium
61 4. Use of Other Material is Prohibited. Use, in any manner, of
64 and other such material contained within, generated by or relating to
86 You must treat the Software like any other copyrighted material,
87 except that you may make copies of the Software to give to other
89 other person for the receipt or use of the Software. You agree to
    [all...]
  /dalvik/libcore/json/src/test/java/org/json/
JSONArrayTest.java 103 JSONArray other = new JSONArray(); local
104 other.put(true);
105 other.put(false);
106 other.put(true);
107 other.put(false);
108 assertTrue(array.equals(other));
109 other.put(true);
110 assertFalse(array.equals(other));
112 other = new JSONArray();
113 other.put("true")
222 JSONArray other = new JSONArray(); local
    [all...]

Completed in 64 milliseconds

<<11121314151617181920>>