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

1 2 3 4

  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 23 * AccessorMaker maintains accessors to private members of an enclosing
29 private HashMap accessors; field in class:AccessorMaker
36 accessors = new HashMap();
43 String consDesc = (String)accessors.get(key);
80 accessors.put(key, consDesc);
102 String accName = (String)accessors.get(key);
142 accessors.put(key, accName);
154 Object res = accessors.get(key);
186 accessors.put(key, minfo);
205 Object res = accessors.get(key)
    [all...]
  /external/webrtc/webrtc/base/
diskcache.cc 103 if ((LS_UNLOCKED == entry->lock_state) && (entry->accessors > 0))
136 entry->accessors += 1;
146 if (entry->accessors > 0) {
168 entry->accessors += 1;
193 if ((LS_UNLOCKED != entry->lock_state) || (entry->accessors > 0))
229 if ((LS_UNLOCKED != it->second.lock_state) || (it->second.accessors > 0))
308 e.accessors = 0;
324 entry->accessors -= 1;
339 if ((LS_UNLOCKING == entry->lock_state) && (0 == entry->accessors)) {
diskcache.h 65 mutable size_t accessors; member in struct:rtc::DiskCache::Entry
  /packages/services/Telecomm/
Android.mk 13 LOCAL_PROTO_JAVA_OUTPUT_PARAMS := optional_field_style=accessors
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
GLPropertyAccessor.java 60 * @param accessors list of accessor's to be used to navigate the property hierarchy. The
61 * accessors are either Integers or {@link GLStateType} objects. Integers
66 public static IGLPropertyAccessor makeAccessor(int contextId, Object...accessors) {
69 for (Object accessor : accessors) {
  /packages/services/Telecomm/tests/
Android.mk 34 LOCAL_PROTO_JAVA_OUTPUT_PARAMS := optional_field_style=accessors
  /external/v8/test/mjsunit/bugs/
bug-1344252.js 28 // Test that setter accessors added to the prototype chain are called
31 // Test that accessors added to the prototype chain are called
64 // accessors added to the prototype chain are called instead of
  /external/v8/test/cctest/libsampler/
test-sampler.cc 121 TestApiCallbacks accessors; local
123 v8::External::New(isolate, &accessors);
  /external/v8/test/mjsunit/
array-push4.js 16 // Test that element accessors are called in standard push cases.
global-accessors.js 28 // Test accessors on the global object.
try-catch-extension-object.js 29 // objects so that __proto__ accessors and accessor setters in the
  /external/v8/test/mjsunit/regress/
regress-1172.js 29 // function's prototype even in the presence of JS accessors.
32 // to use JS accessors to set 'constructor' property.
regress-1692.js 64 // Inherited accessors.
70 // Own accessors.
regress-1062422.js 28 // 1062422 Ensure that accessors can handle unexpected receivers.
regress-1172-bis.js 28 // Verifies that exception thrown from JS accessors when attempting a call
regress-1119.js 29 // by JS accessors.
regress-1130.js 29 // of JS accessors on Object's prototype elements.
regress-192.js 34 // literals MUST NOT trigger inherited accessors, but act as if creating
regress-900.js 28 // Check that we allow accessors on JSArray elements.
regress-crbug-134609.js 28 // Flags: --allow-natives-syntax --inline-accessors
  /frameworks/base/packages/DocumentsUI/
Android.mk 35 -D jack.optimization.inner-class.accessors=true
  /frameworks/base/packages/SystemUI/
Android.mk 11 LOCAL_PROTO_JAVA_OUTPUT_PARAMS := optional_field_style=accessors
  /frameworks/opt/telephony/
Android.mk 32 LOCAL_PROTO_JAVA_OUTPUT_PARAMS := optional_field_style=accessors,store_unknown_fields=true,enum_style=java
  /external/v8/src/ic/
ic.cc 7 #include "src/accessors.h"
863 Handle<Object> accessors = lookup->GetAccessors(); local
864 if (accessors->IsAccessorInfo()) {
865 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors);
870 } else if (accessors->IsAccessorPair()) {
871 Handle<Object> getter(Handle<AccessorPair>::cast(accessors)->getter(),
1079 Handle<Object> accessors = lookup->GetAccessors(); local
1215 Handle<Object> accessors = lookup->GetAccessors(); local
1652 Handle<Object> accessors = lookup->GetAccessors(); local
1783 Handle<Object> accessors = lookup->GetAccessors(); local
    [all...]
  /external/v8/test/mjsunit/es6/
object-literals-super.js 110 // Object literals without any accessors get optimized.

Completed in 250 milliseconds

1 2 3 4