HomeSort by relevance Sort by last modified time
    Searched refs:object1 (Results 1 - 25 of 48) sorted by null

1 2

  /external/webkit/Source/WebKit/mac/WebView/
WebDelegateImplementationCaching.mm 124 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object1, id object2)
129 return objc_msgSend(delegate, selector, self, object1, object2);
131 return objc_msgSend(delegate, selector, self, object1, object2);
152 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object1, id object2, id object3)
157 return objc_msgSend(delegate, selector, self, object1, object2, object3);
159 return objc_msgSend(delegate, selector, self, object1, object2, object3);
250 static inline BOOL CallDelegateReturningBoolean(BOOL result, WebView *self, id delegate, SEL selector, id object1, id object2)
255 return reinterpret_cast<BOOL (*)(id, SEL, WebView *, id, id)>(objc_msgSend)(delegate, selector, self, object1, object2);
257 return reinterpret_cast<BOOL (*)(id, SEL, WebView *, id, id)>(objc_msgSend)(delegate, selector, self, object1, object2);
292 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2
    [all...]
WebDelegateImplementationCaching.h 107 id CallFormDelegate(WebView *self, SEL selector, id object1, id object2, id object3, id object4, id object5);
  /external/proguard/src/proguard/classfile/editor/
ClassMemberSorter.java 56 public int compare(Object object1, Object object2)
58 ProgramMember member1 = (ProgramMember)object1;
AttributeSorter.java 80 public int compare(Object object1, Object object2)
82 Attribute attribute1 = (Attribute)object1;
  /frameworks/base/core/java/android/gesture/
InstanceLearner.java 30 public int compare(Prediction object1, Prediction object2) {
31 double score1 = object1.score;
  /libcore/luni/src/test/java/libcore/java/util/
OldPriorityQueueTest.java 110 public int compare(String object1, String object2) {
111 int length1 = object1.length();
126 public int compare(E object1, E object2) {
  /libcore/luni/src/main/java/java/text/
Collator.java 183 * @param object1
187 * @return a negative value if {@code object1} is less than {@code object2},
188 * 0 if they are equal, and a positive value if {@code object1} is
191 * if {@code object1} or {@code object2} is not a {@code String}.
193 public int compare(Object object1, Object object2) {
194 return compare((String) object1, (String) object2);
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java 155 public int compare(AppEntry object1, AppEntry object2) {
156 if (object1.info.enabled != object2.info.enabled) {
157 return object1.info.enabled ? -1 : 1;
159 return sCollator.compare(object1.label, object2.label);
167 public int compare(AppEntry object1, AppEntry object2) {
168 if (object1.size < object2.size) return 1;
169 if (object1.size > object2.size) return -1;
170 return sCollator.compare(object1.label, object2.label);
178 public int compare(AppEntry object1, AppEntry object2) {
179 if (object1.internalSize < object2.internalSize) return 1
    [all...]
RunningState.java 524 public int compare(ProcessItem object1, ProcessItem object2) {
525 if (object1.mIsStarted != object2.mIsStarted) {
527 return object1.mIsStarted ? -1 : 1;
529 if (object1.mIsSystem != object2.mIsSystem) {
531 return object1.mIsSystem ? 1 : -1;
533 if (object1.mActiveSince != object2.mActiveSince) {
536 return (object1.mActiveSince > object2.mActiveSince) ? -1 : 1;
    [all...]
  /frameworks/base/core/tests/coretests/src/android/accounts/
AccountManagerServiceTest.java 58 public int compare(Account object1, Account object2) {
59 if (object1 == object2) return 0;
60 if (object1 == null) return 1;
62 int result = object1.type.compareTo(object2.type);
64 return object1.name.compareTo(object2.name);
  /packages/apps/Contacts/src/com/android/contacts/model/
AccountType.java 273 public int compare(DataKind object1, DataKind object2) {
274 return object1.weight - object2.weight;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsSource.java 149 public int compare(DataKind object1, DataKind object2) {
150 return object1.weight - object2.weight;
  /external/webkit/Source/JavaScriptCore/API/tests/
testapi.c 787 JSObjectRef object1 = JSObjectMake(context, /* jsClass */ 0, /* data */ 0); local
791 JSObjectSetPrototype(context, object1, JSValueMakeNull(context));
792 ASSERT(JSValueIsNull(context, JSObjectGetPrototype(context, object1)));
794 // object1 -> object1
795 JSObjectSetPrototype(context, object1, object1);
796 result &= assertTrue(JSValueIsNull(context, JSObjectGetPrototype(context, object1)), "It is possible to assign self as a prototype");
798 // object1 -> object2 -> object1
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PriorityQueueTest.java 791 public int compare(E object1, E object2) {
792 int hashcode1 = object1.hashCode();
807 public int compare(String object1, String object2) {
808 int length1 = object1.length();
823 public int compare(E object1, E object2) {
AbstractMapTest.java 120 public int compare(Object object1, Object object2) {
  /development/apps/GestureBuilder/src/com/android/gesture/builder/
GestureBuilderActivity.java 73 public int compare(NamedGesture object1, NamedGesture object2) {
74 return object1.name.compareTo(object2.name);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCustom.java 152 public int compare(AppEntry object1, AppEntry object2) {
153 return sCollator.compare(object1.getLabel(), object2.getLabel());
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCustomSupport.java 155 public int compare(AppEntry object1, AppEntry object2) {
156 return sCollator.compare(object1.getLabel(), object2.getLabel());
  /external/webkit/Source/WebKit/gtk/tests/
testatk.c 748 AtkObject* object1 = atk_object_ref_accessible_child(object, 0); local
783 AtkObject* object1 = atk_object_ref_accessible_child(object, 0); local
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnEngineJAJP.java 604 public int compare(Object object1, Object object2) {
605 WnnWord wnnWord1 = (WnnWord) object1;
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractMapTest.java 120 public int compare(Object object1, Object object2) {
  /external/ipsec-tools/src/racoon/
eaytest.c 736 char *object1 = "d7e6a6c1876ef048"; local
757 data1 = vmalloc(strlen(object1));
760 memcpy(data1->v, object1, data1->l);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
ShortcutRepositoryTest.java     [all...]
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.cpp 393 QScriptValue object1 = engine.evaluate("o1 = new Object();"); local
396 QVERIFY(object1.isObject());
403 QCOMPARE(object1.property("propertyInPrototype").strictlyEquals(number), true);
404 QCOMPARE(object1.property("propertyInPrototype", QScriptValue::ResolvePrototype)
406 QCOMPARE(object1.property("propertyInPrototype", QScriptValue::ResolveLocal).isValid(), false);
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderObject.cpp     [all...]

Completed in 753 milliseconds

1 2