Home
last modified time | relevance | path

Searched refs:_A (Results 1 – 25 of 98) sorted by relevance

1234

/third_party/toybox/tests/
Dlsattr.test13 _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/
DnondistributiveConditionalTypeInfer.types11 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>>;
DnondistributiveConditionalTypeInfer.symbols19 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))
DforwardRefInClassProperties.symbols14 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))
DforwardRefInClassProperties.types15 static _B = Test._A; // undefined, no error/warning
17 >Test._A : number
19 >_A : number
21 static _A = 3;
22 >_A : number
DforwardRefInClassProperties.js7 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;
DnondistributiveConditionalTypeInfer.js4 type _A<T> = [T] extends [{ _A: () => infer A }] ? A : never;
9 _A: () => A;
14 type A = _A<Sync<number, string, void>>;
DforwardRefInClassProperties.errors.txt2 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;
DvarianceProblingAndZeroOrderIndexSignatureRelationsAlign.types12 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"];
DvarianceProblingAndZeroOrderIndexSignatureRelationsAlign2.types12 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/
Dstruct.wgsl.expected.spvasm12 OpName %_A "_A"
13 OpMemberName %_A 0 "_B"
14 OpMemberDecorate %_A 0 Offset 0
18 %_A = OpTypeStruct %int
19 %9 = OpConstantNull %_A
Dfn.wgsl.expected.spvasm12 OpName %_A "_A"
25 %_A = OpFunction %void None %1
36 %14 = OpFunctionCall %void %_A
Dvar.wgsl.expected.spvasm11 OpName %_A "_A"
21 %_A = OpVariable %_ptr_Private_int Private %int_2
36 %17 = OpLoad %int %_A
Dstruct.wgsl.expected.hlsl6 struct _A {
11 const _A c = (_A)0;
Dparameter.wgsl.expected.spvasm12 OpName %_A "_A"
22 %_A = OpFunctionParameter %int
Dlet.wgsl.expected.spvasm11 OpName %_A "_A"
16 %_A = OpConstant %int 2
Dparameter.wgsl1 fn f(_A : i32) {
2 let B = _A;
Dparameter.wgsl.expected.wgsl1 fn f(_A : i32) {
2 let B = _A;
Dfn.wgsl.expected.wgsl4 fn _A() {
12 _A();
Dfn.wgsl2 fn _A() {}
5 fn _B() { _A(); }
Dparameter.wgsl.expected.hlsl6 void f(int _A) {
7 const int B = _A;
Dparameter.wgsl.expected.msl4 void f(int _A) {
5 int const B = _A;
Dlet.wgsl.expected.wgsl3 let _A : i32 = 2;
7 let _B = _A;
/third_party/typescript/tests/cases/compiler/
DnondistributiveConditionalTypeInfer.ts3 type _A<T> = [T] extends [{ _A: () => infer A }] ? A : never; alias
8 _A: () => A; property
13 type A = _A<Sync<number, string, void>>;
DforwardRefInClassProperties.ts6 static _B = Test._A; // undefined, no error/warning
7 static _A = 3; property in Test

1234