/external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/ |
D | TestDefaultPrettyPrinter.java | 17 String EXP = "{" + LF + in testSystemLinefeed() local 21 assertEquals(EXP, _printTestData(pp, false)); in testSystemLinefeed() 22 assertEquals(EXP, _printTestData(pp, true)); in testSystemLinefeed() 29 String EXP = "{\n" + in testWithLineFeed() local 33 assertEquals(EXP, _printTestData(pp, false)); in testWithLineFeed() 34 assertEquals(EXP, _printTestData(pp, true)); in testWithLineFeed() 41 String EXP = "{\n" + in testWithIndent() local 45 assertEquals(EXP, _printTestData(pp, false)); in testWithIndent() 46 assertEquals(EXP, _printTestData(pp, true)); in testWithIndent() 53 String EXP = "{\n" + in testUnixLinefeed() local [all …]
|
/external/vixl/test/aarch64/ |
D | test-disasm-aarch64.h | 62 #define COMPARE(ASM, EXP) \ argument 74 if (strcmp(disasm.GetOutput(), EXP) != 0) { \ 77 EXP, \ 84 #define COMPARE_PREFIX(ASM, EXP) \ argument 96 if (strncmp(disasm.GetOutput(), EXP, strlen(EXP)) != 0) { \ 99 EXP, \ 106 #define COMPARE_MACRO_BASE(ASM, EXP) \ argument 124 #define COMPARE_MACRO(ASM, EXP) \ argument 126 COMPARE_MACRO_BASE(ASM, EXP) \ 127 if (strcmp(res.c_str(), EXP) != 0) { \ [all …]
|
/external/clang/test/Parser/ |
D | attributes.mm | 10 #define EXP __attribute__((visibility("default"))) macro 11 class EXP C {}; 12 EXP class C2 {}; // expected-warning {{attribute 'visibility' is ignored, place it after "class" to… 14 @interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directi… interface 15 EXP @interface I2 @end 17 @implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C… implementation 19 EXP @implementation I2 @end; // expected-error {{prefix attribute must be followed by an interface … 21 @class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{… 22 EXP @class OC2; // expected-error {{prefix attribute must be followed by an interface or protocol}} 24 @protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directiv… protocol [all …]
|
/external/llvm-project/clang/test/Parser/ |
D | attributes.mm | 12 #define EXP __attribute__((visibility("default"))) macro 13 class EXP C {}; 14 EXP class C2 {}; // expected-warning {{attribute 'visibility' is ignored, place it after "class" to… 16 @interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directi… interface 17 EXP @interface I2 @end 19 @implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C… implementation 20 EXP @implementation I2 @end 22 @class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{… 23 EXP @class OC2; // expected-error {{prefix attribute must be followed by an interface, protocol, or… 25 @protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directiv… protocol [all …]
|
/external/llvm-project/llvm/lib/Target/AMDGPU/ |
D | EXPInstructions.td | 10 // EXP classes 19 let EXP = 1; 43 // EXP Instructions 46 // Split EXP instruction into EXP and EXP_DONE so we can set 48 def EXP : EXP_Pseudo<0>; 62 def EXP_si : EXP_Real_si<0, "EXP">; 76 def EXP_vi : EXP_Real_vi<0, "EXP">; 90 def EXP_gfx10 : EXP_Real_gfx10<0, "EXP">; 94 // EXP Patterns 117 def : ExpPattern<i32, EXP, 0>; [all …]
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/contextual/ |
D | TestContextAttributeWithSer.java | 54 final String EXP = aposToQuotes("[{'value':'0:a'},{'value':'1:b'}]"); in testSimplePerCall() local 58 assertEquals(EXP, w.writeValueAsString(INPUT)); in testSimplePerCall() 61 assertEquals(EXP, w.writeValueAsString(INPUT)); in testSimplePerCall() 66 final String EXP = aposToQuotes("{'value':'3:xyz'}"); in testSimpleDefaults() local 70 assertEquals(EXP, json); in testSimpleDefaults() 74 assertEquals(EXP, json2); in testSimpleDefaults() 80 final String EXP = aposToQuotes("[{'value':'2:a'},{'value':'3:b'}]"); in testHierarchic() local 82 assertEquals(EXP, w.writeValueAsString(INPUT)); in testHierarchic() 85 assertEquals(EXP, w.writeValueAsString(INPUT)); in testHierarchic()
|
/external/llvm-project/compiler-rt/lib/builtins/hexagon/ |
D | dfsqrt.S | 11 #define EXP r28 macro 81 EXP = extractu(AH,#DF_EXPBITS,#DF_MANTBITS-32) define 115 SHIFTAMT = and(EXP,#1) 286 EXP = add(EXP,#-DF_BIAS) // subtract bias --> signed exp define 297 EXP = asr(EXP,#1) // divide signed exp by 2 define 317 EXP = add(EXP,#-63) define 324 EXP = add(EXP,ADJ) // add back bias define 327 RETHI += asl(EXP,#DF_MANTBITS-32) // add exponent adjust 363 if (!P_TMP.new) EXP = ##0x7F800001 // sNaN 375 EXP = add(clb(A),#-DF_EXPBITS) // how much to normalize? define [all …]
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/builder/ |
D | BuilderWithCreatorTest.java | 154 final int EXP = 139; in testWithDelegatingStringCreator() local 155 IntCreatorValue value = MAPPER.readValue(String.valueOf(EXP), in testWithDelegatingStringCreator() 157 assertEquals(EXP, value.value); in testWithDelegatingStringCreator() 162 final double EXP = -3.75; in testWithDelegatingIntCreator() local 163 DoubleCreatorValue value = MAPPER.readValue(String.valueOf(EXP), in testWithDelegatingIntCreator() 165 assertEquals(EXP, value.value); in testWithDelegatingIntCreator() 170 final boolean EXP = true; in testWithDelegatingBooleanCreator() 171 BooleanCreatorValue value = MAPPER.readValue(String.valueOf(EXP), in testWithDelegatingBooleanCreator() 173 assertEquals(EXP, value.value); in testWithDelegatingBooleanCreator()
|
/external/strace/tests-mx32/ |
D | nsyscalls-d.test | 19 2> "$LOG-err-all" > "$EXP" 9> "$EXP-err" 21 [ -n "$debug_flag" ] || > "$EXP-err" 25 match_diff "$LOG" "$EXP" 26 match_diff "$LOG-err" "$EXP-err"
|
D | syntax.sh | 38 match_diff "$LOG" "$EXP" || 48 match_grep "$LOG" "$EXP" || 56 cat > "$EXP" << __EOF__ 65 cat > "$EXP" << __EOF__ 74 cat > "$EXP" << __EOF__
|
D | attach-p-cmd.test | 36 ../set_ptracer_any ../attach-p-cmd-p >> "$EXP" & 39 while ! [ -s "$EXP" ]; do 44 run_strace -a30 -echdir -p $tracee_pid ../attach-p-cmd-cmd > "$EXP" 45 match_diff "$LOG" "$EXP"
|
D | poll.test | 8 run_strace -a16 -vepoll $args > "$EXP" 9 match_diff "$LOG" "$EXP" 13 run_strace -a16 -epoll -s$abbrev $args > "$EXP" 14 match_diff "$LOG" "$EXP"
|
/external/strace/tests-m32/ |
D | nsyscalls-d.test | 19 2> "$LOG-err-all" > "$EXP" 9> "$EXP-err" 21 [ -n "$debug_flag" ] || > "$EXP-err" 25 match_diff "$LOG" "$EXP" 26 match_diff "$LOG-err" "$EXP-err"
|
D | syntax.sh | 38 match_diff "$LOG" "$EXP" || 48 match_grep "$LOG" "$EXP" || 56 cat > "$EXP" << __EOF__ 65 cat > "$EXP" << __EOF__ 74 cat > "$EXP" << __EOF__
|
D | attach-p-cmd.test | 36 ../set_ptracer_any ../attach-p-cmd-p >> "$EXP" & 39 while ! [ -s "$EXP" ]; do 44 run_strace -a30 -echdir -p $tracee_pid ../attach-p-cmd-cmd > "$EXP" 45 match_diff "$LOG" "$EXP"
|
D | poll.test | 8 run_strace -a16 -vepoll $args > "$EXP" 9 match_diff "$LOG" "$EXP" 13 run_strace -a16 -epoll -s$abbrev $args > "$EXP" 14 match_diff "$LOG" "$EXP"
|
/external/strace/tests/ |
D | nsyscalls-d.test | 19 2> "$LOG-err-all" > "$EXP" 9> "$EXP-err" 21 [ -n "$debug_flag" ] || > "$EXP-err" 25 match_diff "$LOG" "$EXP" 26 match_diff "$LOG-err" "$EXP-err"
|
D | syntax.sh | 38 match_diff "$LOG" "$EXP" || 48 match_grep "$LOG" "$EXP" || 56 cat > "$EXP" << __EOF__ 65 cat > "$EXP" << __EOF__ 74 cat > "$EXP" << __EOF__
|
D | attach-p-cmd.test | 36 ../set_ptracer_any ../attach-p-cmd-p >> "$EXP" & 39 while ! [ -s "$EXP" ]; do 44 run_strace -a30 -echdir -p $tracee_pid ../attach-p-cmd-cmd > "$EXP" 45 match_diff "$LOG" "$EXP"
|
D | poll.test | 8 run_strace -a16 -vepoll $args > "$EXP" 9 match_diff "$LOG" "$EXP" 13 run_strace -a16 -epoll -s$abbrev $args > "$EXP" 14 match_diff "$LOG" "$EXP"
|
D | attach-f-p.test | 37 ../set_ptracer_any sh -c "exec ../attach-f-p >> $EXP" > /dev/null & 40 while ! [ -s "$EXP" ]; do 45 run_strace -a32 -f -echdir -p $tracee_pid ../attach-f-p-cmd > "$EXP" 46 match_diff "$LOG" "$EXP"
|
/external/e2fsprogs/tests/f_detect_xfs/ |
D | script | 10 EXP=$test_dir/expect 12 EXP=$test_dir/expect.nodebugfs 30 if cmp -s $EXP $OUT; then 35 diff -u $EXP $OUT >> $test_name.failed 37 unset EXP OUT FSCK_OPT IMAGE
|
/external/e2fsprogs/tests/m_mcsum_extjournal/ |
D | script | 4 EXP=$test_name.tmp 7 EXP=$test_dir/expect 15 cmp -s $OUT $EXP 23 diff $DIFF_OPTS $EXP $OUT > $test_name.failed 27 unset IMAGE FSCK_OPT OUT EXP
|
/external/e2fsprogs/tests/f_detect_junk/ |
D | script | 16 EXP=$test_dir/expect 18 EXP=$test_dir/expect.nodebugfs 36 if cmp -s $EXP $OUT; then 41 diff -u $EXP $OUT >> $test_name.failed 43 unset EXP OUT FSCK_OPT IMAGE
|
/external/e2fsprogs/tests/m_hugefile_slack/ |
D | script | 3 EXP=$test_dir/expect 6 #gzip -d < $EXP.gz > $EXP 42 cmp -s $OUT $EXP 50 diff $DIFF_OPTS $EXP $OUT > $test_name.failed 53 unset IMAGE FSCK_OPT OUT EXP CONF
|