Searched defs:third (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableDoubleTest.cpp76 RefPtrWillBeRawPtr<AnimatableDouble> third = AnimatableDouble::create(3); local
79 EXPECT_DOUBLE_EQ(0.75, AnimatableValue::distance(second.get(), third.get()));
80 EXPECT_DOUBLE_EQ(4.5, AnimatableValue::distance(third.get(), first.get()));
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-931.js37 function third() { sequence += "3"; return 3; } function
40 var result = (first()[second()](third(), fourth()))
46 var result = (first()[second_prime()](third(), fourth()))
/external/chromium_org/v8/test/cctest/
H A Dtest-bignum.cc983 Bignum third; local
1018 third.AssignUInt16(0xFFF);
1019 bignum.AddBignum(third);
1052 third.AssignUInt16(0xFFF);
1053 other.SubtractBignum(third);
/external/lldb/test/functionalities/data-formatter/data-formatter-named-summaries/
H A Dmain.cpp50 Third *third = new Third(96,'E'); local
/external/lldb/test/lang/c/stepping/
H A Dmain.c43 int complex (int first, int second, int third) argument
45 return first + second + third; // Step in targetting complex should stop here
/external/chromium_org/cc/layers/
H A Dlayer_iterator_unittest.cc106 scoped_refptr<TestLayer> third = TestLayer::Create(); local
111 root_layer->AddChild(third);
126 EXPECT_COUNT(third, -1, -1, 1);
/external/chromium_org/skia/ext/
H A Dpixel_ref_utils_unittest.cc391 SkBitmap third; local
392 CreateBitmap(gfx::Size(50, 50), "discardable", &third);
407 canvas->drawBitmap(third, 25, 0);
452 SkBitmap third; local
453 CreateBitmap(gfx::Size(50, 50), "discardable", &third);
473 third, SkRect::MakeXYWH(-30, -20, 100, 100), &first_paint);
503 SkBitmap third; local
504 CreateBitmap(gfx::Size(50, 50), "discardable", &third);
521 canvas->drawSprite(third, 25, 0);
/external/chromium_org/third_party/skia/src/core/
H A DSkRecordPattern.h100 // - first, second, and third return the data stored by their respective matchers in the pattern.
126 // or third matcher in this pattern. Add as needed for longer patterns.
130 template <typename T> T* third() { return fTail.fTail.fHead.get(); } function in class:SkRecords::Cons
159 // All Cons are friends with each other. This lets first, second, and third work.
/external/skia/src/core/
H A DSkRecordPattern.h100 // - first, second, and third return the data stored by their respective matchers in the pattern.
126 // or third matcher in this pattern. Add as needed for longer patterns.
130 template <typename T> T* third() { return fTail.fTail.fHead.get(); } function in class:SkRecords::Cons
159 // All Cons are friends with each other. This lets first, second, and third work.
/external/chromium_org/net/spdy/
H A Dhpack_decoder_test.cc472 string third = a2b_hex("30858c8b844088571c5cdb737b2faf89" local
474 header_set = DecodeBlockExpectingSuccess(third);
643 string third = a2b_hex("84844393d6dbb29884de2a7188050620" local
649 header_set = DecodeBlockExpectingSuccess(third);
/external/stlport/src/
H A Dtime_facets.cpp466 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/chromium_org/chrome/browser/media_galleries/
H A Dmedia_galleries_scan_result_controller_unittest.cc407 MediaGalleryPrefId third = AddScanResult("third", 2, 2, 2); local
420 EXPECT_EQ(third, results[2].pref_info.pref_id);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILISelLowering.cpp359 SDValue third; local
393 third = Op.getOperand(2);
394 if (third.getOpcode() != ISD::UNDEF) {
400 third,
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILISelLowering.cpp359 SDValue third; local
393 third = Op.getOperand(2);
394 if (third.getOpcode() != ISD::UNDEF) {
400 third,
/external/chromium_org/sync/engine/
H A Dsync_scheduler_unittest.cc1061 const TimeDelta third = TimeDelta::FromMilliseconds(3); local
1068 EXPECT_CALL(*delay(), GetDelay(second)).WillOnce(Return(third))
1070 EXPECT_CALL(*delay(), GetDelay(third)).WillOnce(Return(fourth))
1084 EXPECT_GE(times[2] - times[1], third);
/external/icu/icu4c/source/test/intltest/
H A Dmeasfmttest.cpp789 Measure third[] = { local
819 third,
820 LENGTHOF(third),
/external/vixl/src/a64/
H A Ddebugger-a64.cc1533 Token* third = args[3]; local
1534 if (!second->IsFormat() || !third->IsInteger()) {
1538 count = IntegerToken::Cast(third);
/external/chromium_org/v8/src/
H A Dunicode.cc222 byte third = str[2] ^ 0x80; local
223 if (third & 0xC0) {
228 uchar code_point = ((((first << 6) | second) << 6) | third)
247 uchar code_point = (((((first << 6 | second) << 6) | third) << 6) | fourth)
/external/chromium_org/third_party/libxml/src/
H A DHTMLparser.c4957 * @third: the next char to lookup or zero
4960 * Try to find if a sequence (first, next, third) or just (first next) or
4972 xmlChar next, xmlChar third, int iscomment,
5002 if (third)
5042 if (third != 0) {
5043 if ((buf[base + 1] != next) || (buf[base + 2] != third))
5055 else if (third == 0)
5062 first, next, third, base);
5073 else if (third == 0)
5079 third);
4971 htmlParseLookupSequence(htmlParserCtxtPtr ctxt, xmlChar first, xmlChar next, xmlChar third, int iscomment, int ignoreattrval) argument
[all...]
H A Dparser.c10494 * @third: the next char to lookup or zero
10496 * Try to find if a sequence (first, next, third) or just (first next) or
10507 xmlChar next, xmlChar third) {
10526 if (third) len -= 2;
10530 if (third != 0) {
10532 (buf[base + 2] != third)) continue;
10542 else if (third == 0)
10549 first, next, third, base);
10559 else if (third == 0)
10564 "PP: lookup '%c%c%c' failed\n", first, next, third);
10506 xmlParseLookupSequence(xmlParserCtxtPtr ctxt, xmlChar first, xmlChar next, xmlChar third) argument
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp51 // Same thing in for stmt first clause (when expr) and third clause.
1528 // 1) The last statement in the loop body and the third expression in the
1588 FullExprArg third,
1608 CheckBreakContinueBinding(third.get());
1610 CheckForLoopConditionalStatement(*this, second.get(), third.get(), Body);
1611 CheckForRedundantIteration(*this, third.get(), Body);
1622 Expr *Third = third.release().getAs<Expr>();
1586 ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, Stmt *First, FullExprArg second, Decl *secondVar, FullExprArg third, SourceLocation RParenLoc, Stmt *Body) argument
/external/libxml2/
H A DHTMLparser.c5032 * @third: the next char to lookup or zero
5035 * Try to find if a sequence (first, next, third) or just (first next) or
5047 xmlChar next, xmlChar third, int iscomment,
5077 if (third)
5117 if (third != 0) {
5118 if ((buf[base + 1] != next) || (buf[base + 2] != third))
5130 else if (third == 0)
5137 first, next, third, base);
5148 else if (third == 0)
5154 third);
5046 htmlParseLookupSequence(htmlParserCtxtPtr ctxt, xmlChar first, xmlChar next, xmlChar third, int iscomment, int ignoreattrval) argument
[all...]
H A Dparser.c10900 * @third: the next char to lookup or zero
10902 * Try to find if a sequence (first, next, third) or just (first next) or
10913 xmlChar next, xmlChar third) {
10932 if (third) len -= 2;
10936 if (third != 0) {
10938 (buf[base + 2] != third)) continue;
10948 else if (third == 0)
10955 first, next, third, base);
10965 else if (third == 0)
10970 "PP: lookup '%c%c%c' failed\n", first, next, third);
10912 xmlParseLookupSequence(xmlParserCtxtPtr ctxt, xmlChar first, xmlChar next, xmlChar third) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 868 milliseconds

12