/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/protobuf/javanano/ |
D | README.md | 115 IMPORTANT: If you have fields with defaults and opt out of accessors 124 of changing the default value. Alternatively, turn on accessors and 144 optional_field_style -> default or accessors 194 DEPRECATED. Use optional_field_style=accessors. 210 **optional_field_style={default,accessors,reftypes}** (default: default) 220 * accessors 222 When set to 'accessors', each optional field is encapsulated behind 223 4 accessors, namely get\<fieldname\>(), set\<fieldname\>(), has\<fieldname\>() 229 In the 'accessors' style, required and nested message fields are still 231 translated to arrays. No accessors are generated for them. [all …]
|
/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/flatbuffers/docs/source/ |
D | Benchmarks.md | 33 … traversal code | typed accessors | typed accessors | manual error checkin…
|
D | Compiler.md | 81 - `--gen-mutable` : Generate additional non-const accessors for mutating
|
D | WhitePaper.md | 106 generating accessors. Or you remove it, but now you risk that
|
D | CppUsage.md | 78 convenient accessors for all fields, e.g. `hp()`, `mana()`, etc: 254 accessed through generated accessors. This is because everything is
|
/external/v8/src/ic/ |
D | ic.cc | 1029 Handle<Object> accessors = lookup->GetAccessors(); in IsCompatibleReceiver() local 1030 if (accessors->IsAccessorInfo()) { in IsCompatibleReceiver() 1031 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); in IsCompatibleReceiver() 1036 } else if (accessors->IsAccessorPair()) { in IsCompatibleReceiver() 1037 Handle<Object> getter(Handle<AccessorPair>::cast(accessors)->getter(), in IsCompatibleReceiver() 1333 Handle<Object> accessors = lookup->GetAccessors(); in GetMapIndependentHandler() local 1334 if (accessors->IsAccessorPair()) { in GetMapIndependentHandler() 1345 } else if (accessors->IsAccessorInfo()) { in GetMapIndependentHandler() 1346 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); in GetMapIndependentHandler() 1503 Handle<Object> accessors = lookup->GetAccessors(); in CompileHandler() local [all …]
|
D | handler-compiler.cc | 306 Handle<Object> accessors = it->GetAccessors(); in CompileLoadInterceptor() local 307 if (accessors->IsAccessorInfo()) { in CompileLoadInterceptor() 308 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); in CompileLoadInterceptor() 312 } else if (accessors->IsAccessorPair()) { in CompileLoadInterceptor() 314 Handle<Object> getter(Handle<AccessorPair>::cast(accessors)->getter(), in CompileLoadInterceptor()
|
/external/v8/src/compiler/ |
D | access-info.cc | 349 Handle<Object> accessors(descriptors->GetValue(number), isolate()); in ComputePropertyAccessInfo() local 350 if (!accessors->IsAccessorPair()) return false; in ComputePropertyAccessInfo() 353 ? Handle<AccessorPair>::cast(accessors)->getter() in ComputePropertyAccessInfo() 354 : Handle<AccessorPair>::cast(accessors)->setter(), in ComputePropertyAccessInfo()
|
/external/clang/test/CodeGenObjC/ |
D | debug-info-property-accessors.m | 5 // Ensure we emit the names of explicit/renamed accessors even if they
|
/external/clang/test/Index/ |
D | complete-documentation-properties.m | 3 // This test is for when property accessors do not have their own code
|
/external/webrtc/talk/app/webrtc/objc/ |
D | RTCMediaConstraints.mm | 38 // TODO(hughv): Add accessors for mandatory and optional constraints.
|
/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 | 150 \b Component \b accessors 158 coefficient accessors</td><td>\code
|
D | TutorialMatrixClass.dox | 111 \section TutorialMatrixCoeffAccessors Coefficient accessors 113 The primary coefficient accessors and mutators in Eigen are the overloaded parenthesis operators.
|
/external/v8/src/ |
D | keys.cc | 544 Object* accessors = descs->GetValue(i); in CollectOwnPropertyNamesInternal() local 545 if (!accessors->IsAccessorInfo()) continue; in CollectOwnPropertyNamesInternal() 546 if (!AccessorInfo::cast(accessors)->all_can_read()) continue; in CollectOwnPropertyNamesInternal()
|
D | messages.cc | 225 Handle<Object> accessors = iter.GetAccessors(); in CheckMethodName() local 226 if (accessors->IsAccessorPair()) { in CheckMethodName() 227 Handle<AccessorPair> pair = Handle<AccessorPair>::cast(accessors); in CheckMethodName()
|
/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 | 1405 int entry, AccessorPair* accessors) { in ExtractAccessorPairReferences() argument 1406 SetInternalReference(accessors, entry, "getter", accessors->getter(), in ExtractAccessorPairReferences() 1408 SetInternalReference(accessors, entry, "setter", accessors->setter(), in ExtractAccessorPairReferences() 1616 AccessorPair* accessors = AccessorPair::cast(callback_obj); in ExtractAccessorPairProperty() local 1617 SetPropertyReference(js_obj, entry, key, accessors, NULL, field_offset); in ExtractAccessorPairProperty() 1618 Object* getter = accessors->getter(); in ExtractAccessorPairProperty() 1622 Object* setter = accessors->setter(); in ExtractAccessorPairProperty()
|
/external/v8/src/runtime/ |
D | runtime-debug.cc | 116 Handle<Object> accessors = it->GetAccessors(); in DebugGetProperty() local 117 if (!accessors->IsAccessorInfo()) { in DebugGetProperty() 393 Handle<AccessorPair> accessors = Handle<AccessorPair>::cast(maybe_pair); in RUNTIME_FUNCTION() local 396 AccessorPair::GetComponent(accessors, ACCESSOR_GETTER); in RUNTIME_FUNCTION() 398 AccessorPair::GetComponent(accessors, ACCESSOR_SETTER); in RUNTIME_FUNCTION()
|
/external/protobuf/java/core/src/test/proto/com/google/protobuf/ |
D | test_bad_identifiers.proto | 156 // We don't generate accessors for extensions so the following extension
|