Home
last modified time | relevance | path

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

12345678910>>...36

/third_party/grpc/tools/codegen/core/
Dgen_percent_encoding_tables.cc26 static void legal(int x) { in legal() function
52 for (i = 'a'; i <= 'z'; i++) legal(i); in main()
53 for (i = 'A'; i <= 'Z'; i++) legal(i); in main()
54 for (i = '0'; i <= '9'; i++) legal(i); in main()
55 legal('-'); in main()
56 legal('_'); in main()
57 legal('.'); in main()
58 legal('~'); in main()
64 legal(i); in main()
Dgen_legal_metadata_characters.cc26 static void legal(int x) { in legal() function
52 for (i = 'a'; i <= 'z'; i++) legal(i); in main()
53 for (i = '0'; i <= '9'; i++) legal(i); in main()
54 legal('-'); in main()
55 legal('_'); in main()
56 legal('.'); in main()
61 legal(i); in main()
/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
119 legal = GL_TRUE; in set_combiner_mode()
122 legal = ctx->Extensions.ARB_texture_env_combine; in set_combiner_mode()
126 legal = (ctx->API == API_OPENGL_COMPAT && in set_combiner_mode()
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dtransrt.cpp980 Legal *legal = new Legal(); in TestKana() local
988 this, quick, legal); in TestKana()
989 delete legal; in TestKana()
994 Legal *legal = new Legal(); in TestHiragana() local
997 HIRAGANA_ITERATION, this, quick, legal); in TestHiragana()
998 delete legal; in TestHiragana()
1003 Legal *legal = new Legal(); in TestKatakana() local
1012 this, quick, legal); in TestKatakana()
1013 delete legal; in TestKatakana()
1018 Legal *legal = new LegalJamo(); in TestJamo() local
[all …]
/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/flutter/skia/tools/
Drandom_parse_path.cpp71 const Legal& legal = gLegal[index]; 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/flutter/skia/fuzz/
DFuzzParsePath.cpp80 const Legal& legal = gLegal[index]; 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/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/typescript/tests/baselines/reference/
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
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dname2uni.cpp66 UnicodeSet *legalPtr = &legal; in NameUnicodeTransliterator()
88 Transliterator(o), legal(o.legal) {} in NameUnicodeTransliterator()
226 if (legal.contains(c)) { in handleTransliterate()
/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/boost/libs/mpl/doc/src/refmanual/
DASSERT_MSG.rst39 | ``message`` | A legal identifier token | A custom message in a form of a legal C++ …
42 | ``types`` | A legal function parameter list | A parenthized list of types to be displayed …
50 For any integral constant expression ``expr``, legal C++ identifier ``message``, and
/third_party/boost/boost/python/
Dreturn_internal_reference.hpp32 BOOST_STATIC_CONSTANT(bool, legal = owner_arg > 0);
35 legal
Dreturn_arg.hpp66 BOOST_STATIC_CONSTANT(bool, legal = arg_pos > 0);
70 legal
/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/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/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/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/master/legal/contributions/Copyright_Assignment.rtf>…
99 <https://github.com/unicode-org/icu-docs/blob/master/legal/contributions/Copyright_Assignment_ongoi…
109 <https://github.com/unicode-org/icu-docs/blob/master/legal/contributions/Copyright_Assignment_autho…
125 <https://htmlpreview.github.io/?https://github.com/unicode-org/icu-docs/blob/master/legal/contribut…
137 <https://github.com/unicode-org/icu-docs/tree/master/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

12345678910>>...36