/external/libcxx/include/ |
D | typeindex | 21 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/ |
D | RelativeLocation.java | 28 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()
|
D | AExpression.java | 162 if (loc.type_index >= 0) { in toString() 184 if (loc.type_index >= 0) { in toString()
|
/external/libcxx/test/std/utilities/type.index/type.index.synopsis/ |
D | hash_type_index.pass.cpp | 29 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/ |
D | hash.pass.cpp | 26 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/ |
D | eq.pass.cpp | 22 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()
|
D | lt.pass.cpp | 24 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()
|
D | hash_code.pass.cpp | 22 std::type_index t1 = typeid(int); in main()
|
D | ctor.pass.cpp | 23 std::type_index t1(info); in main()
|
D | name.pass.cpp | 23 std::type_index t1 = typeid(int); in main()
|
/external/libcxx/test/std/utilities/type.index/type.index.overview/ |
D | copy_ctor.pass.cpp | 21 std::type_index t1(typeid(int)); in main() 22 std::type_index t2 = t1; in main()
|
D | copy_assign.pass.cpp | 21 std::type_index t1(typeid(int)); in main() 22 std::type_index t2(typeid(double)); in main()
|
/external/tensorflow/tensorflow/core/framework/ |
D | resource_mgr.cc | 31 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()
|
D | resource_mgr.h | 207 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/adhd/scripts/audio_tuning/ |
D | conf2ini2.py | 154 type_index = biquad_type_name.index(type_name) 160 type_index = 0; 162 print eq_param % (n, type_index, type_name,
|
/external/annotation-tools/scene-lib/src/annotations/io/ |
D | IndexFileParser.java | 974 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 …]
|
D | IndexFileWriter.java | 297 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/annotation-tools/asmx/src/org/objectweb/asm/optimizer/ |
D | TypeAnnotationConstantsCollector.java | 96 public void visitXTypeIndex(int type_index) { in visitXTypeIndex() argument 97 xav.visitXTypeIndex(type_index); in visitXTypeIndex()
|
/external/annotation-tools/asmx/src/org/objectweb/asm/util/ |
D | TraceTypeAnnotationVisitor.java | 271 public void visitXTypeIndex(int type_index) { in visitXTypeIndex() argument 272 this.xtype_index = type_index; in visitXTypeIndex() 274 xav.visitXTypeIndex(type_index); in visitXTypeIndex()
|
D | ASMifierTypeAnnotationVisitor.java | 187 public void visitXTypeIndex(int type_index) { in visitXTypeIndex() argument 190 appendConstant(buf, type_index); in visitXTypeIndex()
|
/external/annotation-tools/scene-lib/src/annotations/io/classfile/ |
D | SafeTypeAnnotationVisitor.java | 218 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/ |
D | ops_testutil.h | 147 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/ |
D | AbstractClassVisitor.java | 56 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/ |
D | reflection.h | 52 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/ |
D | TypeAnnotationVisitor.java | 107 public void visitXTypeIndex(int type_index); in visitXTypeIndex() argument
|