Searched defs:Constraints (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/content/common/media/
H A Dmedia_stream_options.h49 typedef std::vector<Constraint> Constraints; typedef in class:content::StreamOptions
52 Constraints mandatory_audio;
53 Constraints optional_audio;
56 Constraints mandatory_video;
57 Constraints optional_video;
82 const StreamOptions::Constraints& constraints,
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dmediaconstraintsinterface.h55 class Constraints : public std::vector<Constraint> { class in class:webrtc::MediaConstraintsInterface
60 virtual const Constraints& GetMandatory() const = 0;
61 virtual const Constraints& GetOptional() const = 0;
102 // Constraints values.
/external/guava/guava/src/com/google/common/collect/
H A DConstraints.java41 public final class Constraints { class
42 private Constraints() {} method in class:Constraints
85 /** @see Constraints#constrainedCollection */
124 /** @see Constraints#constrainedSet */
162 /** @see Constraints#constrainedSortedSet */
214 /** @see Constraints#constrainedList */
259 /** @see Constraints#constrainedList */
282 /** @see Constraints#constrainedListIterator */
336 /** @see Constraints#constrainedMultiset */
/external/llvm/lib/IR/
H A DInlineAsm.cpp29 StringRef Constraints, bool hasSideEffects,
31 InlineAsmKeyType Key(AsmString, Constraints, hasSideEffects, isAlignStack,
41 AsmString(asmString), Constraints(constraints),
213 InlineAsm::ParseConstraints(StringRef Constraints) { argument
217 for (StringRef::iterator I = Constraints.begin(),
218 E = Constraints.end(); I != E; ) {
249 ConstraintInfoVector Constraints = ParseConstraints(ConstStr);
252 if (Constraints.empty() && !ConstStr.empty()) return false;
257 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
258 switch (Constraints[
28 get(FunctionType *Ty, StringRef AsmString, StringRef Constraints, bool hasSideEffects, bool isAlignStack, AsmDialect asmDialect) argument
[all...]
H A DConstantsContext.h354 StringRef Constraints, bool hasSideEffects,
356 : asm_string(AsmString), constraints(Constraints),
353 InlineAsmKeyType(StringRef AsmString, StringRef Constraints, bool hasSideEffects, bool isAlignStack, InlineAsm::AsmDialect asmDialect) argument
H A DCore.cpp1082 const char *Constraints,
1086 Constraints, HasSideEffects, IsAlignStack));
1081 LLVMConstInlineAsm(LLVMTypeRef Ty, const char *AsmString, const char *Constraints, LLVMBool HasSideEffects, LLVMBool IsAlignStack) argument
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp84 StringLiteral **Constraints = local
97 StringLiteral *Literal = Constraints[i];
129 StringLiteral *Literal = Constraints[i];
206 NumInputs, Names, Constraints, Exprs.data(),
253 StringLiteral *Literal = Constraints[ConstraintIdx];
476 ArrayRef<StringRef> Constraints,
484 Constraints, Exprs, AsmString,
472 ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, ArrayRef<Token> AsmToks, StringRef AsmString, unsigned NumOutputs, unsigned NumInputs, ArrayRef<StringRef> Constraints, ArrayRef<StringRef> Clobbers, ArrayRef<Expr*> Exprs, SourceLocation EndLoc) argument
H A DTreeTransform.h1194 MultiExprArg Constraints, MultiExprArg Exprs,
1198 NumInputs, Names, Constraints, Exprs,
1210 ArrayRef<StringRef> Constraints,
1216 Constraints, Clobbers, Exprs, EndLoc);
5681 SmallVector<Expr*, 8> Constraints; local
5695 Constraints.push_back(S->getOutputConstraintLiteral(I));
5713 Constraints.push_back(S->getInputConstraintLiteral(I));
5738 Constraints, Exprs, AsmString.get(),
1191 RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, bool IsVolatile, unsigned NumOutputs, unsigned NumInputs, IdentifierInfo **Names, MultiExprArg Constraints, MultiExprArg Exprs, Expr *AsmString, MultiExprArg Clobbers, SourceLocation RParenLoc) argument
1206 RebuildMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, ArrayRef<Token> AsmToks, StringRef AsmString, unsigned NumOutputs, unsigned NumInputs, ArrayRef<StringRef> Constraints, ArrayRef<StringRef> Clobbers, ArrayRef<Expr*> Exprs, SourceLocation EndLoc) argument
/external/llvm/include/llvm/IR/
H A DInlineAsm.h50 std::string AsmString, Constraints; member in class:llvm::InlineAsm
56 const std::string &Constraints, bool hasSideEffects,
68 StringRef Constraints, bool hasSideEffects,
87 const std::string &getConstraintString() const { return Constraints; }
93 static bool Verify(FunctionType *Ty, StringRef Constraints);
188 return ParseConstraints(Constraints);
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h105 std::vector<ConstraintInfo> Constraints; member in struct:llvm::CGIOperandList::OperandInfo
118 for (unsigned j = 0, e = Constraints.size(); j != e; ++j) {
119 const CGIOperandList::ConstraintInfo &CI = Constraints[j];
/external/llvm/include/llvm/MC/
H A DMCInstrDesc.h73 uint32_t Constraints; member in class:llvm::MCOperandInfo
154 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
156 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
/external/clang/lib/AST/
H A DStmt.cpp390 StringLiteral **Constraints,
410 C.Deallocate(this->Constraints);
411 this->Constraints = new (C) StringLiteral*[NumExprs];
412 std::copy(Constraints, Constraints + NumExprs, this->Constraints);
645 Constraints = new (C) StringLiteral*[NumExprs];
646 std::copy(constraints, constraints + NumExprs, Constraints);
696 Constraints = new (C) StringRef[NumExprs];
698 Constraints[
388 setOutputsAndInputsAndClobbers(ASTContext &C, IdentifierInfo **Names, StringLiteral **Constraints, Stmt **Exprs, unsigned NumOutputs, unsigned NumInputs, StringLiteral **Clobbers, unsigned NumClobbers) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1510 std::string Constraints; local
1539 if (!Constraints.empty())
1540 Constraints += ',';
1545 Constraints += "=" + OutputConstraint;
1584 Constraints += "=*";
1585 Constraints += OutputConstraint;
1617 if (!Constraints.empty())
1618 Constraints += ',';
1630 llvm::Value *Arg = EmitAsmInput(Info, InputExpr, Constraints);
1668 Constraints
[all...]
/external/clang/lib/Parse/
H A DParseStmt.cpp2134 SmallVector<std::string, 4> Constraints; local
2137 NumOutputs, NumInputs, OpExprs, Constraints,
2161 ConstraintRefs[i] = StringRef(Constraints[i]);
2230 ExprVector Constraints; local
2239 Constraints, Exprs, AsmString.take(),
2251 ParseAsmOperandsOpt(Names, Constraints, Exprs))
2269 ParseAsmOperandsOpt(Names, Constraints, Exprs))
2273 assert(Names.size() == Constraints.size() &&
2274 Constraints.size() == Exprs.size() &&
2302 NumInputs, Names.data(), Constraints, Expr
2320 ParseAsmOperandsOpt(SmallVectorImpl<IdentifierInfo *> &Names, SmallVectorImpl<Expr *> &Constraints, SmallVectorImpl<Expr *> &Exprs) argument
[all...]
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp320 SmallVector<StringLiteral*, 16> Constraints; local
324 Constraints.push_back(cast_or_null<StringLiteral>(Reader.ReadSubStmt()));
328 // Constraints
334 Names.data(), Constraints.data(),
370 SmallVector<StringRef, 16> Constraints; local
373 Constraints.reserve(NumOperands);
377 Constraints.push_back(ConstraintsData.back());
381 Constraints, Exprs, Clobbers);
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp408 // of the Constraints X and Y. Returns true if X has changed.
2980 SmallVectorImpl<Constraint> &Constraints,
2985 DEBUG(Constraints[LI].dump(dbgs()));
2986 if (Constraints[LI].isDistance())
2987 Result |= propagateDistance(Src, Dst, Constraints[LI], Consistent);
2988 else if (Constraints[LI].isLine())
2989 Result |= propagateLine(Src, Dst, Constraints[LI], Consistent);
2990 else if (Constraints[LI].isPoint())
2991 Result |= propagatePoint(Src, Dst, Constraints[LI]);
3450 SmallVector<Constraint, 4> Constraints(MaxLevel
2977 propagate(const SCEV *&Src, const SCEV *&Dst, SmallBitVector &Loops, SmallVectorImpl<Constraint> &Constraints, bool &Consistent) argument
[all...]
/external/clang/include/clang/AST/
H A DStmt.h1502 StringLiteral **Constraints; member in class:clang::GCCAsmStmt
1517 Constraints(0), Clobbers(0), Names(0) { }
1596 return Constraints[i];
1599 return Constraints[i];
1624 return Constraints[i + NumOutputs];
1627 return Constraints[i + NumOutputs];
1640 StringLiteral **Constraints,
1678 StringRef *Constraints; member in class:clang::MSAsmStmt
1693 NumAsmToks(0), AsmToks(0), Constraints(0), Clobbers(0) { }
1715 return Constraints[
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c759 value Constraints, value HasSideEffects,
761 return LLVMConstInlineAsm(Ty, String_val(Asm), String_val(Constraints),
758 llvm_const_inline_asm(LLVMTypeRef Ty, value Asm, value Constraints, value HasSideEffects, value IsAlignStack) argument
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp226 SmallVectorImpl<std::string> &Constraints,
4097 SmallVectorImpl<std::string> &Constraints,
4192 Constraints.resize(NumExprs);
4195 Constraints[i] = OutputConstraints[i];
4199 Constraints[j] = InputConstraints[i];
4094 parseMSInlineAsm(void *AsmLoc, std::string &AsmString, unsigned &NumOutputs, unsigned &NumInputs, SmallVectorImpl<std::pair<void *, bool> > &OpDecls, SmallVectorImpl<std::string> &Constraints, SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII, const MCInstPrinter *IP, MCAsmParserSemaCallback &SI) argument
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp18602 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints(); local
18603 if (Constraints.size() >= 2 &&
18604 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
18605 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1225 milliseconds