Home
last modified time | relevance | path

Searched refs:type_index (Results 1 – 25 of 54) sorted by relevance

123

/external/libcxx/include/
Dtypeindex21 class type_index
24 type_index(const type_info& rhs) noexcept;
26 bool operator==(const type_index& rhs) const noexcept;
27 bool operator!=(const type_index& rhs) const noexcept;
28 bool operator< (const type_index& rhs) const noexcept;
29 bool operator<=(const type_index& rhs) const noexcept;
30 bool operator> (const type_index& rhs) const noexcept;
31 bool operator>=(const type_index& rhs) const noexcept;
38 struct hash<type_index>
39 : public unary_function<type_index, size_t>
[all …]
/external/annotation-tools/scene-lib/src/annotations/el/
DRelativeLocation.java28 public final int type_index; field in RelativeLocation
35 private RelativeLocation(int offset, int index, int type_index) { in RelativeLocation() argument
38 this.type_index = type_index; in RelativeLocation()
41 public static RelativeLocation createOffset(int offset, int type_index) { in createOffset() argument
42 return new RelativeLocation(offset, -1, type_index); in createOffset()
45 public static RelativeLocation createIndex(int index, int type_index) { in createIndex() argument
46 return new RelativeLocation(-1, index, type_index); in createIndex()
67 c = Integer.compare(type_index, l.type_index); in compareTo()
101 h.mash(type_index); in hashCode()
/external/libcxx/test/std/utilities/type.index/type.index.synopsis/
Dhash_type_index.pass.cpp29 typedef std::hash<std::type_index> H; in main()
30 static_assert((std::is_same<typename H::argument_type, std::type_index>::value), "" ); in main()
35 test_hash_enabled_for_type<std::type_index>(std::type_index(typeid(int))); in main()
/external/libcxx/test/std/utilities/type.index/type.index.hash/
Dhash.pass.cpp26 typedef std::hash<std::type_index> H; in main()
27 static_assert((std::is_same<typename H::argument_type, std::type_index>::value), "" ); in main()
30 std::type_index t1 = typeid(int); in main()
31 assert(std::hash<std::type_index>()(t1) == t1.hash_code()); in main()
/external/libcxx/test/std/utilities/type.index/type.index.members/
Deq.pass.cpp22 std::type_index t1 = typeid(int); in main()
23 std::type_index t2 = typeid(int); in main()
24 std::type_index t3 = typeid(long); in main()
Dlt.pass.cpp24 std::type_index t1 = typeid(int); in main()
25 std::type_index t2 = typeid(int); in main()
26 std::type_index t3 = typeid(long); in main()
Dhash_code.pass.cpp22 std::type_index t1 = typeid(int); in main()
Dctor.pass.cpp23 std::type_index t1(info); in main()
Dname.pass.cpp23 std::type_index t1 = typeid(int); in main()
/external/annotation-tools/scene-lib/src/annotations/io/
DIndexFileParser.java974 int type_index = 0; in parseExpression() local
977 type_index = expectNonNegative(matchNNInteger()); in parseExpression()
979 loc = RelativeLocation.createOffset(offset, type_index); in parseExpression()
983 int type_index = 0; in parseExpression() local
986 type_index = expectNonNegative(matchNNInteger()); in parseExpression()
988 loc = RelativeLocation.createIndex(index, type_index); in parseExpression()
1045 int type_index = expectNonNegative(matchNNInteger()); in parseExpression() local
1047 ? RelativeLocation.createOffset(i, type_index) in parseExpression()
1048 : RelativeLocation.createIndex(i, type_index); in parseExpression()
1079 int type_index = expectNonNegative(matchNNInteger()); in parseExpression() local
[all …]
DIndexFileWriter.java297 if (prev == null || loc.type_index < 0 in printRelativeElements()
303 if (loc.type_index <= 0) { printAnnotations(t); } in printRelativeElements()
307 if (loc.type_index > 0) { in printRelativeElements()
309 desc2 + " " + loc.type_index, t); in printRelativeElements()
/external/tensorflow/tensorflow/core/framework/
Dresource_mgr.cc31 const TypeIndex& type_index) { in MakeResourceHandle() argument
42 result.set_hash_code(type_index.hash_code()); in MakeResourceHandle()
43 result.set_maybe_type_name(type_index.name()); in MakeResourceHandle()
49 const TypeIndex& type_index) { in MakeResourceHandleToOutput() argument
54 MakeResourceHandle(context, container, name, type_index); in MakeResourceHandleToOutput()
Dresource_mgr.h207 const TypeIndex& type_index);
217 const TypeIndex& type_index);
450 auto type_index = MakeTypeIndex<T>(); in ValidateDeviceAndType() local
451 if (type_index.hash_code() != p.hash_code()) { in ValidateDeviceAndType()
454 p.maybe_type_name(), " got ", type_index.name()); in ValidateDeviceAndType()
/external/libcxx/test/std/utilities/type.index/type.index.overview/
Dcopy_ctor.pass.cpp21 std::type_index t1(typeid(int)); in main()
22 std::type_index t2 = t1; in main()
Dcopy_assign.pass.cpp21 std::type_index t1(typeid(int)); in main()
22 std::type_index t2(typeid(double)); in main()
/external/adhd/scripts/audio_tuning/
Dconf2ini2.py154 type_index = biquad_type_name.index(type_name)
160 type_index = 0;
162 print eq_param % (n, type_index, type_name,
/external/annotation-tools/asmx/src/org/objectweb/asm/util/
DTraceTypeAnnotationVisitor.java271 public void visitXTypeIndex(int type_index) { in visitXTypeIndex() argument
272 this.xtype_index = type_index; in visitXTypeIndex()
274 xav.visitXTypeIndex(type_index); in visitXTypeIndex()
DASMifierTypeAnnotationVisitor.java187 public void visitXTypeIndex(int type_index) { in visitXTypeIndex() argument
190 appendConstant(buf, type_index); in visitXTypeIndex()
/external/annotation-tools/asmx/src/org/objectweb/asm/optimizer/
DTypeAnnotationConstantsCollector.java96 public void visitXTypeIndex(int type_index) { in visitXTypeIndex() argument
97 xav.visitXTypeIndex(type_index); in visitXTypeIndex()
/external/annotation-tools/scene-lib/src/annotations/io/classfile/
DSafeTypeAnnotationVisitor.java218 public void visitXTypeIndex(int type_index) { in visitXTypeIndex() argument
219 xTypeIndexArgs.add(type_index); in visitXTypeIndex()
220 xav.visitXTypeIndex(type_index); in visitXTypeIndex()
/external/tensorflow/tensorflow/core/kernels/
Dops_testutil.h147 TypeIndex type_index = MakeTypeIndex<T>(); in AddResourceInput() local
152 handle.set_hash_code(type_index.hash_code()); in AddResourceInput()
153 handle.set_maybe_type_name(type_index.name()); in AddResourceInput()
/external/annotation-tools/scene-lib/src/annotations/util/
DAbstractClassVisitor.java56 public void visitXTypeIndex(int type_index) {} in visitTypeAnnotation() argument
149 public void visitXTypeIndex(int type_index) {}
212 public void visitXTypeIndex(int type_index) {}
/external/flatbuffers/include/flatbuffers/
Dreflection.h52 int type_index, in GetTypeSizeInline() argument
55 schema.objects()->Get(type_index)->is_struct()) { in GetTypeSizeInline()
56 return schema.objects()->Get(type_index)->bytesize(); in GetTypeSizeInline()
157 int type_index);
/external/annotation-tools/asmx/src/org/objectweb/asm/
DTypeAnnotationVisitor.java107 public void visitXTypeIndex(int type_index); in visitXTypeIndex() argument
DClassReader.java1510 Integer type_index = null; in readTypeAnnotationValues() local
1599 type_index = readUnsignedShort(v); in readTypeAnnotationValues()
1600 if (type_index == 0xFFFF) type_index = -1; in readTypeAnnotationValues()
1604 type_index = readUnsignedShort(v); in readTypeAnnotationValues()
1629 type_index = readByte(v); in readTypeAnnotationValues()
1676 if (type_index != null) { in readTypeAnnotationValues()
1677 xav.visitXTypeIndex(type_index); in readTypeAnnotationValues()

123