HomeSort by relevance Sort by last modified time
    Searched refs:FLAG (Results 1 - 12 of 12) sorted by null

  /external/icu4c/common/
uprops.h 245 /** Turn a bit index into a bit flag. @internal */
246 #define FLAG(n) ((uint32_t)1<<(n))
249 #define _Cn FLAG(U_GENERAL_OTHER_TYPES)
250 #define _Lu FLAG(U_UPPERCASE_LETTER)
251 #define _Ll FLAG(U_LOWERCASE_LETTER)
252 #define _Lt FLAG(U_TITLECASE_LETTER)
253 #define _Lm FLAG(U_MODIFIER_LETTER)
254 /* #define _Lo FLAG(U_OTHER_LETTER) -- conflicts with MS Visual Studio 9.0 xiosbase */
255 #define _Mn FLAG(U_NON_SPACING_MARK)
256 #define _Me FLAG(U_ENCLOSING_MARK
    [all...]
  /external/v8/src/
flag-definitions.h 29 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the
37 // this will just be an extern declaration, but for a readonly flag we let the
45 // We want to supply the actual storage and value for the flag variable in the
52 // We need to define all of our default values so that the Flag structure can
62 // printing / etc in the flag parser code. We only do this for writable flags.
65 { Flag::TYPE_##ftype, #nam, &FLAG_##nam, &FLAGDEFAULT_##nam, cmt, false },
88 #define DEFINE_bool(nam, def, cmt) FLAG(BOOL, bool, nam, def, cmt)
89 #define DEFINE_int(nam, def, cmt) FLAG(INT, int, nam, def, cmt)
90 #define DEFINE_float(nam, def, cmt) FLAG(FLOAT, double, nam, def, cmt)
91 #define DEFINE_string(nam, def, cmt) FLAG(STRING, const char*, nam, def, cmt
    [all...]
  /external/icu4c/samples/strsrch/
strsrch.cpp 70 enum {FLAG, NUM, STRING} type;
79 {"-norm", OptSpec::FLAG, &opt_norm},
80 {"-french", OptSpec::FLAG, &opt_french},
81 {"-shifted", OptSpec::FLAG, &opt_shifted},
82 {"-lower", OptSpec::FLAG, &opt_lower},
83 {"-upper", OptSpec::FLAG, &opt_upper},
84 {"-case", OptSpec::FLAG, &opt_case},
86 {"-overlap", OptSpec::FLAG, &opt_overlap},
87 {"-canonical", OptSpec::FLAG, &opt_canonical},
88 {"-help", OptSpec::FLAG, &opt_help}
    [all...]
  /external/icu4c/samples/coll/
coll.cpp 61 enum {FLAG, NUM, STRING} type;
70 {"-norm", OptSpec::FLAG, &opt_norm},
71 {"-french", OptSpec::FLAG, &opt_french},
72 {"-shifted", OptSpec::FLAG, &opt_shifted},
73 {"-lower", OptSpec::FLAG, &opt_lower},
74 {"-upper", OptSpec::FLAG, &opt_upper},
75 {"-case", OptSpec::FLAG, &opt_case},
77 {"-help", OptSpec::FLAG, &opt_help},
78 {"-?", OptSpec::FLAG, &opt_help},
79 {0, OptSpec::FLAG, 0
    [all...]
  /external/icu4c/test/perf/ubrkperf/
ubrkperfold.cpp 125 enum {FLAG, NUM, STRING} type;
133 {"-win", OptSpec::FLAG, &opt_win},
134 {"-unix", OptSpec::FLAG, &opt_unix},
135 {"-mac", OptSpec::FLAG, &opt_mac},
136 {"-uselen", OptSpec::FLAG, &opt_uselen},
140 {"-char", OptSpec::FLAG, &opt_char},
141 {"-word", OptSpec::FLAG, &opt_word},
142 {"-line", OptSpec::FLAG, &opt_line},
143 {"-sentence", OptSpec::FLAG, &opt_sentence},
144 {"-terse", OptSpec::FLAG, &opt_terse}
    [all...]
  /external/opencore/protocols/systems/3g-324m_pvterminal/h223/src/
level1.cpp 116 if (iDf) /* L1 Double Flag */
163 const int FLAG = (iDf) ? 0xE14DE14D : 0xE14D;
179 if ((iCurrentInt32 & FLAG_MASK) == FLAG)
189 if ((iCurrentInt32 & FLAG_MASK) != FLAG)
207 if ((iCurrentInt32 & FLAG_MASK) == FLAG)
210 // found end flag
  /frameworks/base/libs/ui/
KeyLayoutMap.cpp 116 enum { BEGIN, SCANCODE, KEYCODE, FLAG } state = BEGIN;
152 state = FLAG;
154 case FLAG:
171 LOGE("%s:%d: expected flag, got '%s'\n",
179 if (state == FLAG && scancode != -1 ) {
  /external/icu4c/test/perf/collationperf/
collperf.cpp 142 enum {FLAG, NUM, STRING} type;
151 {"-qsort", OptSpec::FLAG, &opt_qsort},
152 {"-binsearch", OptSpec::FLAG, &opt_binsearch},
153 {"-iter", OptSpec::FLAG, &opt_itertest},
154 {"-win", OptSpec::FLAG, &opt_win},
155 {"-unix", OptSpec::FLAG, &opt_unix},
156 {"-uselen", OptSpec::FLAG, &opt_uselen},
157 {"-usekeys", OptSpec::FLAG, &opt_usekeys},
158 {"-strcmp", OptSpec::FLAG, &opt_strcmp},
159 {"-strcmpCPO", OptSpec::FLAG, &opt_strcmpCPO}
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
DeclareStyleableInfo.java 49 FLAG,
56 /** Values for flag. null for other types. */
AttrsXmlParser.java 56 /** Map of all (constant, value) pairs for attributes of format enum or flag.
57 * E.g. for attribute name=gravity, this tells us there's an enum/flag called "center"
172 * Returns a map of all enum and flag constants sorted by parent attribute name.
313 * This gets the javadoc, the type, the name and the enum/flag values if any.
321 * An extra format can be implied: "enum" or "flag" are not specified in the "format" attribute,
322 * they are implicitely stated by the presence of sub-nodes <enum> or <flag>.
341 format != AttributeInfo.Format.FLAG) {
357 // does this <attr> have <flag> children?
358 flagValues = parseEnumFlagValues(attrNode, "flag", name); //$NON-NLS-1$
360 formats.add(AttributeInfo.Format.FLAG);
    [all...]
  /external/clearsilver/mod_ecs/
mod_ecs.c 505 const char *set_fork (cmd_parms *parms, void *dummy, int flag)
510 cls->fork_enabled = (flag ? 1 : 0);
515 const char *set_reload (cmd_parms *parms, void *dummy, int flag)
520 cls->reload_enabled = (flag ? 1 : 0);
740 { "ECSFork", set_fork, NULL, OR_FILEINFO, FLAG,
742 { "ECSReload", set_reload, NULL, OR_FILEINFO, FLAG,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DescriptorsUtils.java 285 } else if (formats_set.contains(Format.FLAG)) {
    [all...]

Completed in 684 milliseconds