Searched refs:first (Results 151 - 175 of 2232) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/text/brew/
H A DTextBreakIteratorBrew.cpp59 virtual int first() = 0;
79 virtual int first();
85 virtual int first();
91 virtual int first();
97 virtual int first();
102 int WordBreakIterator::first() function in class:WebCore::WordBreakIterator
142 int CharBreakIterator::first() function in class:WebCore::CharBreakIterator
170 int LineBreakIterator::first() function in class:WebCore::LineBreakIterator
210 int SentenceBreakIterator::first() function in class:WebCore::SentenceBreakIterator
301 return breakIterator->first();
[all...]
/external/chromium/chrome/browser/history/
H A Dsnippet.cc22 return a.first < b.first;
33 pair.second >= (*match_positions)[offset].first) {
40 // range. This keeps the pairs ordered in match_positions by first, and makes
57 if (i != match_positions->end() && i->first == start) {
68 // Match at the beginning and the first pair doesn't have the same
83 if (i == match_positions->end() || end < i->first) {
86 i->first = start;
196 i->first = AdvanceAndReturnUTF16Pos(utf8_cstring, utf8_length,
197 i->first,
[all...]
/external/stlport/test/eh/
H A Dtest_insert.h118 return __x.first;
188 tmp = EH_STD::find( from_orig, last_from_orig, p.first );
200 dstItem = EH_STD::find( first1, original.end(), *p.first );
204 ++p.first;
209 first1 = p.first;
320 // Metrowerks 1.8 compiler requires that specializations appear first (!!)
452 Iter first, Iter last, sequence_container_tag )
457 c_inst.insert( pos, first, last );
462 Iter first, Iter last, associative_container_tag )
464 c.insert( first, las
451 do_insert_range( C& c_inst, Position offset, Iter first, Iter last, sequence_container_tag ) argument
461 do_insert_range( C& c, Position, Iter first, Iter last, associative_container_tag ) argument
468 do_insert_range( C& c, Position, Iter first, Iter last, multiset_tag ) argument
474 do_insert_range( C& c, Position, Iter first, Iter last, multimap_tag ) argument
480 do_insert_range( C& c, Position, Iter first, Iter last, set_tag ) argument
486 do_insert_range( C& c, Position, Iter first, Iter last, map_tag ) argument
499 test_insert_range( const C& orig, Iter first, Iter last, int pos=-1 ) argument
535 insert_range_tester( const C& orig, const Iter& first, const Iter& last ) argument
541 insert_range_at_begin_tester( const C& orig, const Iter& first, const Iter& last ) argument
547 insert_range_at_end_tester( const C& orig, const Iter& first, const Iter& last ) argument
[all...]
/external/astl/include/
H A Dvector84 // Create a vector by copying the elements from [first, last).
90 vector(_Iterator first, _Iterator last) {
97 initialize(first, last, integral());
163 // Remove a range of elements [first, last)
164 // @param first Iterator pointing to the first element to be removed.
167 iterator erase(iterator first, iterator last);
184 // See the 2 'initialize' methods first. They desambiguate between
194 void range_initialize(_Iterator first, _Iterator last,
199 void range_initialize(_InputIterator first, _InputIterato
[all...]
/external/valgrind/main/drd/tests/
H A Dannotate_hb_err.stderr.exp5 mutex 0x........ was first observed at:
12 cond 0x........ was first observed at:
19 order annotation 0x........ was first observed at:
/external/valgrind/main/helgrind/tests/
H A Dlocked_vs_unlocked2.stderr.exp19 Lock at 0x........ was first observed
23 Lock at 0x........ was first observed
27 Lock at 0x........ was first observed
/external/valgrind/main/memcheck/tests/
H A Dunit_oset.c339 Addr first; member in struct:__anon14719
350 sprintf(buf, "<(%d) %lu..%lu (%d)>", b->b1, b->first, b->last, b->b2);
359 assert(elem->first <= elem->last);
360 if (key < elem->first) return -1;
375 OSet* oset = VG_(OSetGen_Create)(offsetof(Block, first),
391 vs[i]->first = i*10 + 1;
392 vs[i]->last = vs[i]->first + 2;
415 a = vs[i]->first + 0; assert( VG_(OSetGen_Contains)(oset, &a) );
416 a = vs[i]->first + 1; assert( VG_(OSetGen_Contains)(oset, &a) );
417 a = vs[i]->first
[all...]
/external/oprofile/libutil++/
H A Dsparse_array.h53 container[it->first] += it->second;
67 container[it->first] -= it->second;
82 return last->first + 1;
/external/webkit/Source/WebCore/editing/
H A DMergeIdenticalElementsCommand.cpp33 MergeIdenticalElementsCommand::MergeIdenticalElementsCommand(PassRefPtr<Element> first, PassRefPtr<Element> second) argument
34 : SimpleEditCommand(first->document())
35 , m_element1(first)
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLTexture.cpp60 // Target is finalized the first time bindTexture() is called.
261 const LevelInfo& first = m_info[0][0]; local
265 || info.width != first.width || info.height != first.height
266 || info.internalFormat != first.internalFormat || info.type != first.type)
302 const LevelInfo& first = m_info[0][0]; local
303 GC3Dint levelCount = computeLevelCount(first.width, first.height);
310 || info0.width != first
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DFontFallbackList.cpp68 ASSERT(!m_fontList[i].first->isSegmented());
69 fontCache()->releaseFontData(static_cast<const SimpleFontData*>(m_fontList[i].first));
92 return m_fontList[realizedFontIndex].first; // This fallback font is already in our list.
101 // We are obtaining this font for the first time. We keep track of the families we've looked at before
/external/webkit/Source/WebCore/svg/
H A DSVGTransformDistance.cpp114 SVGTransform SVGTransformDistance::addSVGTransforms(const SVGTransform& first, const SVGTransform& second) argument
116 ASSERT(first.type() == second.type());
120 switch (first.type()) {
124 transform.setRotate(first.angle() + second.angle(), first.rotationCenter().x() + second.rotationCenter().x(),
125 first.rotationCenter().y() + second.rotationCenter().y());
129 transform.setMatrix(first.matrix() * second.matrix());
132 float dx = first.translate().x() + second.translate().x();
133 float dy = first.translate().y() + second.translate().y();
138 FloatSize scale = first
[all...]
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
H A Dscanresults.ui.h53 bool first = true; local
55 if (first) {
56 first = false;
/external/zlib/src/contrib/puff/
H A Dpuff.c225 * - The first code for the shortest length is all zeros. Subsequent codes of
238 int first; /* first code of length len */ local
240 int index; /* index of first code of length len in symbol table */
242 code = first = index = 0;
246 if (code - count < first) /* if length len, return symbol */
247 return h->symbol[index + (code - first)];
249 first += count;
250 first <<= 1;
266 int first; /* firs local
[all...]
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java1034 * provided expectations. Possible expectations for {@code first} and {@code second} include (but
1048 * @param first the first expectation to test.
1052 public static boolean and(boolean first, boolean second) { argument
1053 return EasyMock.and(first, second);
1059 * expectations. Possible expectations for {@code first} and {@code second} include (but are not
1073 * @param first the first expectation to test.
1077 public static byte and(byte first, byte second) { argument
1078 return EasyMock.and(first, secon
1102 and(char first, char second) argument
1127 and(double first, double second) argument
1152 and(float first, float second) argument
1177 and(int first, int second) argument
1202 and(long first, long second) argument
1227 and(short first, short second) argument
1253 and(T first, T second) argument
1278 or(boolean first, boolean second) argument
1304 or(byte first, byte second) argument
1329 or(char first, char second) argument
1355 or(double first, double second) argument
1381 or(float first, float second) argument
1407 or(int first, int second) argument
1433 or(long first, long second) argument
1459 or(short first, short second) argument
1485 or(T first, T second) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dutil.rb152 range.first >= first or return false
165 range.include?( first ) or include?( range.first )
/external/bluetooth/bluedroid/stack/btu/
H A Dbtu_task.c738 INT8 first = -1; local
741 if (btu_cb.timer_reg[i].p_tle == NULL && first < 0)
742 first = i;
747 first = -1;
752 if (first >= 0 && first < BTU_MAX_REG_TIMER)
754 btu_cb.timer_reg[first].timer_cb = timer_cb;
755 btu_cb.timer_reg[first].p_tle = p_tle;
781 INT8 first = -1; local
785 if (btu_cb.event_reg[i].event_cb == NULL && first <
[all...]
/external/chromium/chrome/browser/geolocation/
H A Dgeolocation_settings_state.cc64 std::string formatted_host = GURLToFormattedHost(i->first);
75 std::string formatted_host = GURLToFormattedHost(i->first);
80 i->first.spec();
86 i->first, embedder_url_);
/external/chromium/chrome/browser/
H A Doom_priority_manager.h51 static bool CompareRendererStats(RendererStats first, RendererStats second);
/external/chromium/chrome/browser/policy/
H A Dmock_configuration_policy_provider.cc39 store->Apply(current->first, current->second->DeepCopy());
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringutils.cc135 std::string::size_type first = s.find_first_not_of(kWhitespace);
138 if (first == std::string::npos || last == std::string::npos) {
142 return s.substr(first, last - first + 1);
/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dxmlnsstack.cc119 std::string prefix(PrefixForNs(name.Namespace(), isAttr).first);
162 size_t first = last; local
164 while (first > 0) {
165 if (!IsAsciiLetter(ns[first - 1]))
167 first -= 1;
169 if (last - first > 4)
170 last = first + 3;
171 std::string candidate(AsciiLower(ns.substr(first, last - first)));
/external/clang/test/CXX/class/class.mem/
H A Dp1b.cpp1 // The first run checks that the correct errors are generated,
19 // CHECK: error: use of undeclared identifier 'first'
20 void a4(int a = first); // expected-error{{use of undeclared identifier 'first'}}
/external/e2fsprogs/lib/blkid/
H A Dlist.h127 * @head: the place to add it in the first list.
131 struct list_head *first = list->next; local
133 if (first != list) {
137 first->prev = head;
138 head->next = first;
/external/eigen/bench/btl/generic_bench/timers/
H A Dx86_timer.hh126 outfile << (*itr).first << " " << (*itr).second << endl ;
162 mean_clicks+=(*itr).second*(*itr).first;
171 return double((*_counted_clicks.begin()).first);
196 moc=(*itr).first;

Completed in 1011 milliseconds

1234567891011>>