/external/javassist/src/main/javassist/compiler/ |
D | AccessorMaker.java | 29 private HashMap accessors; field in AccessorMaker 36 accessors = new HashMap(); in AccessorMaker() 43 String consDesc = (String)accessors.get(key); in getConstructor() 80 accessors.put(key, consDesc); in getConstructor() 102 String accName = (String)accessors.get(key); in getMethodAccessor() 142 accessors.put(key, accName); in getMethodAccessor() 154 Object res = accessors.get(key); in getFieldGetter() 186 accessors.put(key, minfo); in getFieldGetter() 205 Object res = accessors.get(key); in getFieldSetter() 241 accessors.put(key, minfo); in getFieldSetter()
|
/external/webrtc/webrtc/base/ |
D | diskcache.cc | 103 if ((LS_UNLOCKED == entry->lock_state) && (entry->accessors > 0)) in LockResource() 136 entry->accessors += 1; in WriteResource() 146 if (entry->accessors > 0) { in UnlockResource() 168 entry->accessors += 1; in ReadResource() 193 if ((LS_UNLOCKED != entry->lock_state) || (entry->accessors > 0)) in DeleteResource() 229 if ((LS_UNLOCKED != it->second.lock_state) || (it->second.accessors > 0)) in CheckLimit() 308 e.accessors = 0; in GetOrCreateEntry() 324 entry->accessors -= 1; in ReleaseResource() 339 if ((LS_UNLOCKING == entry->lock_state) && (0 == entry->accessors)) { in ReleaseResource()
|
D | diskcache.h | 65 mutable size_t accessors; member
|
/external/clang/test/SemaObjC/ |
D | property-category-impl.m | 4 /* This test is for categories which don't implement the accessors but some accessors are
|
/external/v8/src/ic/ |
D | ic.cc | 863 Handle<Object> accessors = lookup->GetAccessors(); in IsCompatibleReceiver() local 864 if (accessors->IsAccessorInfo()) { in IsCompatibleReceiver() 865 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); in IsCompatibleReceiver() 870 } else if (accessors->IsAccessorPair()) { in IsCompatibleReceiver() 871 Handle<Object> getter(Handle<AccessorPair>::cast(accessors)->getter(), in IsCompatibleReceiver() 1079 Handle<Object> accessors = lookup->GetAccessors(); in GetMapIndependentHandler() local 1080 if (accessors->IsAccessorPair()) { in GetMapIndependentHandler() 1091 } else if (accessors->IsAccessorInfo()) { in GetMapIndependentHandler() 1092 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); in GetMapIndependentHandler() 1215 Handle<Object> accessors = lookup->GetAccessors(); in CompileHandler() local [all …]
|
D | handler-compiler.cc | 301 Handle<Object> accessors = it->GetAccessors(); in CompileLoadInterceptor() local 302 if (accessors->IsAccessorInfo()) { in CompileLoadInterceptor() 303 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); in CompileLoadInterceptor() 307 } else if (accessors->IsAccessorPair()) { in CompileLoadInterceptor() 309 Handle<Object> getter(Handle<AccessorPair>::cast(accessors)->getter(), in CompileLoadInterceptor()
|
/external/v8/test/cctest/libsampler/ |
D | test-sampler.cc | 121 TestApiCallbacks accessors; in TEST() local 123 v8::External::New(isolate, &accessors); in TEST()
|
/external/protobuf/java/ |
D | README.txt | 450 IMPORTANT: If you have fields with defaults and opt out of accessors 459 of changing the default value. Alternatively, turn on accessors and 477 optional_field_style -> default or accessors 488 DEPRECATED. Use optional_field_style=accessors. 504 optional_field_style={default,accessors,reftypes} (default: default) 513 * accessors * 515 When set to 'accessors', each optional field is encapsulated behind 516 4 accessors, namely get<fieldname>(), set<fieldname>(), has<fieldname>() 522 In the 'accessors' style, required and nested message fields are still 524 translated to arrays. No accessors are generated for them. [all …]
|
/external/clang/test/CodeGenObjC/ |
D | debug-info-property-accessors.m | 5 // Ensure we emit the names of explicit/renamed accessors even if they
|
/external/v8/src/ |
D | messages.cc | 241 Handle<Object> accessors = iter.GetAccessors(); in CheckMethodName() local 242 if (accessors->IsAccessorPair()) { in CheckMethodName() 243 Handle<AccessorPair> pair = Handle<AccessorPair>::cast(accessors); in CheckMethodName()
|
D | keys.cc | 503 Object* accessors = descs->GetValue(i); in CollectOwnPropertyNamesInternal() local 504 if (!accessors->IsAccessorInfo()) continue; in CollectOwnPropertyNamesInternal() 505 if (!AccessorInfo::cast(accessors)->all_can_read()) continue; in CollectOwnPropertyNamesInternal()
|
/external/chromium-trace/catapult/third_party/WebOb/ |
D | PKG-INFO | 13 header parsing and accessors for other standard parts of the
|
/external/webrtc/talk/app/webrtc/objc/ |
D | RTCMediaConstraints.mm | 38 // TODO(hughv): Add accessors for mandatory and optional constraints.
|
/external/clang/test/Index/ |
D | complete-documentation-properties.m | 3 // This test is for when property accessors do not have their own code
|
/external/v8/test/webkit/fast/js/ |
D | Object-defineProperty-expected.txt | 48 …w exception TypeError: Invalid property descriptor. Cannot both specify accessors and a value or w… 55 …w exception TypeError: Invalid property descriptor. Cannot both specify accessors and a value or w… 56 …w exception TypeError: Invalid property descriptor. Cannot both specify accessors and a value or w… 57 …w exception TypeError: Invalid property descriptor. Cannot both specify accessors and a value or w… 58 …w exception TypeError: Invalid property descriptor. Cannot both specify accessors and a value or w…
|
/external/eigen/doc/ |
D | ClassHierarchy.dox | 58 - DenseCoeffsBase means something that has dense coefficient accessors. It is a base class for 60 …accessors is very different depending on whether a dense expression has direct memory access or no…
|
D | TutorialGeometry.dox | 149 \b Component \b accessors 157 coefficient accessors</td><td>\code
|
/external/v8/test/webkit/ |
D | Object-defineProperties-expected.txt | 37 …w exception TypeError: Invalid property descriptor. Cannot both specify accessors and a value or w…
|
/external/v8/gypfiles/ |
D | features.gypi | 70 # Enable/disable JavaScript API accessors.
|
/external/javassist/src/main/javassist/ |
D | CtClassType.java | 68 private AccessorMaker accessors; field in CtClassType 85 accessors = null; in CtClassType() 158 if (accessors == null) in getAccessorMaker() 159 accessors = new AccessorMaker(this); in getAccessorMaker() 161 return accessors; in getAccessorMaker()
|
/external/v8/src/profiler/ |
D | heap-snapshot-generator.cc | 1420 int entry, AccessorPair* accessors) { in ExtractAccessorPairReferences() argument 1421 SetInternalReference(accessors, entry, "getter", accessors->getter(), in ExtractAccessorPairReferences() 1423 SetInternalReference(accessors, entry, "setter", accessors->setter(), in ExtractAccessorPairReferences() 1617 AccessorPair* accessors = AccessorPair::cast(callback_obj); in ExtractAccessorPairProperty() local 1618 SetPropertyReference(js_obj, entry, key, accessors, NULL, field_offset); in ExtractAccessorPairProperty() 1619 Object* getter = accessors->getter(); in ExtractAccessorPairProperty() 1623 Object* setter = accessors->setter(); in ExtractAccessorPairProperty()
|
/external/v8/src/runtime/ |
D | runtime-debug.cc | 112 Handle<Object> accessors = it->GetAccessors(); in DebugGetProperty() local 113 if (!accessors->IsAccessorInfo()) { in DebugGetProperty() 386 Handle<AccessorPair> accessors = Handle<AccessorPair>::cast(maybe_pair); in RUNTIME_FUNCTION() local 389 AccessorPair::GetComponent(accessors, ACCESSOR_GETTER); in RUNTIME_FUNCTION() 391 AccessorPair::GetComponent(accessors, ACCESSOR_SETTER); in RUNTIME_FUNCTION()
|
/external/v8/test/cctest/ |
D | test-cpu-profiler.cc | 786 TestApiCallbacks accessors(100); in TEST() local 788 v8::External::New(isolate, &accessors); in TEST() 827 TestApiCallbacks accessors(1); in TEST() local 829 v8::External::New(isolate, &accessors); in TEST() 844 accessors.set_warming_up(true); in TEST() 850 accessors.set_warming_up(false); in TEST()
|
D | BUILD.gn | 88 "test-accessors.cc", 89 "test-api-accessors.cc",
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
D | test_bad_identifiers.proto | 151 // We don't generate accessors for extensions so the following extension
|