HomeSort by relevance Sort by last modified time
    Searched defs:Constraints (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/llvm/include/llvm/CodeGen/
PBQPRAConstraint.h 38 /// constraints (e.g. Spill-costs, interference, coalescing).
49 /// Constraints added to this list will be applied, in the order that they are
54 for (auto &C : Constraints)
60 Constraints.push_back(std::move(C));
63 std::vector<std::unique_ptr<PBQPRAConstraint>> Constraints;
  /external/guava/guava/src/com/google/common/collect/
Constraints.java 37 final class Constraints {
38 private Constraints() {}
57 /** @see Constraints#constrainedCollection */
96 /** @see Constraints#constrainedSet */
134 /** @see Constraints#constrainedSortedSet */
186 /** @see Constraints#constrainedList */
231 /** @see Constraints#constrainedList */
254 /** @see Constraints#constrainedListIterator */
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/
question.py 279 class Constraints(OrderedContent):
280 template = '<Constraints>%(content)s</Constraints>'
283 content = super(Constraints, self).get_as_xml()
349 def __init__(self, default=None, constraints=None, num_lines=None):
351 if constraints is None:
352 self.constraints = Constraints()
354 self.constraints = Constraints(constraints
    [all...]
  /external/clang/lib/Parse/
ParseStmtAsm.cpp 573 SmallVector<std::string, 4> Constraints;
576 NumInputs, OpExprs, Constraints, Clobbers,
602 ConstraintRefs[i] = StringRef(Constraints[i]);
681 ExprVector Constraints;
690 Constraints, Exprs, AsmString.get(),
701 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs))
717 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs))
721 assert(Names.size() == Constraints.size() &&
722 Constraints.size() == Exprs.size() && "Input operand size mismatch!");
750 Constraints, Exprs, AsmString.get(), Clobbers, T.getCloseLocation())
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 144 MultiExprArg constraints, MultiExprArg Exprs,
148 StringLiteral **Constraints =
149 reinterpret_cast<StringLiteral**>(constraints.data());
163 Constraints, Exprs.data(), AsmString, NumClobbers, Clobbers, RParenLoc);
168 StringLiteral *Literal = Constraints[i];
247 StringLiteral *Literal = Constraints[i];
278 // Only allow void types for memory constraints.
349 NumInputs, Names, Constraints, Exprs.data(),
361 // Validate constraints and modifiers.
386 StringLiteral *Literal = Constraints[ConstraintIdx]
    [all...]
TreeTransform.h     [all...]
  /external/llvm/include/llvm/IR/
InlineAsm.h 46 std::string AsmString, Constraints;
53 const std::string &Constraints, bool hasSideEffects,
65 StringRef Constraints, bool hasSideEffects,
84 const std::string &getConstraintString() const { return Constraints; }
90 static bool Verify(FunctionType *Ty, StringRef Constraints);
151 /// isMultipleAlternative - '|': has multiple-alternative constraints.
154 /// multipleAlternatives - If there are multiple alternative constraints,
175 /// constraints and their prefixes. If this returns an empty vector, and if
179 /// ParseConstraints - Parse the constraints of this inlineasm object,
182 return ParseConstraints(Constraints);
    [all...]
  /external/webrtc/talk/app/webrtc/
mediaconstraintsinterface.h 31 // used in WebRTC: http://dev.w3.org/2011/webrtc/editor/webrtc.html#constraints.
42 // Interface used for passing arguments about media constraints
55 class Constraints : public std::vector<Constraint> {
60 virtual const Constraints& GetMandatory() const = 0;
61 virtual const Constraints& GetOptional() const = 0;
64 // Specified by draft-alvestrand-constraints-resolution-00b
103 // Constraints values.
108 // Temporary pseudo-constraints used to enable DTLS-SRTP
110 // Temporary pseudo-constraints used to enable DataChannels
138 // The prefix of internal-only constraints whose JS set values should b
    [all...]
  /external/llvm/lib/IR/
ConstantsContext.h 404 StringRef Constraints;
410 InlineAsmKeyType(StringRef AsmString, StringRef Constraints,
413 : AsmString(AsmString), Constraints(Constraints), FTy(FTy),
417 : AsmString(Asm->getAsmString()), Constraints(Asm->getConstraintString()),
424 AsmString == X.AsmString && Constraints == X.Constraints &&
432 Constraints == Asm->getConstraintString() &&
436 return hash_combine(AsmString, Constraints, HasSideEffects, IsAlignStack,
443 return new InlineAsm(FTy, AsmString, Constraints, HasSideEffects
    [all...]
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 106 std::vector<ConstraintInfo> Constraints;
119 for (unsigned j = 0, e = Constraints.size(); j != e; ++j) {
120 const CGIOperandList::ConstraintInfo &CI = Constraints[j];
  /external/v8/src/compiler/
register-allocator-verifier.h 203 typedef ZoneVector<InstructionConstraint> Constraints;
229 Constraints* constraints() { return &constraints_; } function in class:v8::internal::compiler::final
255 Constraints constraints_;
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 32 // Operand constraints
69 /// \brief The lower 16 bits are used to specify which constraints are set.
70 /// The higher 16 bits are used to specify the value of constraints (4 bits
72 uint32_t Constraints;
165 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
167 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/
response.py 735 Constraints = ElementList()
  /external/clang/lib/CodeGen/
CGStmt.cpp     [all...]
  /external/clang/include/clang/AST/
Stmt.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 320 SmallVector<StringLiteral*, 16> Constraints;
324 Constraints.push_back(cast_or_null<StringLiteral>(Reader.ReadSubStmt()));
328 // Constraints
334 Names.data(), Constraints.data(),
370 SmallVector<StringRef, 16> Constraints;
373 Constraints.reserve(NumOperands);
377 Constraints.push_back(ConstraintsData.back());
381 Constraints, Exprs, Clobbers);
    [all...]
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/10.0.1/
guava-10.0.1.jar 
  /external/testng/ant/3rdparty/
doclava-1.0.3.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 
  /prebuilts/misc/common/guava/
guava-15.0.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 

Completed in 510 milliseconds

1 2 3