HomeSort by relevance Sort by last modified time
    Searched defs:syntax (Results 1 - 13 of 13) sorted by null

  /external/e2fsprogs/intl/
explodename.c 58 enum { undecided, xpg, cen } syntax; local
72 we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */
74 syntax = undecided;
97 syntax = xpg;
118 if (cp[0] == '@' || (syntax != xpg && cp[0] == '+'))
121 syntax = cp[0] == '@' ? xpg : cen;
125 while (syntax == cen && cp[0] != '\0' && cp[0] != '+'
132 if (syntax != xpg && (cp[0] == '+' || cp[0] == ',' || cp[0] == '_'))
134 syntax = cen;
138 /* Next is special application (CEN syntax). *
    [all...]
  /external/srec/srec/Grammar/include/
SR_GrammarImpl.h 68 * Legacy CREC syntax.
70 CA_Syntax* syntax; member in struct:SR_GrammarImpl_t
  /external/protobuf/editors/
protobuf-mode.el 115 ;; Here we remove default syntax for loops, if-statements and other C
119 ;; Remove syntax for C-style enumerations.
123 ;; Remove syntax for "do" and "else" keywords.
127 ;; Remove syntax for "for", "if", "switch" and "while" keywords.
131 ;; Remove syntax for "break", "continue", "goto" and "return" keywords.
139 ;; Remove case label syntax for the "case" and "default" keywords.
147 ;; Disable all the C preprocessor syntax.
152 ;; the syntax for casts.
156 ;; Add support for variable levels of syntax highlighting.
170 ;; Our syntax table is auto-generated from the keyword classes we define
    [all...]
  /dalvik/libdex/
sha1.c 63 Changed command line syntax, added feature to automatically
399 void syntax(char *progname) function
454 syntax(argv[0]);
508 syntax(argv[0]);
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 316 if (require_syntax_identifier_ || LookingAt("syntax")) {
318 // Don't attempt to parse the file if we didn't recognize the syntax
347 DO(Consume("syntax", "File must begin with 'syntax = \"proto2\";'."));
350 string syntax; local
351 DO(ConsumeString(&syntax, "Expected syntax identifier."));
354 syntax_identifier_ = syntax;
356 if (syntax != "proto2" && !stop_after_syntax_identifier_) {
358 "Unrecognized syntax identifier \"" + syntax + "\". This parser
    [all...]
  /external/srec/tools/test_g2g/
test_g2g.c 192 CA_Syntax* syntax; local
217 syntax = grammarImpl->syntax;
219 CA_DumpSyntax( syntax, outbase);
222 fst = syntax->synx;
  /external/clearsilver/util/regex/
regex.h 33 /* The following bits are used to determine the regexp syntax we
34 recognize. The set/not-set meanings are chosen so that Emacs syntax
137 /* This global variable defines the particular regexp syntax to use (for
138 some interfaces). When a regexp is compiled, the syntax used is
178 /* Syntax bits common to both basic and extended POSIX regex syntax. */
219 /* If this bit is set, then use extended regular expression syntax.
220 If not set, then use basic regular expression syntax. */
303 /* Syntax setting with which the pattern was compiled. */
304 reg_syntax_t syntax;
301 reg_syntax_t syntax; member in struct:re_pattern_buffer
    [all...]
regex.c 59 #include "syntax.h"
105 /* Define the syntax stuff for \<, \>, etc. */
157 #define SYNTAX(c) re_syntax_table[c]
162 /* Get the interface, including the syntax bits. */
466 /* Matches any character whose syntax is specified. Followed by
467 a byte which contains a syntax code, e.g., Sword. */
470 /* Matches any character whose syntax is not that specified. */
865 printf ("syntax: %d\n", bufp->syntax);
913 /* Set by `re_set_syntax' to the current regexp syntax to recognize. Ca
5324 unsigned syntax local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
eapol_test.c 43 char syntax; member in struct:extra_radius_attr
104 switch (attr->syntax) {
134 printf("Incorrect extra attribute syntax specification\n");
1001 " attr_id:syntax:value or attr_id\n"
1003 " syntax - one of: s, d, x\n"
1097 p->syntax = 'n';
1109 p->syntax = pos[0];
  /system/core/sh/
expand.c 63 #include "syntax.h"
202 /* "$@" syntax adherence hack */
420 char const *syntax = quoted? DQSYNTAX : BASESYNTAX; local
453 if (quotes && syntax[(int)lastc] == CCTL)
664 char const *syntax = (varflags & VSQUOTE) ? DQSYNTAX local
672 if (quotes && syntax[(int)*val] == CCTL)
830 char const *syntax; local
835 syntax = quoted? DQSYNTAX : BASESYNTAX; \
837 if (syntax[(int)*p] == CCTL) \
  /external/chromium/third_party/icu/source/test/intltest/
intltest.cpp 1006 UBool syntax = FALSE; local
1056 syntax = TRUE;
1066 syntax = TRUE;
1069 if (syntax) {
1071 "### Syntax:\n"
    [all...]
  /external/icu4c/test/intltest/
intltest.cpp 1018 UBool syntax = FALSE; local
1072 syntax = TRUE;
1082 syntax = TRUE;
1085 if (syntax) {
1087 "### Syntax:\n"
    [all...]
  /external/libpcap/
gencode.c 178 static inline void syntax(void);
351 syntax() function
353 bpf_error("syntax error in filter expression");
392 syntax();
    [all...]

Completed in 946 milliseconds