HomeSort by relevance Sort by last modified time
    Searched full:begin (Results 151 - 175 of 10864) sorted by null

1 2 3 4 5 67 8 91011>>

  /ndk/tests/device/test-stlport/unit/
complete_digits.h 15 digits.insert(digits.begin(), '0');
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t053heteroT11.g 17 a : 'begin' -> 'begin'<V> ;
t053heteroT12.g 17 a : 'begin' INT -> ^('begin'<V> INT) ;
  /external/llvm/test/Bindings/Ocaml/
bitreader.ml 23 begin
25 begin try
35 test begin try
44 begin
46 let m = begin try
57 begin let oc = open_out fn in
63 test begin
66 let m = begin try
  /external/quake/quake/src/QW/client/
winquake.rc 31 BEGIN
36 BEGIN
42 BEGIN
69 BEGIN
79 BEGIN
103 BEGIN
105 BEGIN
119 BEGIN
  /external/quake/quake/src/WinQuake/
winquake.rc 31 BEGIN
36 BEGIN
42 BEGIN
68 BEGIN
77 BEGIN
93 BEGIN
95 BEGIN
113 BEGIN
  /frameworks/rs/driver/linkloader/utils/
flush_cpu_cache.h 32 #define FLUSH_CPU_CACHE(BEGIN, END) \
33 cacheflush(((long)(BEGIN)), ((long)(END)), 0)
41 #define FLUSH_CPU_CACHE(BEGIN, END) \
42 _flush_cache(reinterpret_cast<char*>(BEGIN), END-BEGIN+1, BCACHE);
48 #define FLUSH_CPU_CACHE(BEGIN, END) do { } while (0)
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multimap/multimap.ops/
equal_range.pass.cpp 40 assert(r.first == m.begin());
41 assert(r.second == m.begin());
43 assert(r.first == m.begin());
44 assert(r.second == next(m.begin(), 3));
46 assert(r.first == next(m.begin(), 3));
47 assert(r.second == next(m.begin(), 3));
49 assert(r.first == next(m.begin(), 3));
50 assert(r.second == next(m.begin(), 6));
52 assert(r.first == next(m.begin(), 6));
53 assert(r.second == next(m.begin(), 6))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.regex/re.regex.construct/
iter_iter_flg.pass.cpp 40 test(F(s1.begin()), F(s1.end()), std::regex_constants::basic, 1);
41 test(F(s2.begin()), F(s2.end()), std::regex_constants::basic, 1);
42 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2);
43 test(F(s4.begin()), F(s4.end()), std::regex_constants::basic, 0);
45 test(F(s1.begin()), F(s1.end()), std::regex_constants::extended, 0);
46 test(F(s2.begin()), F(s2.end()), std::regex_constants::extended, 0);
47 test(F(s3.begin()), F(s3.end()), std::regex_constants::extended, 0);
48 test(F(s4.begin()), F(s4.end()), std::regex_constants::extended, 2);
50 test(F(s1.begin()), F(s1.end()), std::regex_constants::ECMAScript, 0);
51 test(F(s2.begin()), F(s2.end()), std::regex_constants::ECMAScript, 0)
    [all...]
  /external/chromium/net/proxy/
