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

  /external/chromium_org/ui/gfx/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 13 // Create a MultiAnimation with two parts.
14 MultiAnimation::Parts parts; local
15 parts.push_back(MultiAnimation::Part(100, Tween::LINEAR));
16 parts.push_back(MultiAnimation::Part(100, Tween::EASE_OUT));
18 MultiAnimation animation(parts, MultiAnimation::GetDefaultTimerInterval());
41 // Create a MultiAnimation with two parts.
42 MultiAnimation::Parts parts; local
43 parts.push_back(MultiAnimation::Part(200, Tween::LINEAR))
64 MultiAnimation::Parts parts; local
80 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/lib/Index/
CommentToXML.cpp 82 /// Separate parts of a FullComment.
443 FullCommentParts Parts(C, Traits);
446 if (Parts.Headerfile)
447 visit(Parts.Headerfile);
448 if (Parts.Brief)
449 visit(Parts.Brief);
450 else if (Parts.FirstParagraph) {
452 visitNonStandaloneParagraphComment(Parts.FirstParagraph);
457 for (unsigned i = 0, e = Parts.MiscBlocks.size(); i != e; ++i) {
458 const Comment *C = Parts.MiscBlocks[i]
    [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
tab_utils.cc 44 TabRecordingIndicatorAnimation(const gfx::MultiAnimation::Parts& parts,
46 : MultiAnimation(parts, interval) {}
61 MultiAnimation::Parts parts; local
65 parts.push_back(MultiAnimation::Part(
72 new TabRecordingIndicatorAnimation(parts, interval));
170 gfx::MultiAnimation::Parts parts; local
172 parts.push_back(gfx::MultiAnimation::Part
    [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 370 // A key representing the parts of a register class used for forming
545 addConcatSubRegIndex(const SmallVector<CodeGenSubRegIndex *, 8> &Parts,
547 ConcatIdx.insert(std::make_pair(Parts, Idx));
  /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/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 320 SDValue Parts[2];
324 SplitInteger(Op, Parts[0], Parts[1]);
326 std::swap(Parts[0], Parts[1]);
327 IntegerToVector(Parts[0], NumElements, Ops, EltVT);
328 IntegerToVector(Parts[1], NumElements, Ops, EltVT);
338 // Make a two element vector out of the expanded parts and convert that
SelectionDAGBuilder.cpp 94 const SDValue *Parts, unsigned NumParts,
97 /// getCopyFromParts - Create a value that contains the specified legal parts
98 /// combined into the value they represent. If the parts combine to a type
103 const SDValue *Parts,
108 return getCopyFromPartsVector(DAG, DL, Parts, NumParts,
111 assert(NumParts > 0 && "No parts to assemble!");
113 SDValue Val = Parts[0];
116 // Assemble the value from multiple parts.
132 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2,
134 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2
    [all...]
LegalizeFloatTypes.cpp     [all...]
LegalizeIntegerTypes.cpp 751 SmallVector<SDValue, 8> Parts(NumRegs);
753 Parts[i] = DAG.getVAArg(RegVT, dl, Chain, Ptr, N->getOperand(2),
755 Chain = Parts[i].getValue(1);
760 std::reverse(Parts.begin(), Parts.end());
762 // Assemble the parts in the promoted type.
764 SDValue Res = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Parts[0]);
766 SDValue Part = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Parts[i]);
    [all...]
DAGCombiner.cpp     [all...]
  /external/chromium_org/chrome/browser/ui/toolbar/
wrench_icon_painter.cc 91 gfx::MultiAnimation::Parts parts;
93 parts.push_back(gfx::MultiAnimation::Part(1300, gfx::Tween::LINEAR));
95 parts.push_back(gfx::MultiAnimation::Part(1000, gfx::Tween::EASE_IN));
97 parts.push_back(gfx::MultiAnimation::Part(1300, gfx::Tween::LINEAR));
100 new gfx::MultiAnimation(parts, base::TimeDelta::FromMilliseconds(40)));
  /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/lib/Target/MSP430/
MSP430ISelLowering.cpp 324 unsigned Parts = ArgsParts[i];
326 if (!UseStack && Parts <= RegsLeft) {
328 for (unsigned j = 0; j < Parts; j++) {
337 std::reverse(B, B + Parts);
340 for (unsigned j = 0; j < Parts; j++)
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/chromium_org/ui/message_center/views/
message_center_view.cc 652 gfx::MultiAnimation::Parts parts; local
654 parts.push_back(gfx::MultiAnimation::Part(
659 parts.push_back(gfx::MultiAnimation::Part(
662 parts.push_back(gfx::MultiAnimation::Part());
666 parts.push_back(gfx::MultiAnimation::Part(
671 parts.push_back(gfx::MultiAnimation::Part());
674 parts, base::TimeDelta::FromMicroseconds(1000000 / kDefaultFrameRateHz)));
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab.cc 89 // Durations for the various parts of the mini tab title animation.
519 gfx::MultiAnimation::Parts parts; local
520 parts.push_back(
523 parts.push_back(
526 parts.push_back(
529 parts[0].start_time_ms = kMiniTitleChangeAnimationStart1MS;
530 parts[0].end_time_ms = kMiniTitleChangeAnimationEnd1MS;
531 parts[2].start_time_ms = kMiniTitleChangeAnimationStart3MS;
532 parts[2].end_time_ms = kMiniTitleChangeAnimationEnd3MS
    [all...]
  /external/bison/build-aux/
texinfo.tex     [all...]

Completed in 392 milliseconds