Home
last modified time | relevance | path

Searched refs:Constraints (Results 1 – 25 of 176) sorted by relevance

12345678

/external/webrtc/webrtc/api/objc/
DRTCMediaConstraints+Private.h23 const MediaConstraintsInterface::Constraints& mandatory,
24 const MediaConstraintsInterface::Constraints& optional);
25 virtual const Constraints& GetMandatory() const;
26 virtual const Constraints& GetOptional() const;
29 MediaConstraintsInterface::Constraints mandatory_;
30 MediaConstraintsInterface::Constraints optional_;
47 + (webrtc::MediaConstraintsInterface::Constraints)
DRTCMediaConstraints.mm23 const MediaConstraintsInterface::Constraints& mandatory,
24 const MediaConstraintsInterface::Constraints& optional)
27 const MediaConstraintsInterface::Constraints&
32 const MediaConstraintsInterface::Constraints&
67 webrtc::MediaConstraintsInterface::Constraints mandatory =
69 webrtc::MediaConstraintsInterface::Constraints optional =
77 + (webrtc::MediaConstraintsInterface::Constraints)
80 webrtc::MediaConstraintsInterface::Constraints nativeConstraints;
/external/webrtc/talk/app/webrtc/objc/
DRTCMediaConstraintsNative.h39 const MediaConstraintsInterface::Constraints& mandatory,
40 const MediaConstraintsInterface::Constraints& optional);
41 virtual const Constraints& GetMandatory() const;
42 virtual const Constraints& GetOptional() const;
45 MediaConstraintsInterface::Constraints mandatory_;
46 MediaConstraintsInterface::Constraints optional_;
DRTCMediaConstraintsNative.cc37 const MediaConstraintsInterface::Constraints& mandatory, in RTCMediaConstraintsNative()
38 const MediaConstraintsInterface::Constraints& optional) in RTCMediaConstraintsNative()
41 const MediaConstraintsInterface::Constraints&
46 const MediaConstraintsInterface::Constraints&
DRTCMediaConstraints.mm43 webrtc::MediaConstraintsInterface::Constraints _mandatory;
44 webrtc::MediaConstraintsInterface::Constraints _optional;
58 + (webrtc::MediaConstraintsInterface::Constraints)constraintsFromArray:
60 webrtc::MediaConstraintsInterface::Constraints constraints;
/external/llvm/lib/IR/
DInlineAsm.cpp28 StringRef Constraints, bool hasSideEffects, in get() argument
30 InlineAsmKeyType Key(AsmString, Constraints, FTy, hasSideEffects, in get()
40 AsmString(asmString), Constraints(constraints), FTy(FTy), in InlineAsm()
211 InlineAsm::ParseConstraints(StringRef Constraints) { in ParseConstraints() argument
215 for (StringRef::iterator I = Constraints.begin(), in ParseConstraints()
216 E = Constraints.end(); I != E; ) { in ParseConstraints()
250 ConstraintInfoVector Constraints = ParseConstraints(ConstStr); in Verify() local
253 if (Constraints.empty() && !ConstStr.empty()) return false; in Verify()
258 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) { in Verify()
259 switch (Constraints[i].Type) { in Verify()
[all …]
DConstantsContext.h396 StringRef Constraints;
402 InlineAsmKeyType(StringRef AsmString, StringRef Constraints,
405 : AsmString(AsmString), Constraints(Constraints), FTy(FTy),
409 : AsmString(Asm->getAsmString()), Constraints(Asm->getConstraintString()),
416 AsmString == X.AsmString && Constraints == X.Constraints &&
424 Constraints == Asm->getConstraintString() &&
428 return hash_combine(AsmString, Constraints, HasSideEffects, IsAlignStack,
435 return new InlineAsm(FTy, AsmString, Constraints, HasSideEffects,
/external/swiftshader/third_party/LLVM/lib/VMCore/
DInlineAsm.cpp29 StringRef Constraints, bool hasSideEffects, in get() argument
31 InlineAsmKeyType Key(AsmString, Constraints, hasSideEffects, isAlignStack); in get()
41 Constraints(constraints), HasSideEffects(hasSideEffects), in InlineAsm()
212 InlineAsm::ParseConstraints(StringRef Constraints) { in ParseConstraints() argument
216 for (StringRef::iterator I = Constraints.begin(), in ParseConstraints()
217 E = Constraints.end(); I != E; ) { in ParseConstraints()
248 ConstraintInfoVector Constraints = ParseConstraints(ConstStr); in Verify() local
251 if (Constraints.empty() && !ConstStr.empty()) return false; in Verify()
256 for (unsigned i = 0, e = Constraints.size(); i != e; ++i) { in Verify()
257 switch (Constraints[i].Type) { in Verify()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DConstraintsTest.java65 Collection<String> constrained = Constraints.constrainedCollection( in testConstrainedCollectionLegal()
79 Collection<String> constrained = Constraints.constrainedCollection( in testConstrainedCollectionIllegal()
95 Set<String> constrained = Constraints.constrainedSet(set, TEST_CONSTRAINT); in testConstrainedSetLegal()
110 Set<String> constrained = Constraints.constrainedSet(set, TEST_CONSTRAINT); in testConstrainedSetIllegal()
125 SortedSet<String> constrained = Constraints.constrainedSortedSet( in testConstrainedSortedSetLegal()
144 SortedSet<String> constrained = Constraints.constrainedSortedSet( in testConstrainedSortedSetIllegal()
172 List<String> constrained = Constraints.constrainedList( in testConstrainedListLegal()
201 List<String> constrained = Constraints.constrainedList( in testConstrainedListRandomAccessFalse()
210 List<String> constrained = Constraints.constrainedList( in testConstrainedListIllegal()
258 List<String> constrained = Constraints.constrainedList( in testNefariousAddAll()
/external/webrtc/talk/app/webrtc/test/
Dfakeconstraints.h44 virtual const Constraints& GetMandatory() const { in GetMandatory()
48 virtual const Constraints& GetOptional() const { in GetOptional()
61 for (Constraints::iterator iter = mandatory_.begin(); in SetMandatory()
127 Constraints mandatory_;
128 Constraints optional_;
/external/swiftshader/third_party/LLVM/include/llvm/
DInlineAsm.h42 std::string AsmString, Constraints;
47 const std::string &Constraints, bool hasSideEffects,
59 StringRef Constraints, bool hasSideEffects,
76 const std::string &getConstraintString() const { return Constraints; }
82 static bool Verify(FunctionType *Ty, StringRef Constraints);
177 return ParseConstraints(Constraints);
/external/llvm/include/llvm/IR/
DInlineAsm.h46 std::string AsmString, Constraints; variable
53 const std::string &Constraints, bool hasSideEffects,
65 StringRef Constraints, bool hasSideEffects,
84 const std::string &getConstraintString() const { return Constraints; } in getConstraintString()
90 static bool Verify(FunctionType *Ty, StringRef Constraints);
182 return ParseConstraints(Constraints); in ParseConstraints()
/external/llvm/include/llvm/CodeGen/
DPBQPRAConstraint.h54 for (auto &C : Constraints) in apply()
60 Constraints.push_back(std::move(C)); in addConstraint()
63 std::vector<std::unique_ptr<PBQPRAConstraint>> Constraints;
/external/webrtc/talk/app/webrtc/
Dmediaconstraintsinterface.h55 class Constraints : public std::vector<Constraint> {
60 virtual const Constraints& GetMandatory() const = 0;
61 virtual const Constraints& GetOptional() const = 0;
Dvideosource.cc108 const MediaConstraintsInterface::Constraints& constraints, in FromConstraintsForScreencast()
110 typedef MediaConstraintsInterface::Constraints::const_iterator in FromConstraintsForScreencast()
211 const MediaConstraintsInterface::Constraints& mandatory, in FilterFormats()
212 const MediaConstraintsInterface::Constraints& optional, in FilterFormats()
214 typedef MediaConstraintsInterface::Constraints::const_iterator in FilterFormats()
380 MediaConstraintsInterface::Constraints mandatory_constraints = in Initialize()
382 MediaConstraintsInterface::Constraints optional_constraints; in Initialize()
Dmediaconstraintsinterface.cc124 bool MediaConstraintsInterface::Constraints::FindFirst( in FindFirst()
126 for (Constraints::const_iterator iter = begin(); iter != end(); ++iter) { in FindFirst()
/external/clang/lib/Parse/
DParseStmtAsm.cpp611 SmallVector<std::string, 4> Constraints; in ParseMicrosoftAsmStatement() local
614 NumInputs, OpExprs, Constraints, Clobbers, in ParseMicrosoftAsmStatement()
640 ConstraintRefs[i] = StringRef(Constraints[i]); in ParseMicrosoftAsmStatement()
726 ExprVector Constraints; in ParseAsmStatement() local
735 Constraints, Exprs, AsmString.get(), in ParseAsmStatement()
746 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs)) in ParseAsmStatement()
762 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs)) in ParseAsmStatement()
766 assert(Names.size() == Constraints.size() && in ParseAsmStatement()
767 Constraints.size() == Exprs.size() && "Input operand size mismatch!"); in ParseAsmStatement()
795 Constraints, Exprs, AsmString.get(), Clobbers, T.getCloseLocation()); in ParseAsmStatement()
[all …]
/external/webrtc/webrtc/api/objctests/
DRTCMediaConstraintsTest.mm35 webrtc::MediaConstraintsInterface::Constraints nativeMandatory =
39 webrtc::MediaConstraintsInterface::Constraints nativeOptional =
46 (webrtc::MediaConstraintsInterface::Constraints)nativeConstraints { argument
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCInstrDesc.h68 unsigned Constraints; variable
152 (OpInfo[OpNum].Constraints & (1 << Constraint))) { in getOperandConstraint()
154 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf; in getOperandConstraint()
/external/clang/lib/CodeGen/
DCGStmt.cpp1824 std::string Constraints; in EmitAsmStmt() local
1862 if (!Constraints.empty()) in EmitAsmStmt()
1863 Constraints += ','; in EmitAsmStmt()
1868 Constraints += "=" + OutputConstraint; in EmitAsmStmt()
1907 Constraints += "=*"; in EmitAsmStmt()
1908 Constraints += OutputConstraint; in EmitAsmStmt()
1943 *this, ReturnSlot, Constraints, ResultRegTypes, ResultTruncRegTypes, in EmitAsmStmt()
1957 if (!Constraints.empty()) in EmitAsmStmt()
1958 Constraints += ','; in EmitAsmStmt()
1969 llvm::Value *Arg = EmitAsmInput(Info, InputExpr, Constraints); in EmitAsmStmt()
[all …]
/external/llvm/include/llvm/MC/
DMCInstrDesc.h72 uint32_t Constraints; variable
165 (OpInfo[OpNum].Constraints & (1 << Constraint))) { in getOperandConstraint()
167 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf; in getOperandConstraint()
/external/v8/src/compiler/
Dregister-allocator-verifier.h205 typedef ZoneVector<InstructionConstraint> Constraints; typedef
231 Constraints* constraints() { return &constraints_; } in constraints()
257 Constraints constraints_;
/external/clang/lib/Sema/
DSemaStmtAsm.cpp148 StringLiteral **Constraints = in ActOnGCCAsmStmt() local
163 Constraints, Exprs.data(), AsmString, NumClobbers, Clobbers, RParenLoc); in ActOnGCCAsmStmt()
168 StringLiteral *Literal = Constraints[i]; in ActOnGCCAsmStmt()
247 StringLiteral *Literal = Constraints[i]; in ActOnGCCAsmStmt()
349 NumInputs, Names, Constraints, Exprs.data(), in ActOnGCCAsmStmt()
386 StringLiteral *Literal = Constraints[ConstraintIdx]; in ActOnGCCAsmStmt()
727 ArrayRef<StringRef> Constraints, in ActOnMSAsmStmt() argument
736 Constraints, Exprs, AsmString, in ActOnMSAsmStmt()
/external/swiftshader/third_party/LLVM/utils/TableGen/
DCodeGenInstruction.h105 std::vector<ConstraintInfo> Constraints; member
118 for (unsigned j = 0, e = Constraints.size(); j != e; ++j) { in getTiedRegister()
119 const CGIOperandList::ConstraintInfo &CI = Constraints[j]; in getTiedRegister()
/external/llvm/utils/TableGen/
DCodeGenInstruction.h105 std::vector<ConstraintInfo> Constraints; member
118 for (unsigned j = 0, e = Constraints.size(); j != e; ++j) { in getTiedRegister()
119 const CGIOperandList::ConstraintInfo &CI = Constraints[j]; in getTiedRegister()

12345678