Home
last modified time | relevance | path

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

12345

/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.h404 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,
/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/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/v8/src/compiler/
Dregister-allocator-verifier.h58 typedef ZoneVector<InstructionConstraint> Constraints; typedef
63 Constraints* constraints() { return &constraints_; } in constraints()
79 Constraints constraints_;
/external/clang/lib/Parse/
DParseStmtAsm.cpp573 SmallVector<std::string, 4> Constraints; in ParseMicrosoftAsmStatement() local
576 NumInputs, OpExprs, Constraints, Clobbers, in ParseMicrosoftAsmStatement()
602 ConstraintRefs[i] = StringRef(Constraints[i]); in ParseMicrosoftAsmStatement()
681 ExprVector Constraints; in ParseAsmStatement() local
690 Constraints, Exprs, AsmString.get(), in ParseAsmStatement()
701 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs)) in ParseAsmStatement()
717 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs)) in ParseAsmStatement()
721 assert(Names.size() == Constraints.size() && in ParseAsmStatement()
722 Constraints.size() == Exprs.size() && "Input operand size mismatch!"); in ParseAsmStatement()
750 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/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/clang/lib/CodeGen/
DCGStmt.cpp1767 std::string Constraints; in EmitAsmStmt() local
1805 if (!Constraints.empty()) in EmitAsmStmt()
1806 Constraints += ','; in EmitAsmStmt()
1811 Constraints += "=" + OutputConstraint; in EmitAsmStmt()
1850 Constraints += "=*"; in EmitAsmStmt()
1851 Constraints += OutputConstraint; in EmitAsmStmt()
1886 *this, ReturnSlot, Constraints, ResultRegTypes, ResultTruncRegTypes, in EmitAsmStmt()
1900 if (!Constraints.empty()) in EmitAsmStmt()
1901 Constraints += ','; in EmitAsmStmt()
1912 llvm::Value *Arg = EmitAsmInput(Info, InputExpr, Constraints); in EmitAsmStmt()
[all …]
/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()
723 ArrayRef<StringRef> Constraints, in ActOnMSAsmStmt() argument
732 Constraints, Exprs, AsmString, in ActOnMSAsmStmt()
/external/clang/lib/AST/
DStmt.cpp423 StringLiteral **Constraints, in setOutputsAndInputsAndClobbers() argument
443 C.Deallocate(this->Constraints); in setOutputsAndInputsAndClobbers()
444 this->Constraints = new (C) StringLiteral*[NumExprs]; in setOutputsAndInputsAndClobbers()
445 std::copy(Constraints, Constraints + NumExprs, this->Constraints); in setOutputsAndInputsAndClobbers()
701 Constraints = new (C) StringLiteral*[NumExprs]; in GCCAsmStmt()
702 std::copy(constraints, constraints + NumExprs, Constraints); in GCCAsmStmt()
745 Constraints = new (C) StringRef[exprs.size()]; in initialize()
746 std::transform(constraints.begin(), constraints.end(), Constraints, in initialize()
/external/llvm/utils/TableGen/
DCodeGenInstruction.h106 std::vector<ConstraintInfo> Constraints; member
119 for (unsigned j = 0, e = Constraints.size(); j != e; ++j) { in getTiedRegister()
120 const CGIOperandList::ConstraintInfo &CI = Constraints[j]; in getTiedRegister()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/
Dquestion.py279 class Constraints(OrderedContent): class
283 content = super(Constraints, self).get_as_xml()
352 self.constraints = Constraints()
354 self.constraints = Constraints(constraints)
/external/llvm/lib/Target/X86/
DX86InstrCMovSetCC.td18 let Uses = [EFLAGS], Predicates = [HasCMov], Constraints = "$src1 = $dst",
40 let Uses = [EFLAGS], Predicates = [HasCMov], Constraints = "$src1 = $dst",
59 } // Uses = [EFLAGS], Predicates = [HasCMov], Constraints = "$src1 = $dst"
/external/clang/include/clang/AST/
DStmt.h1548 StringLiteral **Constraints; variable
1563 Constraints(nullptr), Clobbers(nullptr), Names(nullptr) { } in GCCAsmStmt()
1647 return Constraints[i]; in getOutputConstraintLiteral()
1650 return Constraints[i]; in getOutputConstraintLiteral()
1675 return Constraints[i + NumOutputs]; in getInputConstraintLiteral()
1678 return Constraints[i + NumOutputs]; in getInputConstraintLiteral()
1691 StringLiteral **Constraints,
1729 StringRef *Constraints; variable
1744 NumAsmToks(0), AsmToks(nullptr), Constraints(nullptr), Clobbers(nullptr) { } in MSAsmStmt()
1766 return Constraints[i]; in getOutputConstraint()
[all …]

12345