proxy_server.cc 22 std::string::const_iterator begin,
24 if (LowerCaseEqualsASCII(begin, end, "proxy"))
26 if (LowerCaseEqualsASCII(begin, end, "socks")) {
32 if (LowerCaseEqualsASCII(begin, end, "socks4"))
34 if (LowerCaseEqualsASCII(begin, end, "socks5"))
36 if (LowerCaseEqualsASCII(begin, end, "direct"))
38 if (LowerCaseEqualsASCII(begin, end, "https"))
47 ProxyServer::Scheme GetSchemeFromURIInternal(std::string::const_iterator begin,
49 if (LowerCaseEqualsASCII(begin, end, "http"))
51 if (LowerCaseEqualsASCII(begin, end, "socks4")
    [all...]
  /external/openfst/src/include/fst/
interval-set.h 40 T begin; member in struct:fst::IntervalSet::Interval
43 Interval() : begin(-1), end(-1) {}
45 Interval(T b, T e) : begin(b), end(e) {}
48 return begin < i.begin || (begin == i.begin && end > i.end);
52 return begin == i.begin && end == i.end;
56 return begin != i.begin || end != i.end
    [all...]
  /external/expat/lib/
expat.dsp 24 # Begin Project
87 # Begin Target
91 # Begin Group "Source Files"
94 # Begin Source File
98 # Begin Source File
111 # Begin Source File
115 # Begin Source File
119 # Begin Source File
123 # Begin Source File
128 # Begin Group "Header Files"
    [all...]
expatw.dsp 24 # Begin Project
87 # Begin Target
91 # Begin Group "Source Files"
94 # Begin Source File
98 # Begin Source File
111 # Begin Source File
115 # Begin Source File
119 # Begin Source File
123 # Begin Source File
128 # Begin Group "Header Files"
    [all...]
  /external/libusb_aah/msvc/
libusb_static.dsp 24 # Begin Project
79 # Begin Target
83 # Begin Group "Source Files"
86 # Begin Source File
90 # Begin Source File
95 # Begin Source File
99 # Begin Source File
103 # Begin Source File
108 # Begin Source File
112 # Begin Source File
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Collections.Tests.pas 56 begin
63 begin
71 begin
74 begin
85 begin
89 begin
99 begin
104 begin
111 begin
121 begin
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multimap/multimap.cons/
iter_iter.pass.cpp 37 assert(distance(m.begin(), m.end()) == 9);
38 assert(*m.begin() == V(1, 1));
39 assert(*next(m.begin()) == V(1, 1.5));
40 assert(*next(m.begin(), 2) == V(1, 2));
41 assert(*next(m.begin(), 3) == V(2, 1));
42 assert(*next(m.begin(), 4) == V(2, 1.5));
43 assert(*next(m.begin(), 5) == V(2, 2));
44 assert(*next(m.begin(), 6) == V(3, 1));
45 assert(*next(m.begin(), 7) == V(3, 1.5));
46 assert(*next(m.begin(), 8) == V(3, 2))
    [all...]
iter_iter_comp.pass.cpp 42 assert(distance(m.begin(), m.end()) == 9);
43 assert(*m.begin() == V(1, 1));
44 assert(*next(m.begin()) == V(1, 1.5));
45 assert(*next(m.begin(), 2) == V(1, 2));
46 assert(*next(m.begin(), 3) == V(2, 1));
47 assert(*next(m.begin(), 4) == V(2, 1.5));
48 assert(*next(m.begin(), 5) == V(2, 2));
49 assert(*next(m.begin(), 6) == V(3, 1));
50 assert(*next(m.begin(), 7) == V(3, 1.5));
51 assert(*next(m.begin(), 8) == V(3, 2))
    [all...]
iter_iter_comp_alloc.pass.cpp 45 assert(distance(m.begin(), m.end()) == 9);
46 assert(*m.begin() == V(1, 1));
47 assert(*next(m.begin()) == V(1, 1.5));
48 assert(*next(m.begin(), 2) == V(1, 2));
49 assert(*next(m.begin(), 3) == V(2, 1));
50 assert(*next(m.begin(), 4) == V(2, 1.5));
51 assert(*next(m.begin(), 5) == V(2, 2));
52 assert(*next(m.begin(), 6) == V(3, 1));
53 assert(*next(m.begin(), 7) == V(3, 1.5));
54 assert(*next(m.begin(), 8) == V(3, 2))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multiset/multiset.cons/
iter_iter.pass.cpp 40 assert(distance(m.begin(), m.end()) == 9);
41 assert(*next(m.begin(), 0) == 1);
42 assert(*next(m.begin(), 1) == 1);
43 assert(*next(m.begin(), 2) == 1);
44 assert(*next(m.begin(), 3) == 2);
45 assert(*next(m.begin(), 4) == 2);
46 assert(*next(m.begin(), 5) == 2);
47 assert(*next(m.begin(), 6) == 3);
48 assert(*next(m.begin(), 7) == 3);
49 assert(*next(m.begin(), 8) == 3)
    [all...]
iter_iter_alloc.pass.cpp 48 assert(distance(m.begin(), m.end()) == 9);
49 assert(*next(m.begin(), 0) == 1);
50 assert(*next(m.begin(), 1) == 1);
51 assert(*next(m.begin(), 2) == 1);
52 assert(*next(m.begin(), 3) == 2);
53 assert(*next(m.begin(), 4) == 2);
54 assert(*next(m.begin(), 5) == 2);
55 assert(*next(m.begin(), 6) == 3);
56 assert(*next(m.begin(), 7) == 3);
57 assert(*next(m.begin(), 8) == 3)
    [all...]
iter_iter_comp.pass.cpp 43 assert(distance(m.begin(), m.end()) == 9);
44 assert(*next(m.begin(), 0) == 1);
45 assert(*next(m.begin(), 1) == 1);
46 assert(*next(m.begin(), 2) == 1);
47 assert(*next(m.begin(), 3) == 2);
48 assert(*next(m.begin(), 4) == 2);
49 assert(*next(m.begin(), 5) == 2);
50 assert(*next(m.begin(), 6) == 3);
51 assert(*next(m.begin(), 7) == 3);
52 assert(*next(m.begin(), 8) == 3)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.modifiers/string_insert/
iter_char.pass.cpp 23 typename S::difference_type pos = p - s.begin();
27 assert(i - s.begin() == pos);
37 test(s, s.begin(), '1', S("1"));
38 test(s, s.begin(), 'a', S("a1"));
45 test(s, s.begin()+1, '5', S("a51432dcb"));
46 test(s, s.begin()+2, '6', S("a561432dcb"));
47 test(s, s.begin()+3, '7', S("a5671432dcb"));
48 test(s, s.begin()+4, 'A', S("a567A1432dcb"));
49 test(s, s.begin()+5, 'B', S("a567AB1432dcb"));
50 test(s, s.begin()+6, 'C', S("a567ABC1432dcb"))
    [all...]
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
xmmintrin.h 43 /* APPLE LOCAL begin xmmintrin.h for kernel 4123064 */
96 /* APPLE LOCAL begin nodebug inline 4152603 */
100 /* APPLE LOCAL begin radar 5618945 */
110 /* APPLE LOCAL begin radar 4152603 */
111 /* APPLE LOCAL begin radar 5618945 */
123 /* APPLE LOCAL begin radar 5618945 */
131 /* APPLE LOCAL begin radar 5618945 */
139 /* APPLE LOCAL begin radar 5618945 */
147 /* APPLE LOCAL begin radar 5618945 */
155 /* APPLE LOCAL begin radar 5618945 *
    [all...]
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
xmmintrin.h 43 /* APPLE LOCAL begin xmmintrin.h for kernel 4123064 */
96 /* APPLE LOCAL begin nodebug inline 4152603 */
100 /* APPLE LOCAL begin radar 5618945 */
110 /* APPLE LOCAL begin radar 4152603 */
111 /* APPLE LOCAL begin radar 5618945 */
123 /* APPLE LOCAL begin radar 5618945 */
131 /* APPLE LOCAL begin radar 5618945 */
139 /* APPLE LOCAL begin radar 5618945 */
147 /* APPLE LOCAL begin radar 5618945 */
155 /* APPLE LOCAL begin radar 5618945 *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
checkers.h 42 * @brief Check whether @c [begin, @c end) is sorted according to @c comp.
43 * @param begin Begin iterator of sequence.
51 is_sorted(InputIterator begin, InputIterator end,
56 if (begin == end)
59 InputIterator current(begin), recent(begin);
78 * @brief Check whether @c [begin, @c end) is sorted according to @c comp.
80 * @param begin Begin iterator of sequence
    [all...]

Completed in 445 milliseconds

1 2 3 4 5 67 8 91011>>