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

  /external/chromium_org/ui/base/animation/
multi_animation.h 16 // To create a MultiAnimation pass in the parts, invoke Start() and the delegate
46 typedef std::vector<Part> Parts;
48 MultiAnimation(const Parts& parts, base::TimeDelta timer_interval);
76 // The parts that make up the animation.
77 const Parts parts_;
79 // Total time of all the parts.
multi_animation_unittest.cc 12 // Create a MultiAnimation with two parts.
13 MultiAnimation::Parts parts; local
14 parts.push_back(MultiAnimation::Part(100, Tween::LINEAR));
15 parts.push_back(MultiAnimation::Part(100, Tween::EASE_OUT));
17 MultiAnimation animation(parts, MultiAnimation::GetDefaultTimerInterval());
40 // Create a MultiAnimation with two parts.
41 MultiAnimation::Parts parts; local
42 parts.push_back(MultiAnimation::Part(200, Tween::LINEAR))
63 MultiAnimation::Parts parts; local
79 MultiAnimation::Parts parts; local
    [all...]
multi_animation.cc 15 static int TotalTime(const MultiAnimation::Parts& parts) {
17 for (size_t i = 0; i < parts.size(); ++i) {
18 DCHECK(parts[i].end_time_ms - parts[i].start_time_ms >= parts[i].time_ms);
19 time_ms += parts[i].time_ms;
24 MultiAnimation::MultiAnimation(const Parts& parts,
27 parts_(parts),
    [all...]
  /external/clang/tools/libclang/
CXComment.cpp 414 /// Separate parts of a FullComment.
770 FullCommentParts Parts(C, Traits);
773 if (Parts.Headerfile)
774 visit(Parts.Headerfile);
775 if (Parts.Brief)
776 visit(Parts.Brief);
777 else if (Parts.FirstParagraph) {
779 visitNonStandaloneParagraphComment(Parts.FirstParagraph);
784 for (unsigned i = 0, e = Parts.MiscBlocks.size(); i != e; ++i) {
785 const Comment *C = Parts.MiscBlocks[i]
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 72 std::vector<Record*> Parts =
74 if (!Parts.empty()) {
75 if (Parts.size() < 2)
79 for (unsigned i = 0, e = Parts.size(); i != e; ++i)
80 IdxParts.push_back(RegBank.getSubRegIdx(Parts[i]));
350 SmallVector<CodeGenSubRegIndex*, 8> Parts;
352 Parts.push_back(getSubRegIndex(SR->ExplicitSubRegs[j]));
354 // Offer this as an existing spelling for the concatenation of Parts.
355 RegBank.addConcatSubRegIndex(Parts, ExplicitSubRegIndices[i]);
439 SmallVector<CodeGenSubRegIndex*, 8> Parts(1, I->first)
    [all...]
CodeGenRegisters.h 369 // A key representing the parts of a register class used for forming
547 addConcatSubRegIndex(const SmallVector<CodeGenSubRegIndex *, 8> &Parts,
549 ConcatIdx.insert(std::make_pair(Parts, Idx));
  /external/chromium/chrome/browser/ui/views/location_bar/
suggested_text_view.cc 71 ui::MultiAnimation::Parts parts; local
72 parts.push_back(ui::MultiAnimation::Part(
74 parts.push_back(ui::MultiAnimation::Part(
76 ui::MultiAnimation* animation = new ui::MultiAnimation(parts);
  /external/chromium_org/third_party/re2/doc/
mksyntaxgo 32 Parts of the syntax can be disabled by passing alternate flags to Parse.
  /external/regex-re2/doc/
mksyntaxgo 32 Parts of the syntax can be disabled by passing alternate flags to Parse.
  /external/chromium_org/ash/launcher/
tabbed_launcher_button.cc 67 ui::MultiAnimation::Parts animation_parts;
  /external/chromium_org/chrome/browser/ui/toolbar/
wrench_icon_painter.cc 91 ui::MultiAnimation::Parts parts;
93 parts.push_back(ui::MultiAnimation::Part(1300, ui::Tween::LINEAR));
95 parts.push_back(ui::MultiAnimation::Part(1000, ui::Tween::EASE_IN));
97 parts.push_back(ui::MultiAnimation::Part(1300, ui::Tween::LINEAR));
100 new ui::MultiAnimation(parts, base::TimeDelta::FromMilliseconds(40)));
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 314 // Make a two element vector out of the expanded parts and convert that
324 SDValue Parts[2];
325 GetExpandedOp(N->getOperand(0), Parts[0], Parts[1]);
328 std::swap(Parts[0], Parts[1]);
330 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, Parts, 2);
SelectionDAGBuilder.cpp 92 const SDValue *Parts, unsigned NumParts,
95 /// getCopyFromParts - Create a value that contains the specified legal parts
96 /// combined into the value they represent. If the parts combine to a type
101 const SDValue *Parts,
106 return getCopyFromPartsVector(DAG, DL, Parts, NumParts,
109 assert(NumParts > 0 && "No parts to assemble!");
111 SDValue Val = Parts[0];
114 // Assemble the value from multiple parts.
130 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2,
132 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2
    [all...]
LegalizeFloatTypes.cpp     [all...]
LegalizeIntegerTypes.cpp 723 SmallVector<SDValue, 8> Parts(NumRegs);
725 Parts[i] = DAG.getVAArg(RegVT, dl, Chain, Ptr, N->getOperand(2),
727 Chain = Parts[i].getValue(1);
732 std::reverse(Parts.begin(), Parts.end());
734 // Assemble the parts in the promoted type.
736 SDValue Res = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Parts[0]);
738 SDValue Part = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Parts[i]);
    [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Support/
APFloat.cpp 78 /* A tight upper bound on number of parts required to hold the value
83 However, whilst the result may require only this many parts,
87 requires two parts to hold the single-part result). So we add an
341 lostFractionThroughTruncation(const integerPart *parts,
347 lsb = APInt::tcLSB(parts, partCount);
355 APInt::tcExtractBit(parts, bits - 1))
363 shiftRight(integerPart *dst, unsigned int parts, unsigned int bits)
367 lost_fraction = lostFractionThroughTruncation(dst, parts, bits);
369 APInt::tcShiftRight(dst, parts, bits);
411 ulpsFromBoundary(const integerPart *parts, unsigned int bits, bool isNearest
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
tab.cc 67 // Durations for the various parts of the mini tab title animation.
111 ui::MultiAnimation::Parts parts; local
112 parts.push_back(
115 parts.push_back(
118 parts.push_back(
121 parts[0].start_time_ms = kMiniTitleChangeAnimationStart1MS;
122 parts[0].end_time_ms = kMiniTitleChangeAnimationEnd1MS;
123 parts[2].start_time_ms = kMiniTitleChangeAnimationStart3MS;
124 parts[2].end_time_ms = kMiniTitleChangeAnimationEnd3MS
    [all...]
  /external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_views.cc 109 // A dimmer text color used in various parts of the dialog. TODO(estade): should
118 typedef ui::MultiAnimation::Parts Parts;
653 Parts parts; local
655 parts.push_back(Part(kSplashDisplayDurationMs, ui::Tween::ZERO));
657 parts.push_back(Part(kSplashFadeOutDurationMs, ui::Tween::EASE_IN));
659 parts.push_back(Part(kSplashFadeInDialogDurationMs, ui::Tween::EASE_OUT));
661 new ui::MultiAnimation(parts,
    [all...]
  /external/chromium_org/ui/message_center/views/
message_center_view.cc 686 ui::MultiAnimation::Parts parts; local
688 parts.push_back(ui::MultiAnimation::Part(
693 parts.push_back(ui::MultiAnimation::Part(
696 parts.push_back(ui::MultiAnimation::Part());
700 parts.push_back(ui::MultiAnimation::Part(
705 parts.push_back(ui::MultiAnimation::Part());
708 parts, base::TimeDelta::FromMicroseconds(1000000 / kDefaultFrameRateHz)));
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_gtk.cc 402 ui::MultiAnimation::Parts parts; local
403 parts.push_back(ui::MultiAnimation::Part(
405 parts.push_back(ui::MultiAnimation::Part(
407 instant_animation_.reset(new ui::MultiAnimation(parts));
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab.cc 204 // Durations for the various parts of the mini tab title animation.
602 ui::MultiAnimation::Parts parts; local
603 parts.push_back(
606 parts.push_back(
609 parts.push_back(
612 parts[0].start_time_ms = kMiniTitleChangeAnimationStart1MS;
613 parts[0].end_time_ms = kMiniTitleChangeAnimationEnd1MS;
614 parts[2].start_time_ms = kMiniTitleChangeAnimationStart3MS;
615 parts[2].end_time_ms = kMiniTitleChangeAnimationEnd3MS
    [all...]
  /external/chromium_org/chrome_frame/
CFInstance.js 5 // Parts Copyright 2005-2009, the Dojo Foundation. Used under the terms of the
236 var parts = _getParts(arr, thisObject, callback);
237 // parts has a structure of:
243 arr = parts[0];
245 parts[2].call( parts[1], arr[i], i, arr );
    [all...]
  /external/bison/build-aux/
texinfo.tex     [all...]

Completed in 3287 milliseconds