Home
last modified time | relevance | path

Searched refs:abc (Results 1 - 25 of 265) sorted by relevance

1234567891011

/third_party/typescript/tests/baselines/reference/
H A DenumAssignmentCompat3.js58 var abc: First.E;
68 abc = secondAbc; // ok
69 abc = secondAbcd; // missing 'd'
70 abc = secondAb; // ok
71 abc = secondCd; // missing 'd'
72 abc = nope; // nope!
73 abc = decl; // ok
74 secondAbc = abc; // ok
75 secondAbcd = abc; // ok
76 secondAb = abc; // missin
170 var abc; global() variable
[all...]
H A DstringLiteralTypesWithVariousOperators01.js2 let abc: "ABC" = "ABC";
4 let abcOrXyz: "ABC" | "XYZ" = abc || xyz;
7 let a = "" + abc;
8 let b = abc + "";
9 let c = 10 + abc;
10 let d = abc + 10;
11 let e = xyz + abc;
12 let f = abc + xyz;
13 let g = true + abc;
14 let h = abc
31 var abc = "ABC"; global() variable
[all...]
H A DtaggedTemplateStringsWithTagsTypedAsAnyES6.js3 f `abc`
5 f `abc${1}def${2}ghi`;
7 f.g.h `abc`
9 f.g.h `abc${1}def${2}ghi`;
11 f `abc`.member
13 f `abc${1}def${2}ghi`.member;
15 f `abc`["member"];
17 f `abc${1}def${2}ghi`["member"];
19 f `abc`["member"].someOtherTag `abc
[all...]
H A DunionPropertyExistence.js23 var abc: ABC; variable
36 abc.notInC;
38 abc.notInB;
40 abc.inAll; // Ok
41 abc.inNone;
46 var abc; variable
53 abc.notInC;
55 abc.notInB;
56 abc.inAll; // Ok
57 abc
[all...]
H A DtaggedTemplateStringsWithTypedTagsES6.js13 f `abc`
15 f `abc${1}def${2}ghi`;
17 f `abc`.member
19 f `abc${1}def${2}ghi`.member;
21 f `abc`["member"];
23 f `abc${1}def${2}ghi`["member"];
25 f `abc`[0].member `abc${1}def${2}ghi`;
27 f `abc${1}def${2}ghi`["member"].member `abc
[all...]
H A DnullishCoalescingOperator9.js4 let g = f || (abc => { void abc.toLowerCase() })
5 let gg = f ?? (abc => { void abc.toLowerCase() })
10 var g = f || (function (abc) { void abc.toLowerCase(); });
11 var gg = f !== null && f !== void 0 ? f : (function (abc) { void abc.toLowerCase(); });
H A DstringLiteralTypesWithVariousOperators02.js2 let abc: "ABC" = "ABC";
4 let abcOrXyz: "ABC" | "XYZ" = abc || xyz;
16 let j = abc < xyz;
17 let k = abc === xyz;
18 let l = abc != xyz;
21 var abc = "ABC"; variable
23 var abcOrXyz = abc || xyz;
34 var j = abc < xyz;
35 var k = abc === xyz;
36 var l = abc !
[all...]
H A DtaggedTemplateStringsWithIncompatibleTypedTagsES6.js13 f `abc`
15 f `abc${1}def${2}ghi`;
17 f `abc`.member
19 f `abc${1}def${2}ghi`.member;
21 f `abc`["member"];
23 f `abc${1}def${2}ghi`["member"];
25 f `abc`[0].member `abc${1}def${2}ghi`;
27 f `abc${1}def${2}ghi`["member"].member `abc
[all...]
H A DtemplateStringInEqualityChecks.js2 var x = `abc${0}abc` === `abc` ||
3 `abc` !== `abc${0}abc` &&
4 `abc${0}abc` == "abc0abc" &&
5 "abc0abc" !== `abc${0}abc`;
[all...]
H A DintersectionTypeMembers.js9 var abc: A & B & C; variable
10 abc.a = "hello";
11 abc.b = "hello";
12 abc.c = "hello";
73 var abc; variable
74 abc.a = "hello";
75 abc.b = "hello";
76 abc.c = "hello";
H A DtaggedTemplateStringsWithTagsTypedAsAny.js4 f `abc`
6 f `abc${1}def${2}ghi`;
8 f.g.h `abc`
10 f.g.h `abc${1}def${2}ghi`;
12 f `abc`.member
14 f `abc${1}def${2}ghi`.member;
16 f `abc`["member"];
18 f `abc${1}def${2}ghi`["member"];
20 f `abc`["member"].someOtherTag `abc
[all...]
H A DtaggedTemplateStringsWithTypedTags.js13 f `abc`
15 f `abc${1}def${2}ghi`;
17 f `abc`.member
19 f `abc${1}def${2}ghi`.member;
21 f `abc`["member"];
23 f `abc${1}def${2}ghi`["member"];
25 f `abc`[0].member `abc${1}def${2}ghi`;
27 f `abc${1}def${2}ghi`["member"].member `abc
[all...]
/third_party/python/Lib/test/test_importlib/
H A Dabc.py1 import abc namespace
4 class FinderTests(metaclass=abc.ABCMeta):
8 @abc.abstractmethod
13 @abc.abstractmethod
18 @abc.abstractmethod
24 @abc.abstractmethod
30 @abc.abstractmethod
35 @abc.abstractmethod
41 class LoaderTests(metaclass=abc.ABCMeta):
43 @abc
[all...]
/third_party/skia/src/gpu/tessellate/
H A DPatchWriter.cpp37 float4 abc = mix(ab, bc, T); in chopAndWriteQuads() local
41 CubicPatch(*this) << QuadToCubic{p0, ab.lo, abc.lo}; // Write the 1st quad. in chopAndWriteQuads()
43 TrianglePatch(*this) << p0 << abc.lo << abc.hi; in chopAndWriteQuads()
45 CubicPatch(*this) << abc.lo << middle << abc.hi; // Write the 2nd quad. in chopAndWriteQuads()
47 *this << innerTriangulator.pushVertex(to_skpoint(abc.hi)); in chopAndWriteQuads()
49 std::tie(p0, p1) = {abc.hi, bc.hi}; // Save the 3rd quad. in chopAndWriteQuads()
55 float2 abc = (ab + bc) * .5f; in chopAndWriteQuads() local
57 CubicPatch(*this) << QuadToCubic{p0, ab, abc}; // Writ in chopAndWriteQuads()
85 float4 abc = mix(ab, bc, T); chopAndWriteConics() local
120 float4 abc = mix(ab, bc, T); chopAndWriteCubics() local
140 float2 abc = (ab + bc) * .5f; chopAndWriteCubics() local
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/stdio/
H A Dfopen.c33 char abc[100] = {0}; in fopen_0100() local
55 int32_t rsize = fread(abc, sizeof(abc), 1, fptr); in fopen_0100()
58 if (!strncmp(abc, add, strlen(add))) { in fopen_0100()
93 char abc[100] = {0}; in fopen_0300() local
99 rsize = fread(abc, sizeof(abc), 1, fptr); in fopen_0300()
123 char abc[100] = {0}; in fopen_0400() local
129 rsize = fread(abc, sizeof(abc), in fopen_0400()
152 char abc[100] = {0}; fopen_0500() local
209 char abc[100] = {0}; fopen_0600() local
267 char abc[100] = {0}; fopen_0900() local
[all...]
/third_party/python/Lib/test/
H A Dtest_abc.py5 # test_ABC_helper(), which assures that abc.ABC is an instance of abc.ABCMeta.
7 """Unit tests for abc.py."""
11 import abc namespace
19 @abc.abstractproperty
26 @abc.abstractproperty
36 @abc.abstractclassmethod
44 @abc.abstractclassmethod
54 @abc.abstractstaticmethod
62 @abc
[all...]
/third_party/python/Lib/importlib/resources/
H A Dabc.py1 import abc namespace
14 class ResourceReader(metaclass=abc.ABCMeta):
17 @abc.abstractmethod
29 @abc.abstractmethod
42 @abc.abstractmethod
50 @abc.abstractmethod
66 @abc.abstractmethod
86 @abc.abstractmethod
92 @abc.abstractmethod
98 @abc
[all...]
H A Dsimple.py5 import abc namespace
10 from .abc import Traversable, TraversableResources
13 class SimpleReader(abc.ABC):
19 @abc.abstractproperty
26 @abc.abstractmethod
34 @abc.abstractmethod
41 @abc.abstractmethod
/third_party/ltp/testcases/kernel/fs/fs_bind/bind/
H A Dfs_bind23.sh17 mkdir mnt/2 mnt/1/abc
19 EXPECT_PASS mount --bind "$FS_BIND_DISK1" mnt/1/abc
21 fs_bind_check mnt/1/abc mnt/2/abc "$FS_BIND_DISK1"
29 fs_bind_check tmp1/3/1/abc tmp2/3/1/abc tmp2/3/2/abc "$FS_BIND_DISK1"
31 EXPECT_PASS umount tmp1/3/1/abc
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
H A Dgetpid.c35 char abc[256] = {0}; in getpid_0100() local
40 fread(abc, sizeof(abc), 1, fptr); in getpid_0100()
43 for (int i = 0; i < (int)strlen(abc); i++) { in getpid_0100()
44 if (abc[i] >= '0' && abc[i] <= '9') { in getpid_0100()
45 num[index++] += abc[i]; in getpid_0100()
/third_party/python/Lib/test/libregrtest/
H A Drefleak.py16 # the abc module (Lib/_py_abc.py)
30 import collections.abc namespace
51 for abc in [getattr(collections.abc, a) for a in collections.abc.__all__]:
52 if not isabstract(abc):
54 for obj in abc.__subclasses__() + [abc]:
154 import collections.abc namespace
171 abs_classes = [getattr(collections.abc,
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dconventions.py11 import abc namespace
76 class ConventionsBase(abc.ABC):
117 @abc.abstractmethod
156 @abc.abstractmethod
165 @abc.abstractmethod
174 @abc.abstractmethod
179 @abc.abstractmethod
241 @abc.abstractmethod
246 @abc.abstractmethod
283 @abc
[all...]
/third_party/vulkan-headers/registry/spec_tools/
H A Dconventions.py11 import abc namespace
76 class ConventionsBase(abc.ABC):
117 @abc.abstractmethod
156 @abc.abstractmethod
165 @abc.abstractmethod
174 @abc.abstractmethod
179 @abc.abstractmethod
241 @abc.abstractmethod
246 @abc.abstractmethod
283 @abc
[all...]
/third_party/python/Lib/importlib/
H A Dabc.py15 import abc namespace
19 from .resources.abc import ResourceReader, Traversable, TraversableResources
43 class Finder(metaclass=abc.ABCMeta):
61 @abc.abstractmethod
67 warnings.warn("importlib.abc.Finder along with its find_module() "
75 class MetaPathFinder(metaclass=abc.ABCMeta):
112 class PathEntryFinder(metaclass=abc.ABCMeta):
170 @abc.abstractmethod
207 @abc.abstractmethod
239 @abc
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dstrtest.cpp277 static const char *abc_chars="abc"; in TestStringPiece()
278 StringPiece abc(abc_chars); in TestStringPiece()
279 if(abc.empty() || abc.data()!=abc_chars || abc.length()!=3 || abc.size()!=3) { in TestStringPiece()
403 StringPiece abc("abc"); in TestStringPieceComparisons()
409 if(empty==abc) { in TestStringPieceComparisons()
410 errln("empty==abc"); in TestStringPieceComparisons()
[all...]

Completed in 7 milliseconds

1234567891011