/third_party/toybox/tests/ |
D | lsattr.test | 13 _A="-------A-----" 15 testing "file" "lsattr file" "$_A file\n" "" "" 16 testing "file_path" "lsattr $_p/file" "$_A $_p/file\n" "" "" 17 testing "-R file" "lsattr -R file" "$_A file\n" "" "" 18 testing "-R file_path" "lsattr -R $_p/file" "$_A $_p/file\n" "" "" 19 testing "-a file" "lsattr -a file" "$_A file\n" "" "" 20 testing "-a file_path" "lsattr -a $_p/file" "$_A $_p/file\n" "" "" 23 testing "-d file" "lsattr -d file" "$_A file\n" "" "" 24 testing "-d file_path" "lsattr -d $_p/file" "$_A $_p/file\n" "" "" 29 "$_v $_A file\n" "" "" [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | nondistributiveConditionalTypeInfer.types | 11 type _A<T> = [T] extends [{ _A: () => infer A }] ? A : never; 12 >_A : _A<T> 13 >_A : () => infer A 23 _A: () => A; 24 >_A : () => A 33 type A = _A<Sync<number, string, void>>;
|
D | nondistributiveConditionalTypeInfer.symbols | 19 type _A<T> = [T] extends [{ _A: () => infer A }] ? A : never; 20 >_A : Symbol(_A, Decl(nondistributiveConditionalTypeInfer.ts, 1, 61)) 23 >_A : Symbol(_A, Decl(nondistributiveConditionalTypeInfer.ts, 2, 27)) 42 _A: () => A; 43 >_A : Symbol(Sync._A, Decl(nondistributiveConditionalTypeInfer.ts, 6, 14)) 57 type A = _A<Sync<number, string, void>>; 59 >_A : Symbol(_A, Decl(nondistributiveConditionalTypeInfer.ts, 1, 61))
|
D | forwardRefInClassProperties.symbols | 14 static _B = Test._A; // undefined, no error/warning 16 >Test._A : Symbol(Test._A, Decl(forwardRefInClassProperties.ts, 5, 24)) 18 >_A : Symbol(Test._A, Decl(forwardRefInClassProperties.ts, 5, 24)) 20 static _A = 3; 21 >_A : Symbol(Test._A, Decl(forwardRefInClassProperties.ts, 5, 24))
|
D | forwardRefInClassProperties.types | 15 static _B = Test._A; // undefined, no error/warning 17 >Test._A : number 19 >_A : number 21 static _A = 3; 22 >_A : number
|
D | forwardRefInClassProperties.js | 7 static _B = Test._A; // undefined, no error/warning 8 static _A = 3; field in Test 28 Test._B = Test._A; // undefined, no error/warning 29 Test._A = 3;
|
D | nondistributiveConditionalTypeInfer.js | 4 type _A<T> = [T] extends [{ _A: () => infer A }] ? A : never; 9 _A: () => A; 14 type A = _A<Sync<number, string, void>>;
|
D | forwardRefInClassProperties.errors.txt | 2 tests/cases/compiler/forwardRefInClassProperties.ts(6,22): error TS2729: Property '_A' is used befo… 15 static _B = Test._A; // undefined, no error/warning 17 !!! error TS2729: Property '_A' is used before its initialization. 18 !!! related TS2728 tests/cases/compiler/forwardRefInClassProperties.ts:7:12: '_A' is declared here. 19 static _A = 3;
|
D | varianceProblingAndZeroOrderIndexSignatureRelationsAlign.types | 12 readonly _A!: A 13 >_A : A 49 readonly _A!: A 50 >_A : A 86 readonly _A!: A; 87 >_A : A 127 type TypeOf<C extends Any> = C["_A"];
|
D | varianceProblingAndZeroOrderIndexSignatureRelationsAlign2.types | 12 readonly _A!: A 13 >_A : A 49 readonly _A!: A 50 >_A : A 86 readonly _A!: A; 87 >_A : A 127 type TypeOf<C extends Any> = C["_A"];
|
/third_party/skia/third_party/externals/tint/test/identifiers/underscore/prefix/upper/ |
D | struct.wgsl.expected.spvasm | 12 OpName %_A "_A" 13 OpMemberName %_A 0 "_B" 14 OpMemberDecorate %_A 0 Offset 0 18 %_A = OpTypeStruct %int 19 %9 = OpConstantNull %_A
|
D | fn.wgsl.expected.spvasm | 12 OpName %_A "_A" 25 %_A = OpFunction %void None %1 36 %14 = OpFunctionCall %void %_A
|
D | var.wgsl.expected.spvasm | 11 OpName %_A "_A" 21 %_A = OpVariable %_ptr_Private_int Private %int_2 36 %17 = OpLoad %int %_A
|
D | struct.wgsl.expected.hlsl | 6 struct _A { 11 const _A c = (_A)0;
|
D | parameter.wgsl.expected.spvasm | 12 OpName %_A "_A" 22 %_A = OpFunctionParameter %int
|
D | let.wgsl.expected.spvasm | 11 OpName %_A "_A" 16 %_A = OpConstant %int 2
|
D | parameter.wgsl | 1 fn f(_A : i32) { 2 let B = _A;
|
D | parameter.wgsl.expected.wgsl | 1 fn f(_A : i32) { 2 let B = _A;
|
D | fn.wgsl.expected.wgsl | 4 fn _A() { 12 _A();
|
D | fn.wgsl | 2 fn _A() {} 5 fn _B() { _A(); }
|
D | parameter.wgsl.expected.hlsl | 6 void f(int _A) { 7 const int B = _A;
|
D | parameter.wgsl.expected.msl | 4 void f(int _A) { 5 int const B = _A;
|
D | let.wgsl.expected.wgsl | 3 let _A : i32 = 2; 7 let _B = _A;
|
/third_party/typescript/tests/cases/compiler/ |
D | nondistributiveConditionalTypeInfer.ts | 3 type _A<T> = [T] extends [{ _A: () => infer A }] ? A : never; alias 8 _A: () => A; property 13 type A = _A<Sync<number, string, void>>;
|
D | forwardRefInClassProperties.ts | 6 static _B = Test._A; // undefined, no error/warning 7 static _A = 3; property in Test
|