HomeSort by relevance Sort by last modified time
    Searched refs:first (Results 276 - 300 of 4330) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
constructor_destructor_no_store_hash_fn_imps.hpp 52 _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);)
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
cond_key_dtor_entry_dealtor.hpp 69 m_p_nd->m_value.first.~Key();
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
constructor_destructor_no_store_hash_fn_imps.hpp 52 _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/bin_search_tree_/
cond_key_dtor_entry_dealtor.hpp 69 m_p_nd->m_value.first.~Key();
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/gp_hash_table_map_/
constructor_destructor_no_store_hash_fn_imps.hpp 52 _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/bin_search_tree_/
cond_key_dtor_entry_dealtor.hpp 69 m_p_nd->m_value.first.~Key();
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/gp_hash_table_map_/
constructor_destructor_no_store_hash_fn_imps.hpp 52 _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/gp_hash_table_map_/
constructor_destructor_no_store_hash_fn_imps.hpp 52 _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);)
  /system/extras/tests/lib/testUtil/
testUtil.c 101 // second, is later than the time pointed to by first.
102 struct timespec tsDelta(const struct timespec *first,
107 assert(first != NULL);
109 assert(first->tv_nsec >= 0 && first->tv_nsec < nSecsPerSec);
111 rv.tv_sec = second->tv_sec - first->tv_sec;
112 if (second->tv_nsec >= first->tv_nsec) {
113 rv.tv_nsec = second->tv_nsec - first->tv_nsec;
115 rv.tv_nsec = (second->tv_nsec + nSecsPerSec) - first->tv_nsec;
124 // second, is later than the time pointed to by first
    [all...]
  /external/chromium/base/memory/
scoped_vector.h 65 // Lets the ScopedVector take ownership of elements in [first,last).
67 void insert(iterator position, InputIterator first, InputIterator last) {
68 v.insert(position, first, last);
76 iterator erase(iterator first, iterator last) {
77 STLDeleteContainerPointers(first, last);
78 return v.erase(first, last);
86 // Like |erase()|, but doesn't delete the elements in [first, last).
87 iterator weak_erase(iterator first, iterator last) {
88 return v.erase(first, last);
  /external/llvm/lib/IR/
SymbolTableListTraitsImpl.h 88 ilist_iterator<ValueSubClass> first,
99 for (; first != last; ++first) {
100 ValueSubClass &V = *first;
111 for (; first != last; ++first)
112 first->setParent(NewIP);
  /external/llvm/utils/TableGen/
SequenceToOffsetTable.h 74 if (I != Seqs.end() && isSuffix(Seq, I->first))
80 if (I != Seqs.begin() && isSuffix((--I)->first, Seq))
94 Entries += I->first.size() + 1;
102 assert(I != Seqs.end() && isSuffix(Seq, I->first) &&
103 "get() called with sequence that wasn't added first");
104 return I->second + (I->first.size() - Seq.size());
116 for (typename SeqT::const_iterator SI = I->first.begin(),
117 SE = I->first.end(); SI != SE; ++SI) {
  /external/stlport/test/unit/
istmit_test.cpp 91 2, back_inserter(chars)).first,
92 2, back_inserter(chars)).first;
141 itr = copy_n(itr, 0, back_inserter(ints)).first;
143 itr = copy_n(itr, -1, back_inserter(ints)).first;
145 itr = copy_n(itr, 2, back_inserter(ints)).first;
149 itr = copy_n(itr, 2, back_inserter(ints)).first;
153 itr = copy_n(itr, 2, back_inserter(ints)).first;
  /external/webkit/Source/JavaScriptCore/wtf/
BloomFilter.h 85 uint8_t& first = firstSlot(hash); local
87 if (LIKELY(first < maximumCount()))
88 ++first;
96 uint8_t& first = firstSlot(hash); local
98 ASSERT(first);
101 if (LIKELY(first < maximumCount()))
102 --first;
  /external/webkit/Source/WebCore/rendering/
RenderObjectChildList.cpp 50 firstChild()->remove(); // List markers are owned by their enclosing list and so don't get destroyed by this container. Similarly, first letters are destroyed by their remaining text fragment.
270 RenderObject* first = const_cast<RenderObject*>(owner); local
272 first = first->firstChild();
274 while (first && (first->isListMarker() || (first->isRenderInline() && first->isRunIn())))
275 first = first->nextInPreOrderAfterChildren(owner)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/map/map.modifiers/
emplace_hint.pass.cpp 34 assert(m.begin()->first == 0);
40 assert(next(m.begin())->first == 1);
46 assert(next(m.begin())->first == 1);
58 assert(m.begin()->first == 2);
65 assert(m.begin()->first == 1);
72 assert(m.begin()->first == 1);
82 assert(m.begin()->first == 2);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multimap/multimap.modifiers/
emplace.pass.cpp 34 assert(m.begin()->first == 0);
40 assert(next(m.begin())->first == 1);
46 assert(next(m.begin(), 2)->first == 1);
58 assert(m.begin()->first == 2);
64 assert(m.begin()->first == 1);
70 assert(r->first == 1);
80 assert(m.begin()->first == 2);
emplace_hint.pass.cpp 34 assert(m.begin()->first == 0);
40 assert(next(m.begin())->first == 1);
46 assert(next(m.begin(), 2)->first == 1);
58 assert(m.begin()->first == 2);
65 assert(m.begin()->first == 1);
72 assert(r->first == 1);
82 assert(m.begin()->first == 2);
  /ndk/tests/device/test-gnustl-full/unit/
istmit_test.cpp 91 2, back_inserter(chars)).first,
92 2, back_inserter(chars)).first;
141 itr = copy_n(itr, 0, back_inserter(ints)).first;
143 itr = copy_n(itr, -1, back_inserter(ints)).first;
145 itr = copy_n(itr, 2, back_inserter(ints)).first;
149 itr = copy_n(itr, 2, back_inserter(ints)).first;
153 itr = copy_n(itr, 2, back_inserter(ints)).first;
  /ndk/tests/device/test-stlport/unit/
istmit_test.cpp 91 2, back_inserter(chars)).first,
92 2, back_inserter(chars)).first;
141 itr = copy_n(itr, 0, back_inserter(ints)).first;
143 itr = copy_n(itr, -1, back_inserter(ints)).first;
145 itr = copy_n(itr, 2, back_inserter(ints)).first;
149 itr = copy_n(itr, 2, back_inserter(ints)).first;
153 itr = copy_n(itr, 2, back_inserter(ints)).first;
  /development/ndk/samples/two-libs/jni/
Android.mk 23 # first lib, which will be built statically
27 LOCAL_MODULE := libtwolib-first
28 LOCAL_SRC_FILES := first.c
32 # second lib, which will depend on and include the first one
39 LOCAL_STATIC_LIBRARIES := libtwolib-first
  /external/clang/test/Index/
complete-method-decls.m 46 - (int)first:(int)x second:(float)y third:(double)z;
47 - (id)first:(int)xx second2:(float)y2 third:(double)z;
48 - (void*)first:(int)xxx second3:(float)y3 third:(double)z;
52 - (int)first:(int)x second2:(float)y third:(double)z;
56 - (int)first:(int)x second2:(float)y third:(double)z { }
115 // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType id}{Informative first:}{TypedText second2:}{Text (float)y2}{HorizontalSpace }{TypedText third:}{Text (double)z} (35)
116 // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType void *}{Informative first:}{TypedText second3:}{Text (float)y3}{HorizontalSpace }{TypedText third:}{Text (double)z} (35)
117 // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType int}{Informative first:}{TypedText second:}{Text (float)y}{HorizontalSpace }{TypedText third:}{Text (double)z} (8)
125 // CHECK-CCB: ObjCInstanceMethodDecl:{LeftParen (}{Text int}{RightParen )}{TypedText first}{TypedText :}{LeftParen (}{Text int}{RightParen )}{Text x}{HorizontalSpace }{TypedText second2:}{LeftParen (}{Text float}{RightParen )}{Text y}{HorizontalSpace }{TypedText third:}{LeftParen (}{Text double}{RightParen )}{Text z} (40)
127 // CHECK-CCC: ObjCInstanceMethodDecl:{TypedText first}{TypedText :}{LeftParen (}{Text int}{RightParen )}{Text x}{HorizontalSpace }{TypedText second2:}{ (…)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.alg/re.alg.search/
awk.pass.cpp 14 // regex_search(BidirectionalIterator first, BidirectionalIterator last,
33 assert(m.prefix().first == s);
34 assert(m.prefix().second == m[0].first);
36 assert(m.suffix().first == m[0].second);
48 assert(m.prefix().first == s);
49 assert(m.prefix().second == m[0].first);
51 assert(m.suffix().first == m[0].second);
70 assert(m.prefix().first == s);
71 assert(m.prefix().second == m[0].first);
73 assert(m.suffix().first == m[0].second)
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGRootInlineBox.cpp 232 static inline void swapItemsInVector(Vector<float>& firstVector, Vector<float>& lastVector, unsigned first, unsigned last)
234 float temp = firstVector.at(first);
235 firstVector.at(first) = lastVector.at(last);
249 SVGTextLayoutAttributes*& first, SVGTextLayoutAttributes*& last)
251 first = 0;
257 if (!first && firstContext == current.context())
258 first = &current;
261 if (first && last)
265 ASSERT(first);
269 static inline void reverseInlineBoxRangeAndValueListsIfNeeded(void* userData, Vector<InlineBox*>::iterator first, Vector<InlineBox*>::iterator last
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmContext.h 41 void setupArraysPointers(GLESConversionArrays& fArrs,GLint first,GLsizei count,GLenum type,const GLvoid* indices,bool direct);
42 void drawPointsArrs(GLESConversionArrays& arrs,GLint first,GLsizei count);
55 bool needConvert(GLESConversionArrays& fArrs,GLint first,GLsizei count,GLenum type,const GLvoid* indices,bool direct,GLESpointer* p,GLenum array_id);
57 void setupArrayPointerHelper(GLESConversionArrays& fArrs,GLint first,GLsizei count,GLenum type,const GLvoid* indices,bool direct,GLenum array_id,GLESpointer* p);
60 void drawPointsData(GLESConversionArrays& arrs,GLint first,GLsizei count,GLenum type,const GLvoid* indices_in,bool isElemsDraw);

Completed in 1149 milliseconds

<<11121314151617181920>>