Searched refs:first (Results 226 - 250 of 2550) sorted by relevance

1234567891011>>

/external/libcxx/test/std/containers/unord/unord.multimap/
H A Dlocal_iterators.fail.cpp53 assert(i->first == 1);
56 assert(i->first == 1);
58 i->first = 2;
64 assert(i->first == 2);
67 assert(i->first == 2);
74 assert(i->first == 3);
81 assert(i->first == 4);
118 assert(i->first == 1);
121 assert(i->first == 1);
128 assert(i->first
[all...]
/external/libcxx/test/std/containers/associative/map/map.modifiers/
H A Demplace_hint.pass.cpp35 assert(m.begin()->first == 0);
43 assert(next(m.begin())->first == 1);
51 assert(next(m.begin())->first == 1);
65 assert(m.begin()->first == 2);
72 assert(m.begin()->first == 1);
79 assert(m.begin()->first == 1);
89 assert(m.begin()->first == 2);
101 assert(m.begin()->first == 0);
109 assert(next(m.begin())->first == 1);
117 assert(next(m.begin())->first
[all...]
/external/libcxx/test/std/containers/associative/multimap/multimap.modifiers/
H A Demplace.pass.cpp35 assert(m.begin()->first == 0);
42 assert(next(m.begin())->first == 1);
49 assert(next(m.begin(), 2)->first == 1);
62 assert(m.begin()->first == 2);
68 assert(m.begin()->first == 1);
74 assert(r->first == 1);
84 assert(m.begin()->first == 2);
96 assert(m.begin()->first == 0);
103 assert(next(m.begin())->first == 1);
110 assert(next(m.begin(), 2)->first
[all...]
H A Demplace_hint.pass.cpp35 assert(m.begin()->first == 0);
43 assert(next(m.begin())->first == 1);
51 assert(next(m.begin(), 2)->first == 1);
65 assert(m.begin()->first == 2);
72 assert(m.begin()->first == 1);
79 assert(r->first == 1);
89 assert(m.begin()->first == 2);
101 assert(m.begin()->first == 0);
109 assert(next(m.begin())->first == 1);
117 assert(next(m.begin(), 2)->first
[all...]
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.cnstr/
H A Dassign_copy.pass.cpp63 assert(i->first == 1);
66 assert(i->first == 1);
69 assert(i->first == 2);
72 assert(i->first == 2);
75 assert(i->first == 3);
78 assert(i->first == 4);
140 assert(i->first == 1);
143 assert(i->first == 1);
146 assert(i->first == 2);
149 assert(i->first
[all...]
/external/harfbuzz_ng/src/
H A Dhb-set.cc225 * @first:
234 hb_codepoint_t first,
237 set->add_range (first, last);
259 * @first:
268 hb_codepoint_t first,
271 set->del_range (first, last);
455 * @first: (out): output first codepoint in the range.
467 hb_codepoint_t *first,
470 return set->next_range (first, las
233 hb_set_add_range(hb_set_t *set, hb_codepoint_t first, hb_codepoint_t last) argument
267 hb_set_del_range(hb_set_t *set, hb_codepoint_t first, hb_codepoint_t last) argument
466 hb_set_next_range(const hb_set_t *set, hb_codepoint_t *first, hb_codepoint_t *last) argument
[all...]
/external/libcxx/test/std/containers/unord/unord.map/unorder.map.modifiers/
H A Demplace_hint.pass.cpp40 assert(r->first == 3);
45 assert(r->first == 4);
51 assert(r->first == 5);
64 assert(r->first == 3);
69 assert(r->first == 4);
75 assert(r->first == 5);
/external/smali/util/src/main/java/org/jf/util/
H A DPathUtil.java76 boolean first = true;
78 if (!first) {
81 first = false;
87 first = true;
89 if (first) {
93 first = false;
/external/clang/include/clang/AST/
H A DStmtIterator.h150 bool empty() const { return first == second; }
153 Stmt *operator->() const { return first.operator->(); }
154 Stmt *&operator*() const { return first.operator*(); }
158 ++first;
165 ++first;
170 return range.first;
188 : std::pair<ConstStmtIterator,ConstStmtIterator>(range.first, range.second)
193 bool empty() const { return first == second; }
196 const Stmt *operator->() const { return first.operator->(); }
197 const Stmt *operator*() const { return first
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DConstraintManager.cpp34 if (P.first && !P.second)
36 if (!P.first && P.second)
/external/compiler-rt/lib/asan/
H A Dasan_flags.inc60 int, max_malloc_fill_size, 0x1000, // By default, fill only the first 4K.
127 "restores them to original values when the first instrumented module is "
/external/icu/icu4c/source/layout/
H A DExtensionSubtables.cpp20 le_uint16* first = ((le_uint16*)&code); local
22 return (le_uint32)((SWAPW(*first) << 16) + SWAPW(*second));
/external/libcxx/test/std/containers/unord/unord.map/
H A Dlocal_iterators.pass.cpp55 assert(i->first == 1);
62 assert(i->first == 2);
69 assert(i->first == 3);
76 assert(i->first == 4);
103 assert(i->first == 1);
110 assert(i->first == 2);
117 assert(i->first == 3);
124 assert(i->first == 4);
151 assert(i->first == 1);
158 assert(i->first
[all...]
/external/libcxx/test/std/numerics/numeric.ops/accumulate/
H A Daccumulate.pass.cpp16 // accumulate(Iter first, Iter last, T init);
25 test(Iter first, Iter last, T init, T x) argument
27 assert(std::accumulate(first, last, init) == x);
/external/libcxx/test/std/re/re.regex/re.regex.construct/
H A Diter_iter.pass.cpp15 // basic_regex(ForwardIterator first, ForwardIterator last);
24 test(Iter first, Iter last, unsigned mc) argument
26 std::basic_regex<typename std::iterator_traits<Iter>::value_type> r(first, last);
/external/libcxx/test/std/re/re.submatch/re.submatch.members/
H A Dcompare_string_type.pass.cpp29 sm.first = s;
43 sm.first = s;
H A Dcompare_value_type_ptr.pass.cpp28 sm.first = s;
41 sm.first = s;
H A Doperator_string.pass.cpp28 sm.first = s;
41 sm.first = s;
H A Dstr.pass.cpp28 sm.first = s;
41 sm.first = s;
/external/libcxx/test/std/strings/basic.string/string.cons/
H A Diter_alloc.pass.cpp26 test(It first, It last) argument
32 S s2(first, last);
34 assert(s2.size() == std::distance(first, last));
36 for (It it = first; it != last; ++it, ++i)
44 test(It first, It last, const A& a) argument
49 S s2(first, last, a);
51 assert(s2.size() == std::distance(first, last));
53 for (It it = first; it != last; ++it, ++i)
/external/libcxx/test/std/utilities/utility/pairs/pair.piecewise/
H A Dpiecewise_construct.pass.cpp49 assert(p.first.get_i() == 4);
50 assert(p.first.get_c() == 'a');
/external/lldb/test/lang/c/stepping/
H A Dmain.c43 int complex (int first, int second, int third) argument
45 return first + second + third; // Step in targetting complex should stop here
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_tcl.h41 extern void r200EmitEltPrimitive( struct gl_context *ctx, GLuint first, GLuint last,
43 extern void r200EmitPrimitive( struct gl_context *ctx, GLuint first, GLuint last,
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_tcl.h42 extern void radeonEmitEltPrimitive( struct gl_context *ctx, GLuint first, GLuint last,
44 extern void radeonEmitPrimitive( struct gl_context *ctx, GLuint first, GLuint last,
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DNetObjectList.java102 /** returns the first element
105 public GenericObject first() { method in class:NetObjectList
106 return (NetObject) super.first();

Completed in 1287 milliseconds

1234567891011>>