/third_party/ffmpeg/tests/ref/fate/ |
D | dict | 3 aaa aaa b,b bbb c=c ccc ddd d,d eee e=e f,f f=f g=g g,g 4 aaa=aaa,b\,b=bbb,c\=c=ccc,ddd=d\,d,eee=e\=e,f\,f=f\=f,g\=g=g\,g 6 aaa aaa b,b bbb c=c ccc ddd d,d eee e=e f,f f=f g=g g,g 7 aaa aaa bbb bbb ccc ccc \,='" \,='" 8 aaa=aaa"bbb=bbb"ccc=ccc"\\,\=\'\"=\\,\=\'\" 10 aaa aaa bbb bbb ccc ccc \,='" \,='" 11 aaa aaa bbb bbb ccc ccc \,='" \,='" 12 aaa=aaa'bbb=bbb'ccc=ccc'\\,\=\'"=\\,\=\'" 14 aaa aaa bbb bbb ccc ccc \,='" \,='" 15 aaa aaa bbb bbb ccc ccc \,='" \,='" [all …]
|
/third_party/boost/libs/vmd/test/ |
D | test_array_equal.cxx | 16 #define BOOST_VMD_REGISTER_aaa (aaa) in main() 25 #define ANARRAY (3,(aaa,bbb,38)) in main() 26 #define ANARRAY2 (3,(bbb,aaa,38)) in main() 27 #define ANARRAY3 (3,(bbb,aaa,38)) in main() 28 #define ANARRAY4 (3,(aaa,(aaa,(bbb,(ccc,BOOST_PP_NIL))),(ccc,ddd,(1)(2)))) in main() 29 #define ANARRAY5 (3,(aaa,(aaa,(bbb,(ccc,BOOST_PP_NIL))),(ccc,ddd,(1)(2)))) in main() 30 #define ANARRAY6 (4,(aaa,(aaa,(bbb,(ccc,BOOST_PP_NIL))),(ccc,ddd,(1)(2),37))) in main() 31 #define ATUPLE (aaa) in main() 32 #define ATUPLE2 (aaa) in main()
|
D | test_equal_array.cxx | 16 #define BOOST_VMD_REGISTER_aaa (aaa) in main() 25 #define ANARRAY (3,(aaa,bbb,38)) in main() 26 #define ANARRAY2 (3,(bbb,aaa,38)) in main() 27 #define ANARRAY3 (3,(bbb,aaa,38)) in main() 28 #define ANARRAY4 (3,(aaa,(aaa,(bbb,(ccc,BOOST_PP_NIL))),(ccc,ddd,(1)(2)))) in main() 29 #define ANARRAY5 (3,(aaa,(aaa,(bbb,(ccc,BOOST_PP_NIL))),(ccc,ddd,(1)(2)))) in main() 30 #define ANARRAY6 (4,(aaa,(aaa,(bbb,(ccc,BOOST_PP_NIL))),(ccc,ddd,(1)(2),37))) in main()
|
D | test_equal_identifier.cxx | 16 #define BOOST_VMD_REGISTER_aaa (aaa) in main() 29 BOOST_TEST(BOOST_VMD_EQUAL(aaa,aaa)); in main()
|
D | test_identifier_equal.cxx | 16 #define BOOST_VMD_REGISTER_aaa (aaa) in main() 29 BOOST_TEST(BOOST_VMD_EQUAL(aaa,aaa,BOOST_VMD_TYPE_IDENTIFIER)); in main()
|
D | test_equal_list.cxx | 16 #define BOOST_VMD_REGISTER_aaa (aaa) in main() 32 #define ALIST4 (0,(aaa)(ccc),(2,(3,BOOST_PP_NIL))) in main() 33 #define ALIST5 (0,(aaa)(ccc),(2,(3,BOOST_PP_NIL))) in main()
|
D | test_list_equal.cxx | 16 #define BOOST_VMD_REGISTER_aaa (aaa) in main() 32 #define ALIST4 (0,((aaa)(ccc),(2,(3,BOOST_PP_NIL)))) in main() 33 #define ALIST5 (0,((aaa)(ccc),(2,(3,BOOST_PP_NIL)))) in main()
|
/third_party/typescript/tests/baselines/reference/ |
D | classMemberInitializerScoping.js | 2 var aaa = 1; variable 4 y: number = aaa; field in CCC 5 static staticY: number = aaa; // This shouldnt be error field in CCC 6 constructor(aaa) { argument 24 var aaa = 1; 26 function CCC(aaa) { argument 27 this.y = aaa; 30 CCC.staticY = aaa; // This shouldnt be error
|
D | classMemberInitializerScoping.symbols | 2 var aaa = 1; 3 >aaa : Symbol(aaa, Decl(classMemberInitializerScoping.ts, 0, 3)) 8 y: number = aaa; 11 static staticY: number = aaa; // This shouldnt be error 13 >aaa : Symbol(aaa, Decl(classMemberInitializerScoping.ts, 0, 3)) 15 constructor(aaa) { 16 >aaa : Symbol(aaa, Decl(classMemberInitializerScoping.ts, 4, 16))
|
D | classMemberInitializerScoping.types | 2 var aaa = 1; 3 >aaa : number 9 y: number = aaa; 11 >aaa : any 13 static staticY: number = aaa; // This shouldnt be error 15 >aaa : number 17 constructor(aaa) { 18 >aaa : any
|
D | classMemberInitializerScoping.errors.txt | 1 …: Initializer of instance member variable 'y' cannot reference identifier 'aaa' declared in the co… 6 var aaa = 1; 8 y: number = aaa; 10 !!! error TS2301: Initializer of instance member variable 'y' cannot reference identifier 'aaa' dec… 11 static staticY: number = aaa; // This shouldnt be error 12 constructor(aaa) {
|
D | contextuallyTypingOrOperator2.types | 20 var v2 = (s: string) => s.length || function (s) { s.aaa }; 22 >(s: string) => s.length || function (s) { s.aaa } : (s: string) => number | ((s: any) => void) 24 >s.length || function (s) { s.aaa } : number | ((s: any) => void) 28 >function (s) { s.aaa } : (s: any) => void 30 >s.aaa : any 32 >aaa : any
|
D | arrayEvery.types | 2 const foo: (number | string)[] = ['aaa']; 4 >['aaa'] : string[] 5 >'aaa' : "aaa"
|
D | contextuallyTypingOrOperator2.js | 4 var v2 = (s: string) => s.length || function (s) { s.aaa }; 8 var v2 = function (s) { return s.length || function (s) { s.aaa; }; };
|
/third_party/typescript/tests/cases/compiler/ |
D | classMemberInitializerScoping.ts | 1 var aaa = 1; variable 3 y: number = aaa; 4 static staticY: number = aaa; // This shouldnt be error 5 constructor(aaa) {
|
/third_party/json/test/thirdparty/Fuzzer/test/ |
D | fuzzer-singleinputs.test | 6 RUN: echo aaa > %tmp/SINGLE_INPUTS/aaa 8 RUN: LLVMFuzzer-SimpleTest %tmp/SINGLE_INPUTS/aaa %tmp/SINGLE_INPUTS/bbb 2>&1 | FileChec… 9 RUN: LLVMFuzzer-SimpleTest -max_len=2 %tmp/SINGLE_INPUTS/aaa %tmp/SINGLE_INPUTS/bbb 2>&1 | FileChec… 12 SINGLE_INPUTS: aaa in
|
/third_party/libxml2/test/schematron/ |
D | zvon11.sct | 4 …<assert test="not(@aaa) or (@aaa and @bbb)">The element must not have an isolated aaa attribute</a… 5 …<assert test="not(@bbb) or (@aaa and @bbb)">The element must not have an isolated bbb attribute</a…
|
D | zvon6.sct | 4 <report test="normalize-space(.) = 'aaa' or normalize-space(.) = 'bbb'">O.K.</report> 5 …<assert test="normalize-space(.) = 'aaa' or normalize-space(.) = 'bbb'">The AAA value is not permi…
|
/third_party/grpc/test/core/slice/ |
D | slice_buffer_test.cc | 27 grpc_slice aaa = grpc_slice_from_copied_string("aaa"); in test_slice_buffer_add() local 33 grpc_slice_ref(aaa); in test_slice_buffer_add() 35 grpc_slice_buffer_add(&buf, aaa); in test_slice_buffer_add() 44 grpc_slice_ref(aaa); in test_slice_buffer_add() 46 grpc_slice_buffer_add(&buf, aaa); in test_slice_buffer_add() 53 grpc_slice_unref(aaa); in test_slice_buffer_add()
|
/third_party/boost/libs/config/test/ |
D | boost_no_adl_barrier.ipp | 16 struct aaa {}; 18 void begin(nested::aaa) {} 22 void begin(xxx::nested::aaa) {} 28 xxx::nested::aaa a;
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ |
D | base_utils_test.dart | 20 list.updateWithNewList(<String>['aaa']); 21 list.updateWithNewList(<String>['aaa', 'bbb']); 29 expect(addedItems.first, 'aaa'); 33 expect(removedItems.first, 'aaa');
|
/third_party/e2fsprogs/tests/t_write_subdirectory/ |
D | script | 13 mkdir aaa 14 mkdir aaa/bbb 15 write $TMPFILE.1 aaa/bbb/ccc
|
/third_party/popt/tests/test3-data/ |
D | 01.answer | 1 single string: ' --aaa --bbb --ccc --bla="bla" --this_is="fdsafdas" --5555="55555" --test="with lot… 3 '--aaa'
|
/third_party/jsframework/test/ut/model/ |
D | directive.ts | 82 aaa: 1, 86 aaa: 2, 136 style: { aaa: 2, bbb: function() { 145 expect(subVm._rootEl.style.aaa).eql(2);
|
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/ |
D | no-dynamic-delete.md | 19 delete container.aaa; 29 // Can be replaced with the constant equivalents, such as container.aaa 30 delete container['aaa'];
|