Searched refs:from (Results 1 - 25 of 1785) sorted by relevance

1234567891011>>

/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
H A Dchar16_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from
[all...]
H A Dchar32_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from
[all...]
H A Dchar_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[10]= {0}; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from
[all...]
H A Dwchar_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char* from = "123467890"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from
[all...]
/external/clang/test/SemaCXX/
H A Dconstexpr-duffs-device.cpp4 constexpr void copy(const char *from, unsigned long count, char *to) { argument
7 case 0: do { *to++ = *from++;
8 case 7: *to++ = *from++;
9 case 6: *to++ = *from++;
10 case 5: *to++ = *from++;
11 case 4: *to++ = *from++;
12 case 3: *to++ = *from++;
13 case 2: *to++ = *from++;
14 case 1: *to++ = *from++;
/external/harfbuzz_ng/test/shaping/
H A Dhb-diff-ngrams3 from hb_test_tools import *
H A Dhb-diff-stat3 from hb_test_tools import *
H A Dhb-unicode-decode3 from hb_test_tools import *
H A Dhb-unicode-encode3 from hb_test_tools import *
/external/valgrind/drd/tests/
H A Domp_matinv_racy.stderr.exp1 ERROR SUMMARY: 76 errors from 7 contexts
H A Domp_prime_racy.stderr.exp1 ERROR SUMMARY: 3 errors from 3 contexts
H A Dpth_barrier.stderr.exp1 ERROR SUMMARY: 1 errors from 1 contexts
H A Dpth_once.stderr.exp1 ERROR SUMMARY: 0 errors from 0 contexts
H A Dtc05_simple_race.stderr.exp1 ERROR SUMMARY: 2 errors from 2 contexts
H A Dtc06_two_races.stderr.exp1 ERROR SUMMARY: 4 errors from 4 contexts
H A Dthreaded-fork-vcs.stderr.exp3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dthreaded-fork.stderr.exp3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_hbefore.stderr.exp3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_rwlock.stderr.exp4 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_sem.stderr.exp4 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_smart_pointer.stderr.exp4 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dannotate_static.stderr.exp4 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dbar_trivial.stderr.exp3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
H A Dboost_thread.stderr.exp6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java61 /** The iterator from which to obtain the next header. */
107 * Obtains the next token from this iteration.
162 * will be obtained from {@link #headerIt}.
165 * @param from the position in the current header at which to
173 protected int findNext(int from) argument
176 if (from < 0) {
177 // called from the constructor, initialize the first header
182 from = 0;
185 from = findTokenSeparator(from);
235 findTokenStart(int from) argument
291 findTokenSeparator(int from) argument
331 findTokenEnd(int from) argument
[all...]

Completed in 385 milliseconds

1234567891011>>