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

1 2 3 4 5 6

  /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/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/chromium_org/third_party/sfntly/cpp/src/test/
cmap_iterator_test.cc 105 beginning = bit_set->begin(), local
106 init_beginning = beginning,
107 current = std::find(beginning, end, true);
108 for (int32_t next_bit = current - beginning;
116 beginning = current + 1;
117 current = std::find(beginning, end, true);
  /external/sfntly/cpp/src/test/
cmap_iterator_test.cc 105 beginning = bit_set->begin(), local
106 init_beginning = beginning,
107 current = std::find(beginning, end, true);
108 for (int32_t next_bit = current - beginning;
116 beginning = current + 1;
117 current = std::find(beginning, end, true);
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeValue.java 225 * 1) at the beginning
228 * Since multiple spaces at the beginning or end will be covered by
347 boolean beginning = true;
353 beginning = false;
357 if (beginning || i > lastIndex) {
364 beginning = false;
  /external/chromium-libpac/test/js-unittest/
passthrough.js 25 // a dot at the beginning, or a dot at the end.
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
passthrough.js 25 // a dot at the beginning, or a dot at the end.
  /external/libvorbis/doc/
a1-encapsulation-ogg.tex 75 page of exactly 58 bytes at the very beginning of the logical stream.
79 This first page is marked 'beginning of stream' in the page flags.
84 headers) may span one or more pages beginning on the second page of
139 inference it may indicate that the PCM position of the beginning
173 for seeking operations at the very beginning of the stream.
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
template_writer.py 206 '''Appends the template text corresponding to the beginning of a
221 '''Appends the template text corresponding to the beginning of a recommended
236 '''Appends the text corresponding to the beginning of the whole
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
loop.js 47 // Reset HTML5 player to start playback from beginning.
  /external/chromium_org/v8/test/mjsunit/
html-comments.js 1 --> must work at beginning of file!
switch-opt.js 96 // Test deopt at the beginning of the case label evaluation.
193 // Test deopt at the beginning of the case label evaluation.
  /external/chromium_org/v8/test/webkit/fast/js/
regexp-bol-with-multiline.js 25 'Test for beginning of line (BOL or ^) matching in a multiline string</a>'
regexp-bol.js 25 'Test for beginning of line (BOL or ^) matching</a>'
  /external/chromium_org/v8/test/webkit/
try-catch-try-try-catch-try-finally-return-catch-finally.js 25 "Tests what would happen if you a throwing operation at the beginning of a finally blow that gets inlined inside a complicated catch/finally stack. The correct outcome is for this test to not crash during exception throwing."
  /external/llvm/test/MC/ARM/
eh-directive-section.s 32 @ TEST2 section (without the dot in the beginning)
99 @ Check the TEST2 section (without the dot in the beginning)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
difflib.py 780 Lines beginning with '? ' attempt to guide the eye to intraline
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
difflib.py 780 Lines beginning with '? ' attempt to guide the eye to intraline
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
session_info.cc 363 bool beginning = local
367 bool packet_loss_found = (!beginning && !InSequence(it, prev_it));
369 (beginning && current_partition_id != partition_id)) {
  /external/chromium_org/v8/test/mjsunit/harmony/
regexp-sticky.js 122 // matches only at the beginning of Input, or (if Multiline is true) at the
123 // beginning of a line.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1748.js 28 // Test that /^/ only matches at beginning of string.
  /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/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_format_vp8.cc 141 // in the beginning of the partition.
220 // Read P bit from payload header (only at beginning of first partition).
380 bool beginning = true; local
399 if (remaining_in_partition == 0 && !(beginning && separate_first_)) {
429 beginning = false; // Next packet cannot be first packet in frame.

Completed in 1958 milliseconds

1 2 3 4 5 6