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

12 3 4 5 6 7 8 91011>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
stl_pair.h 68 _T1 first; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
stl_pair.h 68 _T1 first; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
stl_pair.h 68 _T1 first; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
stl_pair.h 68 _T1 first; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second)
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
stl_pair.h 68 _T1 first; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second)
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/system/include/
stl_pair.h 68 _T1 first; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second)
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/system/include/
stl_pair.h 68 _T1 first; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMAxisTraverser.java 36 * for(int nodeHandle=myTraverser.first(myContext);
50 * an axis, the first function must be used to get the first node.
57 * @return the first node in the traversal.
59 public int first(int context) method in class:DTMAxisTraverser
67 * an axis, the first function must be used to get the first node.
76 * @return the first node in the traversal.
78 public int first(int context, int extendedTypeID) method in class:DTMAxisTraverser
90 * previous traversal step. For the first traversal step, contex
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Queue.c 53 queue->first = (SEC_QElem *)SEC_OSAL_Malloc(sizeof(SEC_QElem));
54 if (queue->first == NULL)
57 SEC_OSAL_Memset(queue->first, 0, sizeof(SEC_QElem));
58 currentqelem = queue->last = queue->first;
64 while (queue->first != NULL) {
65 currentqelem = queue->first->qNext;
66 SEC_OSAL_Free((OMX_PTR)queue->first);
67 queue->first = currentqelem;
77 currentqelem->qNext = queue->first;
93 currentqelem = queue->first->qNext
    [all...]
  /system/media/mca/filterfw/java/android/filterfw/core/
RoundRobinScheduler.java 46 Filter first = null; local
51 if (first == null) {
52 // store the first available filter
53 first = filter;
65 if (first != null ) {
67 return first;
  /frameworks/base/opengl/libagl/
Tokenizer.cpp 43 if (!mRanges.size() || mRanges[0].first) {
48 // just extend the first run
50 uint32_t token = run.first + run.length;
76 if ((token >= run.first) && (token < run.first+run.length)) {
79 if ((token == run.first) || (token == run.first+run.length-1)) {
80 if (token == run.first) {
81 run.first += 1;
91 new_run.first = token+1
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemFocusablesCloseTest.java 49 final LinearLayout first = (LinearLayout) mListView.getSelectedView(); local
51 assertEquals("first item should be at top of screen",
53 first.getTop());
54 assertTrue("first button of first list item should have focus",
55 first.getChildAt(0).isFocused());
57 first.getHeight() < mListView.getHeight());
60 assertTrue("first button of second item should be on screen",
67 final LinearLayout first = (LinearLayout) mListView.getSelectedView(); local
68 final int topOfFirstItemBefore = first.getTop()
87 final LinearLayout first = (LinearLayout) mListView.getSelectedView(); local
    [all...]
  /external/elfutils/lib/
dynamicsizehash.c 37 /* First hash function: simply take the modul but prevent zero. */
76 htab->table[idx].next = htab->first;
77 htab->first = &htab->table[idx];
80 if (htab->first == NULL)
81 htab->first = htab->table[idx].next = &htab->table[idx];
84 htab->table[idx].next = htab->first->next;
85 htab->first = htab->first->next = &htab->table[idx];
99 __typeof__ (htab->first) first;
    [all...]
  /external/openssl/crypto/asn1/
t_x509a.c 70 char oidstr[80], first; local
74 first = 1;
78 if(!first) BIO_puts(out, ", ");
79 else first = 0;
87 first = 1;
91 if(!first) BIO_puts(out, ", ");
92 else first = 0;
  /frameworks/base/core/java/android/text/style/
LeadingMarginSpan.java 40 * @param first true if the request is for the first line of a paragraph,
44 public int getLeadingMargin(boolean first);
61 * @param first true if this is the first line of its paragraph
68 boolean first, Layout layout);
74 * this object is attached that the "first line of paragraph" margin
80 * attached that the "first line" margin will apply to.
81 * Note that if this returns N, the first N lines of the region,
82 * not the first N lines of each paragraph, will be given th
    [all...]
  /external/stlport/test/unit/
alg_test.cpp 229 vector<int>::iterator first; local
230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
231 CPPUNIT_ASSERT( first != intv.end() );
232 CPPUNIT_ASSERT( *first == 1 );
241 vector<int>::iterator first; local
242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
243 CPPUNIT_ASSERT( first != intv.end() );
244 CPPUNIT_ASSERT( *first == 2 );
259 vector<int>::iterator first; local
260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end())
271 vector<int>::iterator first; local
285 vector<int>::iterator first; local
299 vector<int>::iterator first; local
314 vector<int>::iterator first; local
328 vector<MyIntComparable>::iterator first; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
alg_test.cpp 229 vector<int>::iterator first; local
230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
231 CPPUNIT_ASSERT( first != intv.end() );
232 CPPUNIT_ASSERT( *first == 1 );
241 vector<int>::iterator first; local
242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
243 CPPUNIT_ASSERT( first != intv.end() );
244 CPPUNIT_ASSERT( *first == 2 );
259 vector<int>::iterator first; local
260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end())
271 vector<int>::iterator first; local
285 vector<int>::iterator first; local
299 vector<int>::iterator first; local
314 vector<int>::iterator first; local
328 vector<MyIntComparable>::iterator first; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
alg_test.cpp 229 vector<int>::iterator first; local
230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
231 CPPUNIT_ASSERT( first != intv.end() );
232 CPPUNIT_ASSERT( *first == 1 );
241 vector<int>::iterator first; local
242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
243 CPPUNIT_ASSERT( first != intv.end() );
244 CPPUNIT_ASSERT( *first == 2 );
259 vector<int>::iterator first; local
260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end())
271 vector<int>::iterator first; local
285 vector<int>::iterator first; local
299 vector<int>::iterator first; local
314 vector<int>::iterator first; local
328 vector<MyIntComparable>::iterator first; local
    [all...]
  /external/skia/src/core/
SkDeque.cpp 112 Head* first = fFront; local
115 if (NULL == first->fBegin) {
117 first->fEnd = first->fStop;
118 begin = first->fStop - fElemSize;
120 begin = first->fBegin - fElemSize;
121 if (begin < first->start()) { // no more room in this chunk
125 first = (Head*)sk_malloc_throw(size);
126 first->init(size);
127 first->fNext = fFront
178 Head* first = fFront; local
    [all...]
  /build/tools/
Android.mk 23 include $(call first-makefiles-under,$(LOCAL_PATH))
  /development/host/
Android.mk 20 include $(call first-makefiles-under,$(dir))
  /external/chromium/chrome/browser/autofill/
contact_info_unittest.cc 17 EXPECT_EQ(name.first(), ASCIIToUTF16("Virgil"));
23 EXPECT_EQ(name.first(), ASCIIToUTF16("Murray"));
29 EXPECT_EQ(name.first(), ASCIIToUTF16("Mikhail"));
36 EXPECT_EQ(name.first(), ASCIIToUTF16("Arthur"));
  /external/e2fsprogs/lib/e2p/
pf.c 56 int first = 1; local
61 if (first)
62 first = 0;
73 if (long_opt && first)
  /libcore/luni/src/main/java/java/text/
CharacterIterator.java 56 public char first(); method in interface:CharacterIterator
61 * @return the index of the first character of the iteration.
  /external/llvm/lib/Transforms/Instrumentation/
MaximumSpanningTree.h 37 if (const BasicBlock *BBX = dyn_cast<BasicBlock>(X.first.first)) {
38 if (const BasicBlock *BBY = dyn_cast<BasicBlock>(Y.first.first)) {
43 if (const BasicBlock *BBX = dyn_cast<BasicBlock>(X.first.second)) {
44 if (const BasicBlock *BBY = dyn_cast<BasicBlock>(Y.first.second)) {
77 Edge e = (*EWi).first;
79 Forest.insert(e.first);
83 // Iterate over the sorted edges, biggest first.
86 Edge e = (*EWi).first;
    [all...]

Completed in 929 milliseconds

12 3 4 5 6 7 8 91011>>