Home
last modified time | relevance | path

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

123456

/external/javassist/src/main/javassist/compiler/
DAccessorMaker.java43 private Map<String,Object> accessors; field in AccessorMaker
50 accessors = new HashMap<String,Object>(); in AccessorMaker()
57 String consDesc = (String)accessors.get(key); in getConstructor()
94 accessors.put(key, consDesc); in getConstructor()
116 String accName = (String)accessors.get(key); in getMethodAccessor()
156 accessors.put(key, accName); in getMethodAccessor()
168 Object res = accessors.get(key); in getFieldGetter()
200 accessors.put(key, minfo); in getFieldGetter()
219 Object res = accessors.get(key); in getFieldSetter()
255 accessors.put(key, minfo); in getFieldSetter()
/external/llvm-project/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h710 namespace accessors {
771 return accessors::getFuncHash<ThisT, Endian>(this); in getFuncHash()
775 return accessors::getDataSize<ThisT, Endian>(this); in getDataSize()
797 return accessors::advanceByOneOutOfLine<ThisT, Endian>(this, MappingBuf); in advanceByOne()
806 return accessors::getCoverageMappingOutOfLine<ThisT, Endian>(this, in getCoverageMapping()
821 return accessors::getFuncHash<ThisT, Endian>(this); in getFuncHash()
825 return accessors::getDataSize<ThisT, Endian>(this); in getDataSize()
829 return accessors::getFuncNameRef<ThisT, Endian>(this); in getFuncNameRef()
834 return accessors::getFuncNameViaRef<ThisT, Endian>(this, ProfileNames, in getFuncName()
841 return accessors::advanceByOneOutOfLine<ThisT, Endian>(this, MappingBuf); in advanceByOne()
[all …]
/external/python/cffi/cffi/
Dapi.py869 accessors = {}
881 accessors[name] = accessor_function
883 accessors[name] = accessor_variable
885 accessors[name] = accessor_constant
891 accessors[enumname] = accessor_enum
893 accessors.setdefault(name, accessor_int_constant)
900 if name not in accessors:
902 if name not in accessors:
904 accessors[name](name)
921 return accessors.keys()
/external/protobuf/javanano/
DREADME.md118 IMPORTANT: If you have fields with defaults and opt out of accessors
127 of changing the default value. Alternatively, turn on accessors and
147 optional_field_style -> default or accessors
197 DEPRECATED. Use optional_field_style=accessors.
213 **optional_field_style={default,accessors,reftypes}** (default: default)
223 * accessors
225 When set to 'accessors', each optional field is encapsulated behind
226 4 accessors, namely get\<fieldname\>(), set\<fieldname\>(), has\<fieldname\>()
232 In the 'accessors' style, required and nested message fields are still
234 translated to arrays. No accessors are generated for them.
[all …]
/external/llvm-project/clang/test/SemaObjC/
Dproperty-category-impl.m4 /* This test is for categories which don't implement the accessors but some accessors are
Ddefault-synthesize-sourceloc.m3 // Test that accessor stubs for default-synthesized ObjC accessors
/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.md89 convenient accessors for all fields, e.g. `hp()`, `mana()`, etc:
103 accessed through generated accessors. This is because everything is
/external/auto/value/userguide/
Dperformance.md7 (generated accessors can be inlined)
Dpractices.md14 make your accessor methods `public`. The generated accessors don't copy the
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/
DAtomicFUTransformer.kt120 …val accessors = mutableSetOf<MethodId>() // set of accessor method that read the corresponding ato… in toString() constant in kotlinx.atomicfu.transformer.FieldInfo
157 private val accessors = mutableMapOf<MethodId, FieldInfo>() constant
333 fieldInfo.accessors += accessorMethod in visitEnd()
334 accessors[accessorMethod] = fieldInfo in visitEnd()
398 f.accessors.isEmpty() -> ACC_PRIVATE in descToName()
496 if (methodId in accessors || methodId in removeMethods) { in descToName()
536 removeMethods = accessors.keys + removeMethods in descToName()
590 val fieldInfo = accessors[methodId] in visitMethodInsn()
1047 methodId in accessors -> { in transform()
1049 val f = accessors[methodId]!! in transform()
/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.proto19 // directly using the protobuf field accessors.
/external/clang/test/CodeGenObjC/
Ddebug-info-property-accessors.m5 // Ensure we emit the names of explicit/renamed accessors even if they
/external/llvm-project/clang/test/CodeGenObjC/
Ddebug-info-property-accessors.m5 // Ensure we emit the names of explicit/renamed accessors even if they
/external/llvm-project/mlir/include/mlir/Interfaces/
DDerivedAttributeOpInterface.td23 from information of the operation. ODS generates convenience accessors for
/external/wayland/patches/
D0003-client-server-Safe-casts-from-wl_object.diff7 wl_object, which has no accessors, into an opaque pointer to either wl_proxy
8 (client) or wl_resource (server), which does have some useful accessors.
/external/llvm-project/mlir/docs/Rationale/
DUsageOfConst.md117 ### Pervasively duplicated accessors
120 that all of the graph traversal accessors be duplicated into const and non-const
161 ### Templated accessors
164 accessors leads to us having to turn more code into templates than would
263 1. All of the const-duplicated accessors would be eliminated, e.g.
/external/mesa3d/docs/relnotes/
D7.10.3.rst153 - mesa: Add a function to set up the default renderbuffer accessors.
154 - intel: Use Mesa core's renderbuffer accessors for depth.
158 - mesa: Add renderbuffer accessors for R8/RG88/R16/RG1616.
161 - intel: Use mesa core's R8, RG88, R16, RG1616 RB accessors.
/external/yapf/plugins/vim/autoload/
Dyapf.vim17 " Place this script in your ~/.vim/autoload directory. You can add accessors to
/external/clang/test/Index/
Dcomplete-documentation-properties.m3 // This test is for when property accessors do not have their own code
/external/llvm-project/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…

123456