Home
last modified time | relevance | path

Searched refs:legal (Results 1 – 25 of 865) sorted by relevance

12345678910>>...35

/third_party/icu/icu4c/source/test/intltest/
Dtransrt.cpp955 Legal *legal = new Legal(); in TestKana() local
963 this, quick, legal); in TestKana()
964 delete legal; in TestKana()
969 Legal *legal = new Legal(); in TestHiragana() local
972 HIRAGANA_ITERATION, this, quick, legal); in TestHiragana()
973 delete legal; in TestHiragana()
978 Legal *legal = new Legal(); in TestKatakana() local
987 this, quick, legal); in TestKatakana()
988 delete legal; in TestKatakana()
993 Legal *legal = new LegalJamo(); in TestJamo() local
[all …]
/third_party/mesa3d/src/mesa/main/
Dtexenv.c54 GLboolean legal; in set_env_mode() local
66 legal = GL_TRUE; in set_env_mode()
70 legal = GL_TRUE; in set_env_mode()
73 legal = ctx->Extensions.NV_texture_env_combine4; in set_env_mode()
76 legal = GL_FALSE; in set_env_mode()
79 if (legal) { in set_env_mode()
111 GLboolean legal; in set_combiner_mode() local
120 legal = GL_TRUE; in set_combiner_mode()
124 legal = (ctx->API == API_OPENGL_COMPAT && in set_combiner_mode()
130 legal = (pname == GL_COMBINE_RGB); in set_combiner_mode()
[all …]
/third_party/typescript/tests/baselines/reference/
DclassStaticBlock22(target=esnext).types19 let { await: other } = {} as any; // legal
42 await = 1; // legal
46 x = await; // legal (initializers have an implicit function boundary)
53 …(function await() { }); // legal, 'await' in function expression name not bound inside of static b…
59 (class await { }); // legal, 'await' in class expression name not bound inside of static block
65 (function () { return await; }); // legal, 'await' is inside of a new function boundary
71 (() => await); // legal, 'await' is inside of a new function boundary
DclassStaticBlock22(target=es2022).types19 let { await: other } = {} as any; // legal
42 await = 1; // legal
46 x = await; // legal (initializers have an implicit function boundary)
53 …(function await() { }); // legal, 'await' in function expression name not bound inside of static b…
59 (class await { }); // legal, 'await' in class expression name not bound inside of static block
65 (function () { return await; }); // legal, 'await' is inside of a new function boundary
71 (() => await); // legal, 'await' is inside of a new function boundary
DclassStaticBlock22(target=es2022).errors.txt24 let { await: other } = {} as any; // legal
44 await = 1; // legal
45 x = await; // legal (initializers have an implicit function boundary)
49 …(function await() { }); // legal, 'await' in function expression name not bound inside of static b…
54 … (class await { }); // legal, 'await' in class expression name not bound inside of static block
59 (function () { return await; }); // legal, 'await' is inside of a new function boundary
62 (() => await); // legal, 'await' is inside of a new function boundary
DclassStaticBlock22(target=esnext).errors.txt24 let { await: other } = {} as any; // legal
44 await = 1; // legal
45 x = await; // legal (initializers have an implicit function boundary)
49 …(function await() { }); // legal, 'await' in function expression name not bound inside of static b…
54 … (class await { }); // legal, 'await' in class expression name not bound inside of static block
59 (function () { return await; }); // legal, 'await' is inside of a new function boundary
62 (() => await); // legal, 'await' is inside of a new function boundary
DclassStaticBlock22(target=esnext).symbols17 let { await: other } = {} as any; // legal
37 await = 1; // legal
40 x = await; // legal (initializers have an implicit function boundary)
47 …(function await() { }); // legal, 'await' in function expression name not bound inside of static b…
51 (class await { }); // legal, 'await' in class expression name not bound inside of static block
55 (function () { return await; }); // legal, 'await' is inside of a new function boundary
59 (() => await); // legal, 'await' is inside of a new function boundary
DclassStaticBlock22(target=es2022).symbols17 let { await: other } = {} as any; // legal
37 await = 1; // legal
40 x = await; // legal (initializers have an implicit function boundary)
47 …(function await() { }); // legal, 'await' in function expression name not bound inside of static b…
51 (class await { }); // legal, 'await' in class expression name not bound inside of static block
55 (function () { return await; }); // legal, 'await' is inside of a new function boundary
59 (() => await); // legal, 'await' is inside of a new function boundary
DenumLiteralAssignableToEnumInsideUnion.errors.txt31 const e1: X.Foo | boolean = Z.Foo.A; // not legal, Z is computed
34 const e2: X.Foo.A | X.Foo.B | boolean = Z.Foo.A; // still not legal
37 const e3: X.Foo.B | boolean = Z.Foo.A; // not legal
40 …const e4: X.Foo.A | boolean = Z.Foo.A; // not legal either because Z.Foo is computed and Z.Foo.A i…
DenumLiteralAssignableToEnumInsideUnion.types71 const e1: X.Foo | boolean = Z.Foo.A; // not legal, Z is computed
80 const e2: X.Foo.A | X.Foo.B | boolean = Z.Foo.A; // still not legal
92 const e3: X.Foo.B | boolean = Z.Foo.A; // not legal
102 const e4: X.Foo.A | boolean = Z.Foo.A; // not legal either because Z.Foo is computed and Z.Foo.A is…
DconstructorOverloads8.types19 constructor(y: string); // legal, overload signatures for 1 implementation
30 new (x, y); // legal, overload signatures for (presumably) 1 implementation
DconstructorOverloads8.errors.txt17 constructor(y: string); // legal, overload signatures for 1 implementation
23 new (x, y); // legal, overload signatures for (presumably) 1 implementation
DconstructorOverloads8.symbols19 constructor(y: string); // legal, overload signatures for 1 implementation
32 new (x, y); // legal, overload signatures for (presumably) 1 implementation
DenumLiteralAssignableToEnumInsideUnion.symbols60 const e1: X.Foo | boolean = Z.Foo.A; // not legal, Z is computed
70 const e2: X.Foo.A | X.Foo.B | boolean = Z.Foo.A; // still not legal
84 const e3: X.Foo.B | boolean = Z.Foo.A; // not legal
95 const e4: X.Foo.A | boolean = Z.Foo.A; // not legal either because Z.Foo is computed and Z.Foo.A is…
/third_party/skia/tools/
Drandom_parse_path.cpp71 const Legal& legal = gLegal[legalIndex]; in MakeRandomParsePathPiece() local
73 char symbol = legal.fSymbol | (rand->nextBool() ? 0x20 : 0); in MakeRandomParsePathPiece()
77 for (int index = 0; index < legal.fScalars; ++index) { in MakeRandomParsePathPiece()
81 if (rep < reps - 1 && index < legal.fScalars - 1) { in MakeRandomParsePathPiece()
86 if ('A' == legal.fSymbol && 1 == index) { in MakeRandomParsePathPiece()
/third_party/skia/fuzz/
DFuzzParsePath.cpp80 const Legal& legal = gLegal[legalIndex]; in MakeRandomParsePathPiece() local
84 char symbol = legal.fSymbol | (b ? 0x20 : 0); in MakeRandomParsePathPiece()
89 for (int index = 0; index < legal.fScalars; ++index) { in MakeRandomParsePathPiece()
94 if (rep < reps - 1 && index < legal.fScalars - 1) { in MakeRandomParsePathPiece()
99 if ('A' == legal.fSymbol && 1 == index) { in MakeRandomParsePathPiece()
/third_party/skia/third_party/externals/icu/source/i18n/
Dname2uni.cpp66 UnicodeSet *legalPtr = &legal; in NameUnicodeTransliterator()
88 Transliterator(o), legal(o.legal) {} in NameUnicodeTransliterator()
227 if (legal.contains(c)) { in handleTransliterate()
/third_party/node/deps/icu-small/source/i18n/
Dname2uni.cpp66 UnicodeSet *legalPtr = &legal; in NameUnicodeTransliterator()
88 Transliterator(o), legal(o.legal) {} in NameUnicodeTransliterator()
227 if (legal.contains(c)) { in handleTransliterate()
/third_party/icu/icu4c/source/i18n/
Dname2uni.cpp66 UnicodeSet *legalPtr = &legal; in NameUnicodeTransliterator()
88 Transliterator(o), legal(o.legal) {} in NameUnicodeTransliterator()
227 if (legal.contains(c)) { in handleTransliterate()
/third_party/sqlite/
DLICENSE17 …c domain and does not require a license. Even so, some organizations want legal proof of their rig…
22 You want to hold a tangible legal document as evidence that you have the legal right to use and dis…
23 Your legal department tells you that you have to purchase a license.
24 …y of Title is a legal document that asserts that the claimed authors of SQLite are the true author…
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DNameUnicodeTransliterator.java58 UnicodeSet legal = new UnicodeSet(); in handleTransliterate() local
59 UCharacterName.INSTANCE.getCharNameCharacters(legal); in handleTransliterate()
145 if (legal.contains(c)) { in handleTransliterate()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DNameUnicodeTransliterator.java59 UnicodeSet legal = new UnicodeSet(); in handleTransliterate() local
60 UCharacterName.INSTANCE.getCharNameCharacters(legal); in handleTransliterate()
146 if (legal.contains(c)) { in handleTransliterate()
/third_party/icu/docs/userguide/dev/
Dcontributions.md57 Please consult a legal representative if you do not understand the implications
64 (<https://github.com/unicode-org/icu-docs/blob/main/legal/contributions/Copyright_Assignment.rtf>).
99 <https://github.com/unicode-org/icu-docs/blob/main/legal/contributions/Copyright_Assignment_ongoing…
109 <https://github.com/unicode-org/icu-docs/blob/main/legal/contributions/Copyright_Assignment_authors…
125 <https://htmlpreview.github.io/?https://github.com/unicode-org/icu-docs/blob/main/legal/contributio…
137 <https://github.com/unicode-org/icu-docs/tree/main/legal/contributions>
/third_party/glslang/Test/
DspecExamples.frag72 smooth in vec4 Color1; // legal, input inside in block
73 smooth vec4 Color2; // legal, 'in' inherited from 'in Material'
74 vec2 TexCoordA; // legal, TexCoord is an input
193 } e = { 1.2, 2 }; // legal, all types match
198 } e = { 1, 3 }; // legal, first initializer is converted
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-golang/parse-number-fxx-test-data/
DCONTRIBUTORS14 # http://code.google.com/legal/individual-cla-v1.0.html
15 # http://code.google.com/legal/corporate-cla-v1.0.html

12345678910>>...35