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

  /external/srec/portable/src/
LCHAR.c 28 size_t beginning, ending, len; local
32 /* locating first non-whitespace character from beginning */
33 for (beginning = 0; beginning < len && LISSPACE(text[beginning]); ++beginning);
35 for (ending = len - 1; ending > beginning && LISSPACE(text[ending]); --ending);
37 if (beginning > 0 && beginning <= ending)
38 LMEMMOVE(text, text + beginning, ending - beginning + 1)
    [all...]
PFileSystem.c 67 const LCHAR* beginning; local
83 beginning = linear;
86 ending = LSTRCHR(beginning, L('/'));
88 ending = beginning + LSTRLEN(beginning);
89 value = MALLOC(sizeof(LCHAR) * (ending - beginning + 1 + 1), MTAG);
96 LSTRNCPY(value, beginning, ending - beginning + 1);
97 value[ending-beginning+1] = L('\0');
111 beginning = ending + 1
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
string-concatenate-outofmemory.js 6 shouldThrow('s = "a"; while (1) { s += ("a" + s); }', '"Error: Out of memory"'); // Expand at beginning of string
35 s += t; // This will expand the string at the beginning using UString::expandPreCapacity
  /external/v8/test/mjsunit/
html-comments.js 1 --> must work at beginning of file!
regexp.js 45 re = /^./gm; // any non-newline character at the beginning of a line
65 re = /^[^]/gm; // *any* character at the beginning of a line
205 // Test beginning and end of line assertions with or without the
unicode-test.js     [all...]
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 474 LCHAR* beginning = source; local
478 for (; *beginning!=L('\0') && LISSPACE(*beginning); ++beginning);
479 if (*beginning==L('\0'))
482 if(*beginning == '\"') {
483 beginning++;
484 for (ending=beginning; *ending!=L('\0') && *ending!='\"'; ++ending);
488 for (ending=beginning; *ending!=L('\0') && !LISSPACE(*ending); ++ending);
490 if ((size_t) (ending-beginning) > *charsRead
    [all...]
  /external/v8/test/mjsunit/compiler/
simple-bailouts.js 75 // These tests should fail if we bailed out to the beginning of the full
  /external/srec/srec/test/SRecTestAudio/src/
SRecTestAudio.c 474 LCHAR* beginning = source; local
478 for (; *beginning!=L('\0') && LISSPACE(*beginning); ++beginning);
479 if (*beginning==L('\0'))
482 for (ending=beginning; *ending!=L('\0') && !LISSPACE(*ending); ++ending);
483 if ((size_t) (ending-beginning) > *charsRead)
485 *charsRead = ending-beginning;
489 LSTRNCPY(target, beginning, ending-beginning);
    [all...]
  /packages/apps/Phone/src/com/android/phone/
PhoneApp.java 176 // True if we are beginning a call, but the phone state has not changed yet
    [all...]
  /external/srec/shared/src/
SessionTypeImpl.c 1016 size_t size, pos, beginning; local
1024 /* Scan for beginning of next token */
1029 /* Reached end of string while looking for beginning of next token */
1032 beginning = pos;
1037 CHKLOG(rc, lstrtoi(text + beginning, &value, 10));
    [all...]
  /external/webkit/WebCore/html/
HTMLTokenizer.cpp 588 printf("beginning script execution at %d\n", m_doc->elapsedTime());
    [all...]
  /external/v8/test/mjsunit/tools/
profile.js 89 // Therefore, we are adding entries at the beginning.
  /external/grub/docs/
texinfo.tex 204 % vertical list for the beginning and end of each change).
310 % Do this early so pdf references go to the beginning of the page.
437 % We prepended an \empty token at the very beginning and we expand it now,
630 % at the beginning of a line will start with \penalty -- and
659 % beginning of a paragraph, when TeX is still in vertical mode, would
724 % TeX puts in an \escapechar (i.e., `@') at the beginning of the help
    [all...]
  /external/blktrace/btt/doc/
btt.tex 756 \emph{end} of the previous IO and the beginning of the next, or the
    [all...]
  /external/v8/src/
array.js 803 // in the beginning of the array. Write undefineds and holes at the end
    [all...]
debug-debugger.js 33 // Regular expression to skip "crud" at the beginning of a source line which is
    [all...]
  /external/zlib/contrib/masmx86/
gvmat32.asm 167 ; we increment chain_length because in the asm, the --chain_lenght is in the beginning of the loop
  /external/webkit/WebKitTools/Scripts/webkitpy/style/processors/
cpp.py 473 """Find the beginning marker for a multiline comment."""
    [all...]
  /dalvik/docs/
prettify.js     [all...]
  /external/v8/benchmarks/
earley-boyer.js 2 // benchmark harness code at the beginning and end of the file.
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-earley-boyer.js 2 // benchmark harness code at the beginning and end of the file.
    [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex 905 % for the beginning of a topic that is used with subtopics
    [all...]
  /external/iproute2/doc/
ip-cref.tex 38 The paragraphs beginning with NB contain side notes, warnings about
    [all...]

Completed in 768 milliseconds