/third_party/icu/icu4c/source/test/intltest/ |
D | transrt.cpp | 955 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/ |
D | texenv.c | 54 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/ |
D | classStaticBlock22(target=esnext).types | 19 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
|
D | classStaticBlock22(target=es2022).types | 19 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
|
D | classStaticBlock22(target=es2022).errors.txt | 24 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
|
D | classStaticBlock22(target=esnext).errors.txt | 24 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
|
D | classStaticBlock22(target=esnext).symbols | 17 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
|
D | classStaticBlock22(target=es2022).symbols | 17 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
|
D | enumLiteralAssignableToEnumInsideUnion.errors.txt | 31 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…
|
D | enumLiteralAssignableToEnumInsideUnion.types | 71 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…
|
D | constructorOverloads8.types | 19 constructor(y: string); // legal, overload signatures for 1 implementation 30 new (x, y); // legal, overload signatures for (presumably) 1 implementation
|
D | constructorOverloads8.errors.txt | 17 constructor(y: string); // legal, overload signatures for 1 implementation 23 new (x, y); // legal, overload signatures for (presumably) 1 implementation
|
D | constructorOverloads8.symbols | 19 constructor(y: string); // legal, overload signatures for 1 implementation 32 new (x, y); // legal, overload signatures for (presumably) 1 implementation
|
D | enumLiteralAssignableToEnumInsideUnion.symbols | 60 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/ |
D | random_parse_path.cpp | 71 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/ |
D | FuzzParsePath.cpp | 80 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/ |
D | name2uni.cpp | 66 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/ |
D | name2uni.cpp | 66 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/ |
D | name2uni.cpp | 66 UnicodeSet *legalPtr = &legal; in NameUnicodeTransliterator() 88 Transliterator(o), legal(o.legal) {} in NameUnicodeTransliterator() 227 if (legal.contains(c)) { in handleTransliterate()
|
/third_party/sqlite/ |
D | LICENSE | 17 …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/ |
D | NameUnicodeTransliterator.java | 58 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/ |
D | NameUnicodeTransliterator.java | 59 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/ |
D | contributions.md | 57 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/ |
D | specExamples.frag | 72 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/ |
D | CONTRIBUTORS | 14 # http://code.google.com/legal/individual-cla-v1.0.html 15 # http://code.google.com/legal/corporate-cla-v1.0.html
|