Home
last modified time | relevance | path

Searched refs:accessors (Results 1 – 25 of 118) sorted by relevance

12345

/external/javassist/src/main/javassist/compiler/
DAccessorMaker.java29 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/
Ddiskcache.cc103 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()
Ddiskcache.h65 mutable size_t accessors; member
/external/protobuf/javanano/
DREADME.md115 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/
Dproperty-category-impl.m4 /* This test is for categories which don't implement the accessors but some accessors are
/external/flatbuffers/docs/source/
DBenchmarks.md33 … traversal code | typed accessors | typed accessors | manual error checkin…
DCompiler.md81 - `--gen-mutable` : Generate additional non-const accessors for mutating
DWhitePaper.md106 generating accessors. Or you remove it, but now you risk that
DCppUsage.md78 convenient accessors for all fields, e.g. `hp()`, `mana()`, etc:
254 accessed through generated accessors. This is because everything is
/external/v8/src/ic/
Dic.cc1029 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 …]
Dhandler-compiler.cc306 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/
Daccess-info.cc349 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/
Ddebug-info-property-accessors.m5 // Ensure we emit the names of explicit/renamed accessors even if they
/external/clang/test/Index/
Dcomplete-documentation-properties.m3 // This test is for when property accessors do not have their own code
/external/webrtc/talk/app/webrtc/objc/
DRTCMediaConstraints.mm38 // TODO(hughv): Add accessors for mandatory and optional constraints.
/external/eigen/doc/
DClassHierarchy.dox58 - DenseCoeffsBase means something that has dense coefficient accessors. It is a base class for
60accessors is very different depending on whether a dense expression has direct memory access or no…
DTutorialGeometry.dox150 \b Component \b accessors
158 coefficient accessors</td><td>\code
DTutorialMatrixClass.dox111 \section TutorialMatrixCoeffAccessors Coefficient accessors
113 The primary coefficient accessors and mutators in Eigen are the overloaded parenthesis operators.
/external/v8/src/
Dkeys.cc544 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()
Dmessages.cc225 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/
Dfeatures.gypi70 # Enable/disable JavaScript API accessors.
/external/javassist/src/main/javassist/
DCtClassType.java68 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/
Dheap-snapshot-generator.cc1405 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/
Druntime-debug.cc116 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/
Dtest_bad_identifiers.proto156 // We don't generate accessors for extensions so the following extension

12345