HomeSort by relevance Sort by last modified time
    Searched defs:Parts (Results 1 - 7 of 7) 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.
  /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);
LegalizeFloatTypes.cpp     [all...]
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...]
  /external/llvm/include/llvm/TableGen/
Record.h     [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...]
  /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...]

Completed in 589 milliseconds