/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/ |
BaseFragmentPagerAdapter.java | 37 * <li>The method {@link #isViewFromObject(View, Object)} has been reimplemented to search 39 * <li>In method {@link #destroyItem(View, int, Object)}, the fragment is detached and 71 public Object instantiateItem(View container, int position) { 104 public void destroyItem(View container, int position, Object object) { 108 if (DEBUG) Log.v(TAG, "Detaching item #" + position + ": f=" + object 109 + " v=" + ((Fragment)object).getView()); 111 Fragment fragment = (Fragment) object; 125 public void setPrimaryItem(View container, int position, Object object) { [all...] |
/libcore/luni/src/main/java/javax/security/cert/ |
Certificate.java | 50 * the {@code Certificate} to compare with this object 55 public boolean equals(Object obj) { 62 Certificate object = (Certificate) obj; local 64 return Arrays.equals(getEncoded(), object.getEncoded());
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
ORAddress.java | 68 @Override protected void getValues(Object object, Object[] values) {} 71 @Override protected Object getDecodedObject(BerInputStream in) { 75 private final Object foo = new Object(); 77 @Override protected void getValues(Object object, Object[] values) {
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldObjectInputStreamGetFieldTest.java | 71 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); local 75 assertTrue("Test 1: The object read from the reference file does " + 77 object.equals(newObject)); 86 assertTrue("Test 2: The object read from the reference file does " + 99 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); local 100 ObjectInputStream.GetField fields = object.getField; 123 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); local 124 ObjectInputStream.GetField fields = object.getField; 170 fields.get("noValue", new Object()); 172 "argument in get(String, Object).") 239 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); local [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
GuardedObjectTest.java | 38 Object obj = null; 53 public void checkGuard(Object object) throws SecurityException { 54 if (object == objBuffer && objBuffer.length() == 0) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_doctest2.py | 21 class C(object): 49 class D(object):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_doctest2.py | 21 class C(object): 49 class D(object):
|
/external/chromium_org/v8/src/ |
hydrogen-load-elimination.cc | 63 // The main datastructure used during load/store elimination. Each in-object 79 l->object()->ActualValue()->id())); 93 s->object()->ActualValue()->id(), 189 // load or store for this object and field exists, return the new value with 195 HValue* object = instr->object()->ActualValue(); 196 HFieldApproximation* approx = FindOrCreate(object, field); 210 // store to the same object and field makes this store redundant (e.g. because 217 HValue* object = instr->object()->ActualValue() 270 HValue* object = instr->object()->ActualValue(); local [all...] |
object-observe.js | 32 // This file contains all of the routing and accounting for Object.observe. 33 // User code will interact with these mechanisms via the Object.observe APIs 36 // proper change records for objects which were mutated. The Object.observe 39 // 1) ObjectInfo. This represents the observed state of a given object. It 40 // records what callbacks are observing the object, with what options, and 41 // what "change types" are in progress on the object (i.e. via 51 // (i.e. not Object.deliverChangeRecords), this is the mechanism by which 139 // An Observer is a registration to observe an object by a callback with 141 // set for Object.observe, the observer is represented as a direct reference 165 function ObjectInfoGet(object) { [all...] |
/external/chromium_org/v8/test/mjsunit/ |
object-define-properties.js | 28 // Tests the Object.defineProperties method - ES 15.2.3.7 30 // object-define-property.js, this file only contains tests specific for 31 // Object.defineProperties. Also note that object-create.js contains 32 // a range of indirect tests on this method since Object.create uses 33 // Object.defineProperties as a step in setting up the object. 37 Object.defineProperties({}, null); 39 assertTrue(/null to object/.test(e)); 42 // Try defining with null as object [all...] |
/external/chromium_org/v8/test/webkit/ |
JSON-stringify-replacer.js | 26 var object = {0:0, 1:1, 2:2, 3:undefined}; 51 return object; 70 shouldBeUndefined("JSON.stringify(object, returnUndefined)"); 73 shouldBe("JSON.stringify(object, returnObjectFor1)", '\'{"0":0,"1":{},"2":2}\''); 76 shouldBe("JSON.stringify(object, returnArrayFor1)", '\'{"0":0,"1":[],"2":2}\''); 79 shouldBe("JSON.stringify(object, returnUndefinedFor1)", '\'{"0":0,"2":2}\''); 82 shouldBe("JSON.stringify(object, returnFunctionFor1)", '\'{"0":0,"2":2}\''); 85 shouldBe("JSON.stringify(object, returnNullFor1)", '\'{"0":0,"1":null,"2":2}\''); 88 shouldBe("JSON.stringify(object, returnStringForUndefined)", '\'{"0":0,"1":1,"2":2,"3":"undefined value"}\''); 91 shouldThrow("JSON.stringify(object, returnCycleObjectFor1)") [all...] |
/external/v8/test/mjsunit/ |
object-define-properties.js | 28 // Tests the Object.defineProperties method - ES 15.2.3.7 30 // object-define-property.js, this file only contains tests specific for 31 // Object.defineProperties. Also note that object-create.js contains 32 // a range of indirect tests on this method since Object.create uses 33 // Object.defineProperties as a step in setting up the object. 37 Object.defineProperties({}, null); 39 assertTrue(/null to object/.test(e)); 42 // Try defining with null as object [all...] |
/frameworks/base/core/java/android/util/ |
MapCollections.java | 55 Object res = colGetEntry(mIndex, mOffset); 125 public V setValue(V object) { 130 return colSetValue(mIndex, object); 134 public final boolean equals(Object o) { 153 final Object key = colGetEntry(mIndex, 0); 154 final Object value = colGetEntry(mIndex, 1); 167 public boolean add(Map.Entry<K, V> object) { 186 public boolean contains(Object o) { 194 Object foundVal = colGetEntry(index, 1); 220 public boolean remove(Object object) [all...] |
/frameworks/support/v4/java/android/support/v4/util/ |
MapCollections.java | 53 Object res = colGetEntry(mIndex, mOffset); 123 public V setValue(V object) { 128 return colSetValue(mIndex, object); 132 public final boolean equals(Object o) { 151 final Object key = colGetEntry(mIndex, 0); 152 final Object value = colGetEntry(mIndex, 1); 165 public boolean add(Map.Entry<K, V> object) { 184 public boolean contains(Object o) { 192 Object foundVal = colGetEntry(index, 1); 218 public boolean remove(Object object) [all...] |
/dalvik/vm/mterp/armv5te/ |
OP_MONITOR_EXIT.S | 2 %verify "exception for null object (impossible in javac)" 5 * Unlock an object. 14 GET_VREG(r1, r2) @ r1<- vAA (object) 15 cmp r1, #0 @ null object?
|
/dalvik/vm/mterp/mips/ |
OP_IPUT_QUICK.S | 2 %verify "null object" 3 /* For: iput-quick, iput-object-quick */ 6 GET_VREG(a3, a2) # a3 <- fp[B], the object pointer 9 beqz a3, common_errNullObject # object was null
|
OP_MONITOR_EXIT.S | 2 %verify "exception for null object (impossible in javac)" 5 * Unlock an object. 14 GET_VREG(a1, a2) # a1 <- vAA (object) 15 # null object?
|
/dalvik/vm/mterp/x86/ |
OP_AGET.S | 6 * for: aget, aget-object, aget-boolean, aget-byte, aget-char, aget-short 11 GET_VREG_R %eax %eax # eax<- vBB (array object) 13 testl %eax,%eax # null array object?
|
OP_AGET_WIDE.S | 9 GET_VREG_R %eax %eax # eax<- vBB (array object) 11 testl %eax,%eax # null array object?
|
OP_APUT.S | 6 * for: aput, aput-object, aput-boolean, aput-byte, aput-char, aput-short 11 GET_VREG_R %eax %eax # eax<- vBB (array object) 13 testl %eax,%eax # null array object?
|
OP_APUT_WIDE.S | 9 GET_VREG_R %eax %eax # eax<- vBB (array object) 11 testl %eax,%eax # null array object?
|
/external/chromium/chrome/browser/policy/ |
configuration_policy_loader_win.h | 39 virtual void OnObjectSignaled(HANDLE object);
|
/external/chromium/googleurl/ |
PRESUBMIT_unittest.py | 16 class MockInputApi(object): 29 class MockAffectedFile(object): 37 class MockOutputApi(object): 38 class PresubmitError(object):
|
/external/chromium-trace/trace-viewer/src/cc/ |
layer_picker.css | 28 layer-picker > x-generic-object-view { 34 layer-picker > x-generic-object-view * {
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
matcher.py | 30 class Matcher(object):
|