HomeSort by relevance Sort by last modified time
    Searched refs:third (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
iterator.h 135 Iterator3 third; member in class:__gnu_parallel::iterator_triple
144 third = _third;
153 ++third;
160 { return type(first++, second++, third++); }
168 --third;
175 { return type(first--, second--, third--); }
179 { return third; }
186 third = other.third;
192 { return type(first + delta, second + delta, third + delta);
    [all...]
  /external/clang/test/Preprocessor/
c99-6_10_3_4_p9.c 15 showlist(The first, second, and third items.);
16 // CHECK: puts("The first, second, and third items.");
  /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:}{LeftParen (}{Text float}{RightParen )}{Text y}{HorizontalSpace }{TypedText third:}{LeftParen (}{Text double}{RightParen )}{Text z} (40
    [all...]
  /frameworks/ex/chips/tests/src/com/android/ex/chips/
ChipsTest.java 233 String third = (String) mTokenizer.terminateToken("THIRD"); local
235 mEditable.append(first+second+third);
236 int thirdStart = mEditable.toString().indexOf(third);
237 int thirdEnd = thirdStart + third.trim().length();
249 String third = (String) mTokenizer.terminateToken("THIRD"); local
253 mEditable.append(first+second+third+fourth+fifth);
284 String third = (String) mTokenizer.terminateToken("THIRD"); local
299 assertEquals(mEditable.toString(), first+second+third); local
308 assertEquals(mEditable.toString(), first+second+third); local
319 assertEquals(mEditable.toString(), first+second+third); local
328 assertEquals(mEditable.toString(), first+second+third); local
345 String third = (String) mTokenizer.terminateToken("THIRD"); local
424 String third = (String) mTokenizer.terminateToken("THI,RD"); local
439 assertEquals(mEditable.toString(), first+second+third); local
448 assertEquals(mEditable.toString(), first+second+third); local
465 String third = (String) mTokenizer.terminateToken("THIRD"); local
483 assertEquals(mEditable.toString(), first+second+third+third); local
492 assertEquals(mEditable.toString(), first+second+third+third); local
511 String third = (String) mTokenizer.terminateToken("THIRD"); local
524 assertEquals(mEditable.toString(), first + second + third); local
527 assertEquals(mEditable.toString(), first + third); local
553 assertEquals(mEditable.toString(), first + second + third); local
555 assertEquals(mEditable.toString(), second + third); local
581 assertEquals(mEditable.toString(), first + second + third); local
600 String third = (String) mTokenizer.terminateToken("THIRD"); local
614 assertEquals(mEditable.toString(), first + second + third); local
619 + second + third); local
651 assertEquals(mEditable.toString(), first + second + third); local
684 assertEquals(mEditable.toString(), first + second + third); local
752 String third = (String) mTokenizer.terminateToken("THIRD"); local
884 String third = (String) mTokenizer.terminateToken("THIRD"); local
    [all...]
  /external/clang/test/CXX/class/class.mem/
p1b.cpp 44 // CHECK: error: use of undeclared identifier 'third'
45 void a7(int a = third); // expected-error{{use of undeclared identifier 'third'}}
  /external/v8/test/mjsunit/regress/
regress-931.js 37 function third() { sequence += "3"; return 3; } function
40 var result = (first()[second()](third(), fourth()))
46 var result = (first()[second_prime()](third(), fourth()))
  /external/kernel-headers/original/linux/
compat.h 168 long compat_sys_semctl(int first, int second, int third, void __user *uptr);
169 long compat_sys_msgsnd(int first, int second, int third, void __user *uptr);
170 long compat_sys_msgrcv(int first, int second, int msgtyp, int third,
173 long compat_sys_shmat(int first, int second, compat_uptr_t third, int version,
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp 609 FloatPoint second, third;
631 third = vertices[i++];
632 dcur = third - second;
639 second = third; /* Remember ptr to current point. */
644 third = vertices[0]; /* Prepare for 'ConvexCheckTriple' */
645 dcur = third - second;
649 second = third; /* Remember ptr to current point. */
  /external/stlport/src/
time_facets.cpp 466 char first, second, third; local
479 third = *++fmt;
483 return (second == 'm' && third == 'y') ? time_base::dmy
486 return (second == 'd' && third == 'y') ? time_base::mdy
491 return third == 'm' ? time_base::ydm : time_base::no_order;
493 return third == 'd' ? time_base::ymd : time_base::no_order;
  /ndk/sources/cxx-stl/stlport/src/
time_facets.cpp 466 char first, second, third; local
479 third = *++fmt;
483 return (second == 'm' && third == 'y') ? time_base::dmy
486 return (second == 'd' && third == 'y') ? time_base::mdy
491 return third == 'm' ? time_base::ydm : time_base::no_order;
493 return third == 'd' ? time_base::ymd : time_base::no_order;
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTableRowElement14.js 83 Check the value of the third(index 2) TD element. Invoke the
85 Check the value of the third cell(index 2) and also check
HTMLSelectElement09.js 81 Retrieve the disabled attribute from the third SELECT element
HTMLTableRowElement03.js 81 Retrieve the third TR(1st In TFOOT) element within the document and
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLTableRowElement14.js 83 Check the value of the third(index 2) TD element. Invoke the
85 Check the value of the third cell(index 2) and also check
HTMLSelectElement09.js 81 Retrieve the disabled attribute from the third SELECT element
HTMLTableRowElement03.js 81 Retrieve the third TR(1st In TFOOT) element within the document and
  /external/webkit/Source/WebCore/rendering/
RenderObject.cpp 746 int third = (width + 1) / 3; local
758 graphicsContext->drawRect(IntRect(x1, y1, x2 - x1, third));
759 graphicsContext->drawRect(IntRect(x1, y2 - third, x2 - x1, third));
762 graphicsContext->drawRect(IntRect(x1, y1 + 1, third, y2 - y1 - 1));
763 graphicsContext->drawRect(IntRect(x2 - third, y1 + 1, third, y2 - y1 - 1));
766 graphicsContext->drawRect(IntRect(x1, y1 + 1, third, y2 - y1 - 1));
767 graphicsContext->drawRect(IntRect(x2 - third, y1 + 1, third, y2 - y1 - 1))
947 float third = thickness \/ 3.0f; local
    [all...]
  /external/icu4c/test/intltest/
tufmtts.cpp 108 TimeUnit third(*tmunit);
109 TimeUnit fourth = third;
112 assertTrue("copied and assigned are equal", (third == fourth));
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_elementremoveattributenode.js 81 Retrieve the last child of the third employee and
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_elementremoveattributenode.js 81 Retrieve the last child of the third employee and
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
attrisid01.js 78 Retrieve the third acronyms element's class attribute, whose type is not ID.
elementsetidattribute05.js 78 Invoke setIdAttribute on the third strong element with a non-existing attribute name. Verify that
elementsetidattribute06.js 78 Invoke setIdAttribute on the third strong element with an attribute name of the acronym element.
elementsetidattributens06.js 78 Invoke setIdAttributeNS on the third strong element with a non-existing attribute name. Verify that
  /external/v8/test/mjsunit/
array-sort.js 188 assertFalse(2 in x,"longlength third");
207 assertFalse(2 in x,"longlength third");
234 assertEquals(49, x[2], "sortaccessors third")

Completed in 2114 milliseconds

1 2 3 4 5 6