HomeSort by relevance Sort by last modified time
    Searched defs:legal (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/icu/icu4c/source/i18n/
name2uni.h 81 UnicodeSet legal; member in class:NameUnicodeTransliterator
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/
NormalizedFileNames.java 6 * http://www.eclipse.org/legal/epl-v10.html
41 final String legal = "abcdefghijklmnopqrstuvwxyz" external variable declarations
43 for (final char c : legal.toCharArray()) {
  /external/skia/tools/
random_parse_path.cpp 11 const struct Legal {
71 const Legal& legal = gLegal[index]; local
73 char symbol = legal.fSymbol | (rand->nextBool() ? 0x20 : 0);
77 for (int index = 0; index < legal.fScalars; ++index) {
81 if (rep < reps - 1 && index < legal.fScalars - 1) {
86 if ('A' == legal.fSymbol && 1 == index) {
  /external/skia/fuzz/
FuzzParsePath.cpp 16 static const struct Legal {
79 const Legal& legal = gLegal[index]; local
83 char symbol = legal.fSymbol | (b ? 0x20 : 0);
88 for (int index = 0; index < legal.fScalars; ++index) {
93 if (rep < reps - 1 && index < legal.fScalars - 1) {
98 if ('A' == legal.fSymbol && 1 == index) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NameUnicodeTransliterator.java 58 // Get the legal character set
59 UnicodeSet legal = new UnicodeSet(); local
60 UCharacterName.INSTANCE.getCharNameCharacters(legal);
90 // Look for legal chars. If \s+ is found, convert it
146 if (legal.contains(c)) {
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
NameUnicodeTransliterator.java 57 // Get the legal character set
58 UnicodeSet legal = new UnicodeSet(); local
59 UCharacterName.INSTANCE.getCharNameCharacters(legal);
89 // Look for legal chars. If \s+ is found, convert it
145 if (legal.contains(c)) {
  /external/libcxx/src/
strstream.cpp 238 bool legal = false; local
244 legal = true;
248 legal = true;
252 legal = false;
254 legal = false;
255 if (legal)
  /external/mesa3d/src/mesa/main/
texenv.c 53 GLboolean legal; local
65 legal = GL_TRUE;
69 legal = GL_TRUE;
72 legal = ctx->Extensions.NV_texture_env_combine4;
75 legal = GL_FALSE;
78 if (legal) {
110 GLboolean legal; local
118 legal = GL_TRUE;
121 legal = ctx->Extensions.ARB_texture_env_combine;
125 legal = (ctx->API == API_OPENGL &
182 GLboolean alpha, legal; local
272 GLboolean alpha, legal; local
    [all...]
light.c 575 GLuint legal, const char *where )
619 if (bitmask & ~legal) {
728 GLuint legal = (MAT_BIT_FRONT_EMISSION | MAT_BIT_BACK_EMISSION | local
739 bitmask = _mesa_material_bitmask(ctx, face, mode, legal, "glColorMaterial");
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/src/
strstream.cpp 234 bool legal = false; local
240 legal = true;
244 legal = true;
248 legal = false;
250 legal = false;
251 if (legal)
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/src/
strstream.cpp 234 bool legal = false; local
240 legal = true;
244 legal = true;
248 legal = false;
250 legal = false;
251 if (legal)
  /external/iptables/iptables/
xtables.c 113 /* Table of legal combinations of commands and options. If any of the
114 * given commands make an option legal, that option is legal (applies to
280 int i, j, legal = 0; local
283 * fact that if an option is legal with *any* command given, it is
284 * legal overall (ie. -z and -l).
287 legal = 0; /* -1 => illegal, 1 => legal, 0 => undecided. */
301 legal = 1;
302 else if (legal == 0
    [all...]
ip6tables.c 130 /* Table of legal combinations of commands and options. If any of the
131 * given commands make an option legal, that option is legal (applies to
303 int i, j, legal = 0; local
306 * fact that if an option is legal with *any* command given, it is
307 * legal overall (ie. -z and -l).
310 legal = 0; /* -1 => illegal, 1 => legal, 0 => undecided. */
324 legal = 1;
325 else if (legal == 0
    [all...]
iptables.c 129 /* Table of legal combinations of commands and options. If any of the
130 * given commands make an option legal, that option is legal (applies to
296 int i, j, legal = 0; local
299 * fact that if an option is legal with *any* command given, it is
300 * legal overall (ie. -z and -l).
303 legal = 0; /* -1 => illegal, 1 => legal, 0 => undecided. */
317 legal = 1;
318 else if (legal == 0
    [all...]
xtables-arp.c 164 /* Table of legal combinations of commands and options. If any of the
165 * given commands make an option legal, that option is legal (applies to
505 int i, j, legal = 0; local
508 * fact that if an option is legal with *any* command given, it is
509 * legal overall (ie. -z and -l).
512 legal = 0; /* -1 => illegal, 1 => legal, 0 => undecided. */
526 legal = 1;
527 else if (legal == 0
    [all...]
  /external/clang/test/Sema/
array-init.c 102 void legal() { function
  /external/icu/icu4c/source/test/intltest/
transrt.cpp 113 // Legal
116 class Legal {
118 Legal() {}
119 virtual ~Legal() {}
123 class LegalJamo : public Legal {
168 class LegalGreek : public Legal {
188 // A special case which is legal but should be
203 // Legal greek has breathing marks IFF there is a vowel or RHO at the start
344 Legal* legalSource; // NOT owned
365 Legal* adoptedLegal
979 Legal *legal = new Legal(); local
993 Legal *legal = new Legal(); local
1002 Legal *legal = new Legal(); local
1017 Legal *legal = new LegalJamo(); local
1027 Legal *legal = new Legal(); local
1137 LegalGreek *legal = new LegalGreek(TRUE); local
1162 LegalGreek *legal = new LegalGreek(FALSE); local
1184 LegalGreek *legal = new LegalGreek(FALSE); local
1205 Legal *legal = new Legal(); local
1247 LegalHebrew* legal = new LegalHebrew(error); local
1260 Legal *legal = new Legal(); local
1359 Legal *legal = new LegalIndic(); local
1619 Legal *legal = new LegalIndic(); local
1620 test.test(UnicodeString(fromSet,""),UnicodeString(toSet,""),exclusions,this,quick,legal); local
1632 Legal *legal = new LegalIndic(); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UCharacterTest.java 1428 int legal[] = {0x61, 0x00FFFD, 0x0010000, 0x005FFFD, 0x0060000, local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UCharacterTest.java 1427 int legal[] = {0x61, 0x00FFFD, 0x0010000, 0x005FFFD, 0x0060000, local
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 6 // additional legal rights not granted by this license.
929 private static String legal = field in class:Parser
939 if (legal.indexOf(ch) != -1) { // legal but not whitespace
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
bfin-dis.c 4787 bfd_boolean legal = TRUE; local
    [all...]
  /external/robolectric/v3/runtime/
tagsoup-1.2.jar 
  /prebuilts/tools/common/m2/repository/org/ccil/cowan/tagsoup/tagsoup/1.2/
tagsoup-1.2.jar 
  /prebuilts/tools/common/m2/repository/org/ccil/cowan/tagsoup/tagsoup/1.2.1/
tagsoup-1.2.1.jar 
  /prebuilts/misc/common/jacoco/lib/
org.jacoco.report-0.7.2.201409121644.jar 

Completed in 1743 milliseconds

1 2 3