Home
last modified time | relevance | path

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

12345

/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…
DRustUsage.md88 convenient accessors for all fields, e.g. `hp()`, `mana()`, etc:
102 accessed through generated accessors. This is because everything is
/external/boringssl/src/util/fipstools/delocate/testdata/x86_64-BSS/
Din.s4 # BSS declarations emit accessors.
Dout.s8 # BSS declarations emit accessors.
/external/tensorflow/tensorflow/core/protobuf/
Dnamed_tensor.proto17 // directly using the protobuf field accessors.
/external/v8/src/compiler/
Daccess-info.cc447 Handle<Object> accessors(descriptors->GetStrongValue(number), in ComputePropertyAccessInfo() local
449 if (!accessors->IsAccessorPair()) return false; in ComputePropertyAccessInfo()
452 ? Handle<AccessorPair>::cast(accessors)->getter() in ComputePropertyAccessInfo()
453 : 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/yapf/plugins/vim/autoload/
Dyapf.vim17 " Place this script in your ~/.vim/autoload directory. You can add accessors to
/external/v8/src/ic/
Dic.cc817 Handle<Object> accessors = lookup->GetAccessors(); in ComputeHandler() local
818 if (accessors->IsAccessorPair()) { in ComputeHandler()
824 Handle<Object> getter(AccessorPair::cast(*accessors)->getter(), in ComputeHandler()
889 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); in ComputeHandler()
1521 Handle<Object> accessors = lookup->GetAccessors(); in ComputeHandler() local
1522 if (accessors->IsAccessorInfo()) { in ComputeHandler()
1523 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); in ComputeHandler()
1529 if (AccessorInfo::cast(*accessors)->is_special_data_property() && in ComputeHandler()
1552 } else if (accessors->IsAccessorPair()) { in ComputeHandler()
1553 Handle<Object> setter(Handle<AccessorPair>::cast(accessors)->setter(), in ComputeHandler()
/external/webrtc/talk/app/webrtc/objc/
DRTCMediaConstraints.mm38 // TODO(hughv): Add accessors for mandatory and optional constraints.
/external/clang/test/Index/
Dcomplete-documentation-properties.m3 // This test is for when property accessors do not have their own code
/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/gypfiles/
Dfeatures.gypi72 # Enable/disable JavaScript API accessors.
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1275 int entry, AccessorPair* accessors) { in ExtractAccessorPairReferences() argument
1276 SetInternalReference(accessors, entry, "getter", accessors->getter(), in ExtractAccessorPairReferences()
1278 SetInternalReference(accessors, entry, "setter", accessors->setter(), in ExtractAccessorPairReferences()
1498 AccessorPair* accessors = AccessorPair::cast(callback_obj); in ExtractAccessorPairProperty() local
1499 SetPropertyReference(js_obj, entry, key, accessors, nullptr, field_offset); in ExtractAccessorPairProperty()
1500 Object* getter = accessors->getter(); in ExtractAccessorPairProperty()
1504 Object* setter = accessors->setter(); in ExtractAccessorPairProperty()
/external/v8/src/
Dkeys.cc609 Object* accessors = descs->GetStrongValue(i); in CollectOwnPropertyNamesInternal() local
610 if (!accessors->IsAccessorInfo()) continue; in CollectOwnPropertyNamesInternal()
611 if (!AccessorInfo::cast(accessors)->all_can_read()) continue; in CollectOwnPropertyNamesInternal()
Dmessages.cc353 Handle<Object> accessors = iter.GetAccessors(); in CheckMethodName() local
354 if (accessors->IsAccessorPair()) { in CheckMethodName()
355 Handle<AccessorPair> pair = Handle<AccessorPair>::cast(accessors); in CheckMethodName()
/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
/external/python/cpython2/Doc/c-api/
Dcapsule.rst122 any of the accessors (any function starting with :c:func:`PyCapsule_Get`) are
/external/python/cpython3/Doc/c-api/
Dcapsule.rst122 any of the accessors (any function starting with :c:func:`PyCapsule_Get`) are

12345