/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | fmt.c | 309 int start; in get_line() local 330 start = in_column; in get_line() 332 word_limit->space = in_column - start; in get_line() 377 register const char *start, *finish; in check_punctuation() local 379 start = w->text; in check_punctuation() 380 finish = start + (w->length - 1); in check_punctuation() 381 w->paren = isopen (*start); in check_punctuation() 383 while (isclose (*finish) && finish > start) in check_punctuation() 436 register WORD *start, *w; in fmt_paragraph() local 445 for (start = word_limit - 1; start >= words; start--) in fmt_paragraph() [all …]
|
D | execute.c | 352 char *start, *end; 355 start = to->active + old_length; 356 end = start + length; 361 *start = toupper(*start); 362 start++; 367 *start = tolower(*start); 368 start++; 377 for (; start != end; start++) 378 *start = toupper(*start); 380 for (; start != end; start++) [all …]
|
D | regexp.c | 183 if (!regs->start) 185 regs->start = MALLOC (need_regs, regoff_t); 192 regs->start = REALLOC (regs->start, need_regs, regoff_t); 200 regs->start[i] = pmatch[i].rm_so; 204 regs->start[i] = regs->end[i] = -1;
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | bug-regex13.c | 39 int start; member 86 int start; in main() local 98 start = re_search (®buf, tests[i].string, strlen (tests[i].string), in main() 100 if (start != tests[i].start) in main() 102 printf ("re_search failed %d\n", start); in main()
|
D | runptests.c | 33 int start; member 72 if (tests[cnt].start == -2) in main() 84 else if (tests[cnt].start == -2) in main() 96 if (tests[cnt].start == -1) in main() 106 if (match[0].rm_so == 0 && tests[cnt].start == 0 in main() 109 else if (match[0].rm_so + 1 == tests[cnt].start in main()
|
D | tst-regex2.c | 174 if (regs.start[0] != match || regs.end[0] != match + 11) in main() 177 regs.start[0], regs.end[0]); in main() 181 if (regs.start[regs.num_regs - 1] != -1 in main() 191 if (regs.start[l] != match + j in main() 192 || regs.end[l] != regs.start[l] + 1) in main()
|
D | bug-regex7.c | 43 regs.start = regs.end = NULL; in main() 60 else if (regs.num_regs <= n || regs.start[n] != -1 || regs.end[n] != -1) in main() 85 else if (regs.num_regs <= n || regs.start[n] != -1 || regs.end[n] != -1) in main()
|
D | bug-regex10.c | 55 else if (regs.start[0] != 2 || regs.end[0] != 7) in main() 58 regs.start[0], regs.end[0]); in main()
|
D | uniq.good | 8 #define match_isgroup 0x02 /* Set if start of bracketed group */ 55 /* At the start of a bracketed group, add the current subject pointer to the 115 /* Move the subject pointer back. This occurs only at the start of 117 /* Now start processing the operations. */ 182 DPRINTF (("start bracket 0\n")); 319 code for maximizing the speed, and do the type test once at the start 350 each branch of a lookbehind assertion. If we are too close to the start to 351 each substring: the offsets to the start and end of the substring. 379 eptrb pointer to chain of blocks containing eptr at start of 381 eptrb = eptrb->prev; /* Back up the stack of bracket start pointers */ [all …]
|
D | uniq.inp | 336 #define match_isgroup 0x02 /* Set if start of bracketed group */ 426 /* At the start of a bracketed group, add the current subject pointer to the 503 /* Move the subject pointer back. This occurs only at the start of 505 /* Now start processing the operations. */ 585 DPRINTF (("start bracket 0\n")); 829 code for maximizing the speed, and do the type test once at the start 891 each branch of a lookbehind assertion. If we are too close to the start to 892 each substring: the offsets to the start and end of the substring. 1003 eptrb pointer to chain of blocks containing eptr at start of 1005 eptrb = eptrb->prev; /* Back up the stack of bracket start pointers */ [all …]
|
/ndk/sources/host-tools/ndk-stack/regex/ |
D | engine.c | 138 char *start; in matcher() local 145 start = string + pmatch[0].rm_so; in matcher() 148 start = string; in matcher() 149 stop = start + strlen(start); in matcher() 151 if (stop < start) in matcher() 156 for (dp = start; dp < stop; dp++) in matcher() 170 m->beginp = start; in matcher() 181 endp = fast(m, start, stop, gf, gl); in matcher() 260 start = m->coldp + 1; /* recycle starting later */ in matcher() 291 dissect(struct match *m, char *start, char *stop, sopno startst, sopno stopst) in dissect() argument [all …]
|
D | regcomp.c | 461 sopno start = HERE(); in p_bre() local 481 REQUIRE(HERE() != start, REG_EMPTY); /* require nonempty */ in p_bre() 707 char start, finish; in p_b_term() local 745 start = p_b_symbol(p); in p_b_term() 754 finish = start; in p_b_term() 756 REQUIRE(start <= finish, REG_ERANGE); in p_b_term() 757 for (i = start; i <= finish; i++) in p_b_term() 940 sopno start, /* operand from here to end of strip */ in repeat() argument 958 DROP(finish-start); /* drop the operand */ in repeat() 964 INSERT(OCH_, start); /* offset is wrong... */ in repeat() [all …]
|
/ndk/sources/host-tools/ndk-stack/ |
D | ndk-stack-parser.c | 264 const char* start = next_token(str); in get_next_token() local 265 const char* end = next_separator(start); in get_next_token() 266 if (start != end) { in get_next_token() 267 const size_t to_copy = min((end - start), (size - 1)); in get_next_token() 268 memcpy(token, start, to_copy); in get_next_token() 270 return start; in get_next_token()
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | regexec.c | 43 Idx start, Idx last_start, Idx stop, 49 Idx start, regoff_t range, 53 const char *string, Idx length, Idx start, 234 Idx start, length; local 244 start = pmatch[0].rm_so; 249 start = 0; 255 err = re_search_internal (preg, string, length, start, length, 258 err = re_search_internal (preg, string, length, start, length, 314 re_match (bufp, string, length, start, regs) in re_match() argument 317 Idx length, start; [all …]
|
/ndk/sources/host-tools/make-3.81/ |
D | function.c | 781 int start, count; in func_wordlist() local 789 start = atoi (argv[0]); in func_wordlist() 790 if (start < 1) in func_wordlist() 792 "invalid first argument to `wordlist' function: `%d'", start); in func_wordlist() 794 count = atoi (argv[1]) - start + 1; in func_wordlist() 802 while (((p = find_next_token (&end_p, 0)) != 0) && --start) in func_wordlist() 1885 const char *start, *end, *apath_limit; in abspath() local 1908 for (start = end = name; *start != '\0'; start = end) in abspath() 1913 while (*start == '/') in abspath() 1914 ++start; in abspath() [all …]
|
D | ansi2knr.c | 450 writeblanks(start, end) in writeblanks() argument 451 char *start; in writeblanks() 454 for ( p = start; p < end; p++ )
|
D | read.c | 2544 char *start; in readline() local 2556 p = start = ebuf->bufstart; in readline() 2594 if ((p - start) > 1 && p[-2] == '\r') in readline() 2602 for (p2 = p - 2; p2 >= start; --p2) in readline() 2624 unsigned long off = p - start; in readline() 2626 start = ebuf->buffer = ebuf->bufstart = (char *) xrealloc (start, in readline() 2628 p = start + off; in readline() 2629 end = start + ebuf->size; in readline()
|
/ndk/sources/host-tools/sed-4.2.1/doc/ |
D | groupify.sed | 10 /^@c start-*$/! b
|
/ndk/build/core/ |
D | setup-imports.mk | 26 $(call __ndk_info,Please fix the error and start again.)
|
/ndk/sources/host-tools/ndk-stack/elff/ |
D | dwarf_cu.h | 93 const Elf_Byte* start; member 462 stmtl_header_.start = INC_CPTR_T(Elf_Byte, &stmtl_hdr->min_instruction_len, in cache_stmtl()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _valarray.c | 47 size_t __index = __x._M_slice.start(); 58 size_t __index = __slice.start();
|
D | _valarray.h | 1084 size_t start() const { return _M_start; } in __TRIVIAL_DESTRUCTOR() 1101 size_t __index = _M_slice.start(); 1109 size_t __index = _M_slice.start(); 1117 size_t __index = _M_slice.start(); 1125 size_t __index = _M_slice.start(); 1133 size_t __index = _M_slice.start(); 1141 size_t __index = _M_slice.start(); 1149 size_t __index = _M_slice.start(); 1157 size_t __index = _M_slice.start(); 1165 size_t __index = _M_slice.start(); [all …]
|
/ndk/sources/host-tools/make-3.81/config/ |
D | compile | 46 right script to run: please start by reading the file `INSTALL'.
|
/ndk/tests/device/test-stlport/unit/cppunit/ |
D | cppunit_timer.h | 34 void start() { in start() function
|
/ndk/tests/device/test-gnustl-full/unit/cppunit/ |
D | cppunit_timer.h | 34 void start() { in start() function
|