Searched refs:first (Results 276 - 300 of 9193) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/base/strings/
H A Dstring_split_unittest.cc51 EXPECT_TRUE(kv_pairs[0].first.empty());
53 EXPECT_EQ("key2", kv_pairs[1].first);
63 EXPECT_TRUE(kv_pairs[0].first.empty());
65 EXPECT_EQ("key2", kv_pairs[1].first);
75 EXPECT_EQ("key1", kv_pairs[0].first);
77 EXPECT_EQ("key2", kv_pairs[1].first);
87 EXPECT_EQ("key1", kv_pairs[0].first);
89 EXPECT_EQ("key3", kv_pairs[1].first);
99 EXPECT_EQ("key1", kv_pairs[0].first);
101 EXPECT_EQ("key2", kv_pairs[1].first);
[all...]
/external/chromium_org/components/dom_distiller/core/css/
H A Ddistilledpage.css306 #loader .mask.first {
317 #loader .circle.red .mask.first {
328 #loader .circle.yellow .mask.first {
339 #loader .circle.green .mask.first {
350 #loader .circle.blue .mask.first {
389 #loader .circle.red .mask.first .base {
398 #loader .circle.yellow .mask.first .base {
408 #loader .circle.green .mask.first .base {
418 #loader .circle.blue .mask.first .base {
433 #loader .circle.red .mask.first
[all...]
/external/libcxx/test/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/chromium_org/third_party/WebKit/Source/build/scripts/
H A Drjsmin.py123 first, last, result = None, None, []
126 first = last = char
130 result.append((first, last))
131 first = last = char
133 result.append((first, last))
135 chr(first),
136 last > first + 1 and '-' or '',
137 last != first and chr(last) or '') for first, last in result])
/external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
H A DUtilTest.java76 String first = "String 1";
80 assertEquals(expectedString, Util.joinAndSkipNulls("-", first, second));
81 assertEquals(expectedString, Util.joinAndSkipNulls("-", first, second, nullString));
82 assertEquals(expectedString, Util.joinAndSkipNulls("-", first, nullString, second));
83 assertEquals(expectedString, Util.joinAndSkipNulls("-", first, nullString, " ", second));
84 assertEquals(first, Util.joinAndSkipNulls("-", first, nullString));
85 assertEquals(first, Util.joinAndSkipNulls("-", nullString, first));
/external/jemalloc/src/
H A Dquarantine.c37 quarantine->first = 0;
58 if (quarantine->first + quarantine->curobjs <= (ZU(1) <<
61 memcpy(ret->objs, &quarantine->objs[quarantine->first],
66 quarantine->first;
69 memcpy(ret->objs, &quarantine->objs[quarantine->first], ncopy_a
82 quarantine_obj_t *obj = &quarantine->objs[quarantine->first];
87 quarantine->first = (quarantine->first + 1) & ((ZU(1) <<
137 size_t offset = (quarantine->first + quarantine->curobjs) &
/external/libcxx/test/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/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/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/chromium_org/components/autofill/core/browser/
H A Dautofill_type_unittest.cc23 AutofillType first(NAME_FIRST);
24 EXPECT_EQ(NAME_FIRST, first.GetStorableType());
25 EXPECT_EQ(NAME, first.group());
65 AutofillType first(HTML_TYPE_GIVEN_NAME, HTML_MODE_NONE);
66 EXPECT_EQ(NAME_FIRST, first.GetStorableType());
67 EXPECT_EQ(NAME, first.group());
/external/chromium_org/components/enhanced_bookmarks/
H A Dtest_image_store.cc45 return std::make_pair(store_[page_url].first, store_[page_url].second);
55 return store_[page_url].first.Size();
63 urls->insert(it->first);
77 size += sizeof(it->first);
78 size += it->first.spec().length();
80 SkBitmap bitmap = it->second.first.AsBitmap();
/external/chromium_org/third_party/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/chromium_org/third_party/skia/src/pathops/
H A DSkDQuadImplicit.cpp93 * lazily compute the coefficients, comparing the easiest to compute first.
94 * xx and yy first; then xy; and so on.
97 int first = 0; local
100 first += first == index;
103 if (first == index) {
106 if (!AlmostDequalUlps(fP[index] * p2.fP[first], fP[first] * p2.fP[index])) {
/external/chromium_org/ui/base/accelerators/
H A Daccelerator_manager.cc28 DCHECK(!accelerators_[accelerator].first)
32 accelerators_[accelerator].first = true;
38 // front. Otherwise, register it after the first (only) priority handler.
39 if (!accelerators_[accelerator].first)
62 if (accelerators_[accelerator].first && target_iter == targets->begin()) {
64 accelerators_[accelerator].first = false;
112 if (!map_iter->second.first)
/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/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/skia/src/pathops/
H A DSkDQuadImplicit.cpp93 * lazily compute the coefficients, comparing the easiest to compute first.
94 * xx and yy first; then xy; and so on.
97 int first = 0; local
100 first += first == index;
103 if (first == index) {
106 if (!AlmostDequalUlps(fP[index] * p2.fP[first], fP[first] * p2.fP[index])) {
/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/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRootInlineBox.cpp219 SVGTextLayoutAttributes*& first, SVGTextLayoutAttributes*& last)
221 first = 0;
227 if (!first && firstContext == current->context())
228 first = current;
231 if (first && last)
235 ASSERT(first);
239 static inline void reverseInlineBoxRangeAndValueListsIfNeeded(void* userData, Vector<InlineBox*>::iterator first, Vector<InlineBox*>::iterator last) argument
244 // This is a copy of std::reverse(first, last). It additionally assures that the metrics map within the renderers belonging to the InlineBoxes are reordered as well.
246 if (first == last || first
218 findFirstAndLastAttributesInVector(Vector<SVGTextLayoutAttributes*>& attributes, RenderSVGInlineText* firstContext, RenderSVGInlineText* lastContext, SVGTextLayoutAttributes*& first, SVGTextLayoutAttributes*& last) argument
[all...]
/external/chromium_org/pdf/
H A Dchunk_stream.cc56 if (start->first + start->second < offset)
67 size_t new_offset = std::min<size_t>(start->first, offset);
69 std::max<size_t>(end->first + end->second, offset + size) - new_offset;
101 if (start->first + start->second < offset)
114 if (cur_offset < it->first) {
115 size_t new_size = it->first - cur_offset;
117 cur_offset = it->first + it->second;
118 } else if (cur_offset < it->first + it->second) {
119 cur_offset = it->first + it->second;
143 return (it->first
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dhash.c25 pNew->first = 0;
39 elem = pH->first;
40 pH->first = 0;
86 else { pH->first = pNew; }
89 pNew->next = pH->first;
90 if( pH->first ){ pH->first->prev = pNew; }
92 pH->first = pNew;
127 for(elem=pH->first, pH->first
[all...]
/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/chromium_org/base/posix/
H A Dglobal_descriptors.cc33 if (i->first == key)
43 if (i->first == key) {
/external/chromium_org/chrome/browser/resources/options/
H A Dimport_data_overlay.css13 #import-checkboxes > div:not(:first-child) {

Completed in 1400 milliseconds

<<11121314151617181920>>