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

1 2

  /cts/tests/tests/text/src/android/text/method/cts/
WordIteratorTest.java 29 private void checkIsWordWithSurrogate(int beginning, int end, int surrogateIndex) {
30 for (int i = beginning; i <= end; i++) {
32 assertEquals(beginning, wi.getBeginning(i));
41 private void checkIsWord(int beginning, int end) {
42 checkIsWordWithSurrogate(beginning, end, -1);
45 private void checkIsNotWord(int beginning, int end) {
46 for (int i = beginning; i <= end; i++) {
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.h 32 bool beginning = true);
ProfilingUtils.cpp 108 GlobalValue *CounterArray, bool beginning) {
110 BasicBlock::iterator InsertPos = beginning ? BB->getFirstInsertionPt() :
  /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/chromium/net/data/proxy_resolver_v8_unittest/
passthrough.js 25 // a dot at the beginning, or a dot at the end.
  /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
224 // the \s at the beginning of the range.
233 // Test beginning and end of line assertions with or without the
  /ndk/sources/host-tools/sed-4.2.1/doc/
sed.x 278 form will still be at the beginning of its range.
  /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 73 // These tests should fail if we bailed out to the beginning of the full
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_characterdatadeletedatabegining.js 79 characters from the node. Delete data at the beginning
hc_characterdatainsertdatabeginning.js 80 the beginning of the character data.
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_characterdatadeletedatabegining.js 79 characters from the node. Delete data at the beginning
hc_characterdatainsertdatabeginning.js 80 the beginning of the character data.
  /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...]
  /external/libvpx/vpx_scale/arm/neon/
vp8_vpxyv12_copysrcframe_func_neon.asm 20 ;Note: This function is used to copy source data in src_buffer[i] at beginning of
  /packages/apps/Phone/src/com/android/phone/
PhoneApp.java 185 // 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/v8/test/mjsunit/tools/
profile.js 89 // Therefore, we are adding entries at the beginning.
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
util.js 449 * Trim whitespace from beginning of string.
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
util.js 449 * Trim whitespace from beginning of string.
  /external/mesa3d/docs/
MESA_texture_array.spec 622 Add after the line beginning "If the value of
    [all...]
  /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...]

Completed in 5145 milliseconds

1 2