Searched refs:accessors (Results 1 - 25 of 52) sorted by relevance

123

/external/libcxx/test/strings/basic.string/string.ops/string.accessors/
H A DAndroid.mk17 test_makefile := external/libcxx/test/strings/basic.string/string.ops/string.accessors/Android.mk
19 test_name := strings/basic.string/string.ops/string.accessors/data
23 test_name := strings/basic.string/string.ops/string.accessors/get_allocator
27 test_name := strings/basic.string/string.ops/string.accessors/c_str
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8DOMConfiguration.cpp43 void V8DOMConfiguration::installAccessors(v8::Handle<v8::ObjectTemplate> prototype, v8::Handle<v8::Signature> signature, const AccessorConfiguration* accessors, size_t accessorCount, v8::Isolate* isolate) argument
47 if (accessors[i].exposeConfiguration == OnlyExposedToPrivateScript && !world.isPrivateScriptIsolatedWorld())
50 v8::FunctionCallback getterCallback = accessors[i].getter;
51 v8::FunctionCallback setterCallback = accessors[i].setter;
53 if (accessors[i].getterForMainWorld)
54 getterCallback = accessors[i].getterForMainWorld;
55 if (accessors[i].setterForMainWorld)
56 setterCallback = accessors[i].setterForMainWorld;
61 getter = v8::FunctionTemplate::New(isolate, getterCallback, v8::External::New(isolate, const_cast<WrapperTypeInfo*>(accessors[i].data)), signature, 0);
66 setter = v8::FunctionTemplate::New(isolate, setterCallback, v8::External::New(isolate, const_cast<WrapperTypeInfo*>(accessors[
133 installDOMClassTemplate(v8::Handle<v8::FunctionTemplate> functionDescriptor, const char* interfaceName, v8::Handle<v8::FunctionTemplate> parentClass, size_t fieldCount, const AttributeConfiguration* attributes, size_t attributeCount, const AccessorConfiguration* accessors, size_t accessorCount, const MethodConfiguration* callbacks, size_t callbackCount, v8::Isolate* isolate) argument
[all...]
/external/javassist/src/main/javassist/compiler/
H A DAccessorMaker.java23 * 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
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Ddiskcache.cc101 if ((LS_UNLOCKED == entry->lock_state) && (entry->accessors > 0))
134 entry->accessors += 1;
144 if (entry->accessors > 0) {
166 entry->accessors += 1;
191 if ((LS_UNLOCKED != entry->lock_state) || (entry->accessors > 0))
227 if ((LS_UNLOCKED != it->second.lock_state) || (it->second.accessors > 0))
306 e.accessors = 0;
322 entry->accessors -= 1;
337 if ((LS_UNLOCKING == entry->lock_state) && (0 == entry->accessors)) {
H A Ddiskcache.h65 mutable size_t accessors; member in struct:rtc::DiskCache::Entry
/external/chromium_org/v8/src/ic/
H A Dhandler-compiler.cc247 Handle<Object> accessors = it->GetAccessors(); local
248 inline_followup = accessors->IsExecutableAccessorInfo();
251 Handle<ExecutableAccessorInfo>::cast(accessors);
H A Dic.cc7 #include "src/accessors.h"
1005 Handle<Object> accessors = lookup->GetAccessors(); local
1006 if (accessors->IsExecutableAccessorInfo()) {
1008 Handle<ExecutableAccessorInfo>::cast(accessors);
1019 if (accessors->IsAccessorPair()) {
1020 Handle<Object> getter(Handle<AccessorPair>::cast(accessors)->getter(),
1042 DCHECK(accessors->IsDeclaredAccessorInfo());
1458 Handle<Object> accessors = lookup->GetAccessors(); local
1459 if (accessors->IsExecutableAccessorInfo()) {
1461 Handle<ExecutableAccessorInfo>::cast(accessors);
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dunwind.c507 static unw_accessors_t accessors = { variable
525 addr_space = unw_create_addr_space(&accessors, 0);
/external/javassist/src/main/javassist/
H A DCtClassType.java68 private AccessorMaker accessors; field in class:CtClassType
85 accessors = null;
158 if (accessors == null)
159 accessors = new AccessorMaker(this);
161 return accessors;
/external/chromium_org/v8/test/cctest/
H A Dtest-cpu-profiler.cc812 // Test that native accessors are properly reported in the CPU profile.
813 // This test checks the case when the long-running accessors are called
826 TestApiCallbacks accessors(100);
828 v8::External::New(isolate, &accessors);
858 // Test that native accessors are properly reported in the CPU profile.
859 // This test makes sure that the accessors are called enough times to become
871 TestApiCallbacks accessors(1);
873 v8::External::New(isolate, &accessors);
889 // Make sure accessors ICs are in monomorphic state before starting
891 accessors
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tools.pas69 { Property accessors }
92 { Property accessors }
130 { Property accessors }
188 { Property accessors }
H A DAntlr.Runtime.Tree.pas334 { Property accessors }
440 { Property accessors }
537 { Property accessors }
613 { Property accessors }
708 { Property accessors }
806 { Property accessors }
885 { Property accessors }
1079 { Property accessors }
1206 /// property accessors do the conversion to/from ICommonTree.
1708 { Property accessors }
[all...]
H A DAntlr.Runtime.pas63 { Property accessors }
189 { Property accessors }
231 { Property accessors }
291 { Property accessors }
316 { Property accessors }
370 { Property accessors }
436 { Property accessors }
490 { Property accessors }
632 { Property accessors }
658 { Property accessors }
[all...]
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dpycapsule.pxd97 # calls to any of the accessors (any function starting with
/external/chromium_org/v8/src/
H A Dheap-snapshot-generator.cc1453 int entry, AccessorPair* accessors) {
1454 SetInternalReference(accessors, entry, "getter", accessors->getter(),
1456 SetInternalReference(accessors, entry, "setter", accessors->setter(),
1711 AccessorPair* accessors = AccessorPair::cast(callback_obj);
1712 Object* getter = accessors->getter();
1716 Object* setter = accessors->setter();
1452 ExtractAccessorPairReferences( int entry, AccessorPair* accessors) argument
H A Dfactory.cc152 Handle<AccessorPair> accessors = local
154 accessors->set_getter(*the_hole_value(), SKIP_WRITE_BARRIER);
155 accessors->set_setter(*the_hole_value(), SKIP_WRITE_BARRIER);
156 return accessors;
1565 // The global object might be created from an object template with accessors.
1566 // Fill these accessors into the dictionary.
1570 DCHECK(details.type() == CALLBACKS); // Only accessors are expected.
2235 // Recursively copy parent instance templates' accessors,
2266 // Use a temporary FixedArray to acculumate static accessors
2285 // Accumulate static accessors
[all...]
H A Dheap-snapshot-generator.h377 void ExtractAccessorPairReferences(int entry, AccessorPair* accessors);
/external/chromium_org/v8/tools/gyp/
H A Dv8_base.host.darwin-arm.mk27 v8/src/accessors.cc \
H A Dv8_base.host.darwin-arm64.mk27 v8/src/accessors.cc \
H A Dv8_base.host.darwin-mips.mk27 v8/src/accessors.cc \
H A Dv8_base.host.darwin-mips64.mk27 v8/src/accessors.cc \
H A Dv8_base.host.darwin-x86.mk27 v8/src/accessors.cc \
H A Dv8_base.host.darwin-x86_64.mk27 v8/src/accessors.cc \
H A Dv8_base.host.linux-arm.mk27 v8/src/accessors.cc \
H A Dv8_base.host.linux-arm64.mk27 v8/src/accessors.cc \

Completed in 6337 milliseconds

123