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

1 2 3 4 5 6 7

  /prebuilts/gcc/linux-x86/host/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 { }
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:}{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 240 String third = (String) mTokenizer.terminateToken("THIRD"); local
242 mEditable.append(first+second+third);
243 int thirdStart = mEditable.toString().indexOf(third);
244 int thirdEnd = thirdStart + third.trim().length();
256 String third = (String) mTokenizer.terminateToken("THIRD"); local
260 mEditable.append(first+second+third+fourth+fifth);
291 String third = (String) mTokenizer.terminateToken("THIRD"); local
306 assertEquals(mEditable.toString(), first+second+third); local
315 assertEquals(mEditable.toString(), first+second+third); local
326 assertEquals(mEditable.toString(), first+second+third); local
335 assertEquals(mEditable.toString(), first+second+third); local
352 String third = (String) mTokenizer.terminateToken("THIRD"); local
431 String third = (String) mTokenizer.terminateToken("THI,RD"); local
446 assertEquals(mEditable.toString(), first+second+third); local
455 assertEquals(mEditable.toString(), first+second+third); local
472 String third = (String) mTokenizer.terminateToken("THIRD"); local
490 assertEquals(mEditable.toString(), first+second+third+third); local
499 assertEquals(mEditable.toString(), first+second+third+third); local
518 String third = (String) mTokenizer.terminateToken("THIRD"); local
531 assertEquals(mEditable.toString(), first + second + third); local
534 assertEquals(mEditable.toString(), first + third); local
560 assertEquals(mEditable.toString(), first + second + third); local
562 assertEquals(mEditable.toString(), second + third); local
588 assertEquals(mEditable.toString(), first + second + third); local
607 String third = (String) mTokenizer.terminateToken("THIRD"); local
621 assertEquals(mEditable.toString(), first + second + third); local
626 + second + third); local
658 assertEquals(mEditable.toString(), first + second + third); local
691 assertEquals(mEditable.toString(), first + second + third); local
759 String third = (String) mTokenizer.terminateToken("THIRD"); local
891 String third = (String) mTokenizer.terminateToken("THIRD"); local
    [all...]
  /external/valgrind/main/gdbserver_tests/
mcbreak.stdout.exp 3 pid .... Thread .... third
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/overdraw/gen/test/pkg/
R.java.txt 21 public static final int third=0x7f030004;
  /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/antlr/antlr-3.4/runtime/JavaScript/build/
README 7 Before building the JavaScript target you will need to download a few third
12 * Move ant-contrib-1.0b3.jar from the unzipped directory to runtime/JavaScript/third/
16 * Move compiler.jar from the unzipped directory to runtime/JavaScript/third/
20 * Move the unzipped folder to runtime/JavaScript/third/jsdoc-toolkit
  /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

Completed in 660 milliseconds

1 2 3 4 5 6 7