/external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/ |
D | SafeRepresenter.java | 175 return representSequence(getTag(data.getClass(), Tag.SEQ), (List<Object>) data, null); in representData() 183 return representSequence(getTag(data.getClass(), Tag.SEQ), new IteratorWrapper(iter), in representData() 204 return representSequence(Tag.SEQ, list, null); in representData() 218 return representSequence(Tag.SEQ, asByteList(data), null); in representData() 220 return representSequence(Tag.SEQ, asShortList(data), null); in representData() 222 return representSequence(Tag.SEQ, asIntList(data), null); in representData() 224 return representSequence(Tag.SEQ, asLongList(data), null); in representData() 226 return representSequence(Tag.SEQ, asFloatList(data), null); in representData() 228 return representSequence(Tag.SEQ, asDoubleList(data), null); in representData() 230 return representSequence(Tag.SEQ, asCharList(data), null); in representData() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/tests/Inputs/shtest-shell/ |
D | sequencing-0.txt | 25 # RUN: FileCheck --check-prefix CHECK-SEQ < %t.out %s 27 # CHECK-SEQ: first-line 28 # CHECK-SEQ: second-line
|
/external/llvm/utils/lit/tests/Inputs/shtest-shell/ |
D | sequencing-0.txt | 25 # RUN: FileCheck --check-prefix CHECK-SEQ < %t.out %s 27 # CHECK-SEQ: first-line 28 # CHECK-SEQ: second-line
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/ |
D | AbstractConstructTest.java | 34 Node node = new SequenceNode(Tag.SEQ, true, new ArrayList<Node>(), null, null, false); in testNotRecursive() 50 Node node = new SequenceNode(Tag.SEQ, true, new ArrayList<Node>(), null, null, false); in testRecursive()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/serializer/ |
D | AnchorGeneratorTest.java | 62 if (node.getTag() == Tag.SEQ) in nextAnchor()
|
/external/python/cpython2/Python/ |
D | symtable.c | 962 #define VISIT_SEQ(ST, TYPE, SEQ) { \ argument 964 asdl_seq *seq = (SEQ); /* avoid variable capture */ \ 972 #define VISIT_SEQ_IN_BLOCK(ST, TYPE, SEQ, S) { \ argument 974 asdl_seq *seq = (SEQ); /* avoid variable capture */ \ 984 #define VISIT_SEQ_TAIL(ST, TYPE, SEQ, START) { \ argument 986 asdl_seq *seq = (SEQ); /* avoid variable capture */ \ 994 #define VISIT_SEQ_TAIL_IN_BLOCK(ST, TYPE, SEQ, START, S) { \ argument 996 asdl_seq *seq = (SEQ); /* avoid variable capture */ \
|
D | compile.c | 1128 #define VISIT_SEQ(C, TYPE, SEQ) { \ argument 1130 asdl_seq *seq = (SEQ); /* avoid variable capture */ \ 1138 #define VISIT_SEQ_IN_SCOPE(C, TYPE, SEQ) { \ argument 1140 asdl_seq *seq = (SEQ); /* avoid variable capture */ \
|
/external/eigen/cmake/ |
D | FindBLASEXT.cmake | 84 # 1: only SEQ libs are handled 85 # 2: both SEQ and PAR libs are handled 89 # detect the cases where SEQ and PAR libs are handled 270 # define the SEQ libs as the BLAS_LIBRARIES
|
D | FindPastix.cmake | 29 # - SEQ: to activate detection of the sequential version (exclude MPI version) 32 # if SEQ and STARPU are given, it looks for a StarPU without MPI 95 if (${component} STREQUAL "SEQ") 677 "Have you tried with COMPONENTS (MPI/SEQ, STARPU, STARPU_CUDA, SCOTCH, PTSCOTCH, METIS)? "
|
/external/snakeyaml/src/test/java/examples/ |
D | IgnoreTagsExampleTest.java | 72 return yamlConstructors.get(Tag.SEQ).construct(node); in construct()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/ |
D | SkipBeanTest.java | 73 if (Tag.SEQ.equals(valueNode.getTag())) { in representJavaBeanProperty()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue73/ |
D | DumpSetAsSequenceExampleTest.java | 66 return representSequence(getTag(data.getClass(), Tag.SEQ), (Iterable<Object>) data, in representData()
|
/external/snakeyaml/src/test/java8/org/yaml/snakeyaml/issues/issue310/ |
D | OptionalTest.java | 121 return representSequence(Tag.SEQ, seq, true); in representData()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/resolver/ |
D | Resolver.java | 133 return Tag.SEQ; in resolve()
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_opcode_tmp.h | 76 OP12(SEQ)
|
D | tgsi_info_opcodes.h | 46 OPCODE(1, 2, COMP, SEQ)
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/ |
D | Tag.java | 45 public static final Tag SEQ = new Tag(PREFIX + "seq"); field in Tag
|
/external/python/cpython3/Python/ |
D | symtable.c | 1057 #define VISIT_SEQ(ST, TYPE, SEQ) { \ argument 1059 asdl_seq *seq = (SEQ); /* avoid variable capture */ \ 1067 #define VISIT_SEQ_TAIL(ST, TYPE, SEQ, START) { \ argument 1069 asdl_seq *seq = (SEQ); /* avoid variable capture */ \ 1077 #define VISIT_SEQ_WITH_NULL(ST, TYPE, SEQ) { \ argument 1079 asdl_seq *seq = (SEQ); /* avoid variable capture */ \
|
D | compile.c | 1345 #define VISIT_SEQ(C, TYPE, SEQ) { \ argument 1347 asdl_seq *seq = (SEQ); /* avoid variable capture */ \ 1355 #define VISIT_SEQ_IN_SCOPE(C, TYPE, SEQ) { \ argument 1357 asdl_seq *seq = (SEQ); /* avoid variable capture */ \
|
/external/virglrenderer/src/gallium/auxiliary/tgsi/ |
D | tgsi_opcode_tmp.h | 98 OP12(SEQ)
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
D | SafeConstructor.java | 62 this.yamlConstructors.put(Tag.SEQ, new ConstructYamlSeq()); in SafeConstructor()
|
/external/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nvfx_vertprog.c | 650 nvfx_vp_emit(vpc, arith(sat, VEC, SEQ, dst, mask, src[0], src[1], none)); in nvfx_vertprog_parse_instruction()
|
D | nvfx_fragprog.c | 693 nvfx_fp_emit(fpc, arith(sat, SEQ, dst, mask, src[0], src[1], none)); in nvfx_fragprog_parse_instruction()
|
/external/llvm/lib/Target/Mips/ |
D | Mips64InstrInfo.td | 451 def SEQ : SetCC64_R<"seq", seteq>, SEQ_FM<0x2a>, ASE_CNMIPS;
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_compiler.c | 1796 INSTR(SEQ, trans_instr, .opc = INST_OPCODE_SET, .src = {0, 1, -1}, .cond = INST_CONDITION_EQ),
|