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

1 2

  /external/linux-tools-perf/util/
alias.c 28 char quoted = 0; local
36 if (!quoted && isspace(c)) {
46 } else if (!quoted && (c == '\'' || c == '"')) {
47 quoted = c;
49 } else if (c == quoted) {
50 quoted = 0;
53 if (c == '\\' && quoted != '\'') {
69 if (quoted) {
  /external/iproute2/tc/
m_ematch.h 17 int quoted; member in struct:bstr
  /external/chromium_org/third_party/icu/source/test/intltest/
dadrcoll.cpp 93 UBool quoted = FALSE; local
99 if(!quoted) {
119 quoted = TRUE;
123 quoted = TRUE;
135 quoted = FALSE;
140 quoted = FALSE;
  /external/icu4c/test/intltest/
dadrcoll.cpp 93 UBool quoted = FALSE; local
99 if(!quoted) {
119 quoted = TRUE;
123 quoted = TRUE;
135 quoted = FALSE;
140 quoted = FALSE;
  /external/openssh/
auth-rsa.c 202 int quoted = 0; local
204 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
208 quoted = !quoted;
auth2-pubkey.c 296 int quoted = 0; local
299 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
303 quoted = !quoted;
  /external/chromium_org/third_party/re2/re2/testing/
re2_test.cc 389 // A meta-quoted string, interpreted as a pattern, should always match
393 string quoted = RE2::QuoteMeta(unquoted); local
394 RE2 re(quoted, options);
396 "Unquoted='" + unquoted + "', quoted='" + quoted + "'."); local
399 // A meta-quoted string, interpreted as a pattern, should always match
403 string quoted = RE2::QuoteMeta(unquoted); local
404 RE2 re(quoted, options);
406 "Unquoted='" + unquoted + "', quoted='" + quoted + "'.") local
    [all...]
  /external/iptables/iptables/
iptables-xml.c 85 /* arg meta data, were they quoted, frinstance */
108 add_argv(char *what, int quoted)
113 newargvattr[newargc] = quoted;
400 /* use argvattr to tell which arguments were quoted
401 to avoid comparing quoted arguments, like comments, to -j, */
499 || (argv[arg + 1][0] == '-' /* NOT QUOTED */ )) {
744 int quote_open, quoted; local
782 /* We need to know which args were quoted so we
784 quoted = 0;
798 quoted = 1
    [all...]
  /external/ppp/pppd/
utils.c 130 * %q (quoted string), %t (current time) and %I (IP address) formats.
170 int base, len, neg, quoted; local
318 case 'q': /* quoted string */
319 quoted = c == 'q';
331 if (!quoted && c >= 0x80) {
336 if (quoted && (c == '"' || c == '\\'))
339 if (quoted) {
options.c 1117 int quoted, comment; local
1184 * Save the delimiter for quoted strings.
1187 quoted = c;
1190 quoted = 0;
1286 if (quoted) {
1287 if (c == quoted
    [all...]
  /external/regex-re2/re2/testing/
re2_test.cc 382 // A meta-quoted string, interpreted as a pattern, should always match
386 string quoted = RE2::QuoteMeta(unquoted); local
387 RE2 re(quoted, options);
389 "Unquoted='" + unquoted + "', quoted='" + quoted + "'."); local
392 // A meta-quoted string, interpreted as a pattern, should always match
396 string quoted = RE2::QuoteMeta(unquoted); local
397 RE2 re(quoted, options);
399 "Unquoted='" + unquoted + "', quoted='" + quoted + "'.") local
    [all...]
  /frameworks/av/media/libstagefright/httplive/
M3UParser.cpp 623 bool quoted = false; local
628 quoted = !quoted;
629 } else if (c == what && !quoted) {
693 ALOGE("Expected quoted string for %s attribute, "
907 ALOGE("Expected quoted string for GROUP-ID, got '%s' instead.",
919 ALOGE("Expected quoted string for LANGUAGE, got '%s' instead.",
931 ALOGE("Expected quoted string for NAME, got '%s' instead.",
988 ALOGE("Expected quoted string for URI, got '%s' instead.",
  /ndk/sources/host-tools/nawk-20071023/
b.c 254 int quoted(char **pp) /* pick up next thing after a \\ */ function
302 c = quoted((char **) &p);
308 c2 = quoted((char **) &p);
789 rlxval = quoted((char **) &prestr);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
argp.h 341 int quoted;
337 int quoted; member in struct:argp_state
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
argp.h 341 int quoted;
337 int quoted; member in struct:argp_state
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
argp.h 341 int quoted;
337 int quoted; member in struct:argp_state
  /system/core/sh/
expand.c 353 int quoted; local
384 quoted=1;
386 quoted=0;
397 if (quoted == 0)
409 expbackq(union node *cmd, int quoted, int flag)
420 char const *syntax = quoted? DQSYNTAX : BASESYNTAX;
470 if (quoted == 0)
823 varvalue(char *name, int quoted, int subtype, int flag)
835 syntax = quoted? DQSYNTAX : BASESYNTAX; \
869 if (flag & EXP_FULL && quoted) {
    [all...]
jobs.c 1400 int quoted = 0; local
1418 if (!(subtype & VSQUOTE) != !(quoted & 1)) {
1419 quoted ^= 1;
1425 if (quoted & 1) {
1430 quoted >>= 1;
1450 quoted ^= 1;
1462 quoted <<= 1;
1481 if ((quoted & 1) && nleft) {
  /external/chromium_org/third_party/icu/source/i18n/
rbt_pars.cpp 399 int32_t quoteStart = -1; // Most recent 'single quoted string'
450 // Handle quoted matter
457 /* This loop picks up a run of quoted text of the
636 // Quantifiers. We handle single characters, quoted strings,
652 // The */+ follows a 'quoted string'
1650 UBool quoted = FALSE; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cldrtest.c 261 int32_t quoted = 0; local
265 quoted++;
267 else if ((quoted % 2) == 0) {
    [all...]
  /external/chromium_org/third_party/icu/source/tools/genrb/
parse.c 289 UBool quoted = FALSE; local
355 quoted = (UBool)!quoted;
361 if (c == STARTCOMMAND && !quoted)
372 else if (c == HASH && !quoted) {
390 else if (!quoted && (c == SPACE || c == TAB || c == CR || c == LF))
    [all...]
  /external/icu4c/i18n/
rbt_pars.cpp 405 int32_t quoteStart = -1; // Most recent 'single quoted string'
456 // Handle quoted matter
463 /* This loop picks up a run of quoted text of the
642 // Quantifiers. We handle single characters, quoted strings,
658 // The */+ follows a 'quoted string'
1656 UBool quoted = FALSE; local
    [all...]
  /external/icu4c/test/cintltst/
cldrtest.c 264 int32_t quoted = 0; local
268 quoted++;
270 else if ((quoted % 2) == 0) {
    [all...]
  /external/icu4c/tools/genrb/
parse.cpp 286 UBool quoted = FALSE; local
352 quoted = (UBool)!quoted;
358 if (c == STARTCOMMAND && !quoted)
369 else if (c == HASH && !quoted) {
387 else if (!quoted && (c == SPACE || c == TAB || c == CR || c == LF))
    [all...]
  /system/core/adb/
commandline.c 667 char *quoted; local
669 quoted = dupAndQuote (*argv++);
672 strncat(buf, quoted, sizeof(buf)-1);
673 free(quoted);
1580 char *quoted; local
1614 char* quoted; local
    [all...]

Completed in 713 milliseconds

1 2