Home
last modified time | relevance | path

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

123

/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/v8/test/webkit/
Dobject-literal-syntax-expected.txt33 …rew exception SyntaxError: Object literal may not have multiple get/set accessors with the same na…
34 …rew exception SyntaxError: Object literal may not have multiple get/set accessors with the same na…
35 …rew exception SyntaxError: Object literal may not have multiple get/set accessors with the same na…
40 …rew exception SyntaxError: Object literal may not have multiple get/set accessors with the same na…
41 …rew exception SyntaxError: Object literal may not have multiple get/set accessors with the same na…
42 …rew exception SyntaxError: Object literal may not have multiple get/set accessors with the same na…
DObject-defineProperties-expected.txt37 …rew exception TypeError: Invalid property. A property cannot both have accessors and be writable …
/external/clang/test/SemaObjC/
Dproperty-category-impl.m4 /* This test is for categories which don't implement the accessors but some accessors are
/external/protobuf/java/
DREADME.txt450 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/
Ddebug-info-property-accessors.m5 // Ensure we emit the names of explicit/renamed accessors even if they
/external/v8/src/ic/
Dhandler-compiler.cc247 Handle<Object> accessors = it->GetAccessors(); in CompileLoadInterceptor() local
248 inline_followup = accessors->IsExecutableAccessorInfo(); in CompileLoadInterceptor()
251 Handle<ExecutableAccessorInfo>::cast(accessors); in CompileLoadInterceptor()
Dic.cc1005 Handle<Object> accessors = lookup->GetAccessors(); in CompileHandler() local
1006 if (accessors->IsExecutableAccessorInfo()) { in CompileHandler()
1008 Handle<ExecutableAccessorInfo>::cast(accessors); in CompileHandler()
1019 if (accessors->IsAccessorPair()) { in CompileHandler()
1020 Handle<Object> getter(Handle<AccessorPair>::cast(accessors)->getter(), in CompileHandler()
1042 DCHECK(accessors->IsDeclaredAccessorInfo()); in CompileHandler()
1458 Handle<Object> accessors = lookup->GetAccessors(); in CompileHandler() local
1459 if (accessors->IsExecutableAccessorInfo()) { in CompileHandler()
1461 Handle<ExecutableAccessorInfo>::cast(accessors); in CompileHandler()
1473 } else if (accessors->IsAccessorPair()) { in CompileHandler()
[all …]
/external/chromium-trace/trace-viewer/third_party/WebOb/
DPKG-INFO13 header parsing and accessors for other standard parts of the
/external/linux-tools-perf/src/tools/perf/util/
Dunwind.c507 static unw_accessors_t accessors = { variable
525 addr_space = unw_create_addr_space(&accessors, 0); in get_entries()
/external/clang/test/Index/
Dcomplete-documentation-properties.m3 // This test is for when property accessors do not have their own code
/external/v8/test/webkit/fast/js/
DObject-defineProperty-expected.txt48 …rew exception TypeError: Invalid property. A property cannot both have accessors and be writable …
55 …rew exception TypeError: Invalid property. A property cannot both have accessors and be writable …
56 …rew exception TypeError: Invalid property. A property cannot both have accessors and be writable …
57 …rew exception TypeError: Invalid property. A property cannot both have accessors and be writable …
58 …rew exception TypeError: Invalid property. A property cannot both have accessors and be writable …
/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.dox149 \b Component \b accessors
157 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/test/cctest/
Dcctest.gyp93 'test-accessors.cc',
109 'test-declarative-accessors.cc',
Dtest-cpu-profiler.cc826 TestApiCallbacks accessors(100); in TEST() local
828 v8::External::New(isolate, &accessors); in TEST()
871 TestApiCallbacks accessors(1); in TEST() local
873 v8::External::New(isolate, &accessors); in TEST()
891 accessors.set_warming_up(true); in TEST()
897 accessors.set_warming_up(false); in TEST()
Dcctest.status446 'test-accessors/HandleScopePop' : [SKIP],
447 'test-accessors/Gc' : [SKIP],
/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/protobuf/java/src/test/java/com/google/protobuf/
Dtest_bad_identifiers.proto151 // We don't generate accessors for extensions so the following extension
/external/v8/src/
Dheap-snapshot-generator.cc1453 int entry, AccessorPair* accessors) { in ExtractAccessorPairReferences() argument
1454 SetInternalReference(accessors, entry, "getter", accessors->getter(), in ExtractAccessorPairReferences()
1456 SetInternalReference(accessors, entry, "setter", accessors->setter(), in ExtractAccessorPairReferences()
1711 AccessorPair* accessors = AccessorPair::cast(callback_obj); in ExtractAccessorPairProperty() local
1712 Object* getter = accessors->getter(); in ExtractAccessorPairProperty()
1716 Object* setter = accessors->setter(); in ExtractAccessorPairProperty()
Dheap-snapshot-generator.h377 void ExtractAccessorPairReferences(int entry, AccessorPair* accessors);
Dfactory.cc152 Handle<AccessorPair> accessors = in NewAccessorPair() local
154 accessors->set_getter(*the_hole_value(), SKIP_WRITE_BARRIER); in NewAccessorPair()
155 accessors->set_setter(*the_hole_value(), SKIP_WRITE_BARRIER); in NewAccessorPair()
156 return accessors; in NewAccessorPair()
/external/elfutils/src/
Delfutils.spec379 - libdwfl: Fix address bias returned by CFI accessors. Fix core
DCOPYING-LGPLV369 layouts and accessors, or small macros, inline functions and templates

123