HomeSort by relevance Sort by last modified time
    Searched refs:first (Results 101 - 125 of 3119) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebPageProxyGtk.cpp 44 m_pageClient->getEditorCommandsForKeyEvent(m_keyEventQueue.first(), commandsList);
  /frameworks/base/core/java/android/view/
ContextThemeWrapper.java 90 * @param first Set to true if this is the first time a style is being
93 protected void onApplyThemeResource(Resources.Theme theme, int resid, boolean first) {
98 final boolean first = mTheme == null;
99 if (first) {
106 onApplyThemeResource(mTheme, mThemeResource, first);
  /libcore/luni/src/main/java/java/util/
SortedSet.java 41 * Returns the first element in this {@code SortedSet}. The first element
44 * @return the first element.
48 public E first(); method in interface:SortedSet
  /ndk/tests/device/test-gnustl-full/unit/
equal_test.cpp 45 CPPUNIT_ASSERT( (range.first - numbers) == 4 );
57 CPPUNIT_ASSERT( (range.first - v.begin()) == 6 );
59 for (; range.first != range.second; ++range.first)
60 CPPUNIT_ASSERT( *range.first == 2 );
63 CPPUNIT_ASSERT( range.first == range.second );
64 CPPUNIT_ASSERT( range.first == v.end() );
96 CPPUNIT_ASSERT( (range.first - chars) == 18 );
98 for (; range.first != range.second; ++range.first)
    [all...]
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/
equal_test.cpp 45 CPPUNIT_ASSERT( (range.first - numbers) == 4 );
57 CPPUNIT_ASSERT( (range.first - v.begin()) == 6 );
59 for (; range.first != range.second; ++range.first)
60 CPPUNIT_ASSERT( *range.first == 2 );
63 CPPUNIT_ASSERT( range.first == range.second );
64 CPPUNIT_ASSERT( range.first == v.end() );
96 CPPUNIT_ASSERT( (range.first - chars) == 18 );
98 for (; range.first != range.second; ++range.first)
    [all...]
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;
  /prebuilt/
Android.mk 18 include $(call first-makefiles-under, \
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/bin_search_tree_/
cond_key_dtor_entry_dealtor.hpp 69 m_p_nd->m_value.first.~Key();
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/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);)
  /prebuilt/ndk/android-ndk-r5/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();
  /prebuilt/ndk/android-ndk-r5/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);)
  /prebuilt/ndk/android-ndk-r6/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();
  /prebuilt/ndk/android-ndk-r6/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);)
  /sdk/common/src/com/android/util/
Pair.java 27 * @param <S> The type of the first value
35 private Pair(S first, T second) {
36 this.mFirst = first;
41 * Return the first item in the pair
43 * @return the first item in the pair
61 * @param first the first item to store in the pair
63 * @param <S> the type of the first item
67 public static <S,T> Pair<S,T> of(S first, T second) {
68 return new Pair<S,T>(first,second)
    [all...]
  /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...]
  /system/media/mca/filterfw/java/android/filterfw/core/
OneShotScheduler.java 54 Filter first = null; local
55 // return the first filter that is not scheduled before.
69 if (first == filter) {
72 // save the first scheduled one
73 if (first == null) first = filter;
  /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/VMCore/
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/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...]
  /libcore/luni/src/main/java/libcore/icu/
ICU.java 69 int first = localeName.indexOf('_'); local
70 int second = localeName.indexOf('_', first + 1);
71 if (first == -1) {
76 return new Locale(localeName.substring(0, first), localeName.substring(first + 1));
79 return new Locale(localeName.substring(0, first), localeName.substring(first + 1, second), localeName.substring(second + 1));
  /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 { }
111 // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType id}{Informative first:}{TypedText second2:}{Text (float)y2}{HorizontalSpace }{TypedText third:}{Text (double)z} (35)
112 // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType void *}{Informative first:}{TypedText second3:}{Text (float)y3}{HorizontalSpace }{TypedText third:}{Text (double)z} (35)
113 // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType int}{Informative first:}{TypedText second:}{Text (float)y}{HorizontalSpace }{TypedText third:}{Text (double)z} (8)
121 // 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)
123 // CHECK-CCC: ObjCInstanceMethodDecl:{TypedText first}{TypedText :}{LeftParen (}{Text int}{RightParen )}{Text x}{HorizontalSpace }{TypedText second2:}{ (…)
    [all...]

Completed in 660 milliseconds

1 2 3 45 6 7 8 91011>>