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

1 2 3 4 5

  /external/webrtc/talk/app/webrtc/objc/
RTCMediaConstraintsNative.h 39 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_;
RTCMediaConstraintsNative.cc 37 const MediaConstraintsInterface::Constraints& mandatory,
38 const MediaConstraintsInterface::Constraints& optional)
41 const MediaConstraintsInterface::Constraints&
46 const MediaConstraintsInterface::Constraints&
RTCMediaConstraints.mm 38 // TODO(hughv): Add accessors for mandatory and optional constraints.
43 webrtc::MediaConstraintsInterface::Constraints _mandatory;
44 webrtc::MediaConstraintsInterface::Constraints _optional;
58 + (webrtc::MediaConstraintsInterface::Constraints)constraintsFromArray:
60 webrtc::MediaConstraintsInterface::Constraints constraints;
62 constraints.push_back(webrtc::MediaConstraintsInterface::Constraint(
65 return constraints;
72 - (const webrtc::RTCMediaConstraintsNative*)constraints {
  /external/webrtc/webrtc/api/objc/
RTCMediaConstraints+Private.h 23 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_;
46 /** Return a native Constraints object representing these constraints */
47 + (webrtc::MediaConstraintsInterface::Constraints)
49 (NSDictionary<NSString *, NSString *> *)constraints;
    [all...]
RTCMediaConstraints.mm 23 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)
79 (NSDictionary<NSString *, NSString *> *)constraints {
80 webrtc::MediaConstraintsInterface::Constraints nativeConstraints;
81 for (NSString *key in constraints) {
    [all...]
  /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/webrtc/talk/app/webrtc/test/
fakeconstraints.h 44 virtual const Constraints& GetMandatory() const {
48 virtual const Constraints& GetOptional() const {
61 for (Constraints::iterator iter = mandatory_.begin();
127 Constraints mandatory_;
128 Constraints optional_;
  /external/webrtc/webrtc/api/objctests/
RTCMediaConstraintsTest.mm 29 RTCMediaConstraints *constraints = [[RTCMediaConstraints alloc]
33 [constraints nativeConstraints];
35 webrtc::MediaConstraintsInterface::Constraints nativeMandatory =
39 webrtc::MediaConstraintsInterface::Constraints nativeOptional =
44 - (void)expectConstraints:(NSDictionary *)constraints
46 (webrtc::MediaConstraintsInterface::Constraints)nativeConstraints {
47 EXPECT_EQ(constraints.count, nativeConstraints.size());
49 for (NSString *key in constraints) {
50 NSString *value = constraints[key];
  /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...]
mediaconstraintsinterface.cc 37 // Constraints declared as static members in mediastreaminterface.h
38 // Specified by draft-alvestrand-constraints-resolution-00b
48 // Audio constraints.
88 // Below constraints should be used during PeerConnection construction.
124 bool MediaConstraintsInterface::Constraints::FindFirst(
126 for (Constraints::const_iterator iter = begin(); iter != end(); ++iter) {
136 // |key| and return its value as |value|. |constraints| can be null.
138 // among the mandatory constraints.
142 // Note: Because this uses FindFirst, repeated optional constraints whose
145 bool FindConstraint(const MediaConstraintsInterface* constraints,
    [all...]
localaudiosource.cc 42 // Convert constraints to audio options. Return false if constraints are
44 void FromConstraints(const MediaConstraintsInterface::Constraints& constraints,
46 // This design relies on the fact that all the audio constraints are actually
47 // "options", i.e. boolean-valued and always satisfiable. If the constraints
48 // are extended to include non-boolean values or actual format constraints,
74 for (const auto& constraint : constraints) {
90 const MediaConstraintsInterface* constraints) {
93 source->Initialize(options, constraints);
    [all...]
videosource.cc 106 // Fills |format_out| with the max width and height allowed by |constraints|.
108 const MediaConstraintsInterface::Constraints& constraints,
110 typedef MediaConstraintsInterface::Constraints::const_iterator
114 for (ConstraintsIterator constraints_it = constraints.begin();
115 constraints_it != constraints.end(); ++constraints_it)
181 // These are actually options, not constraints, so they can be satisfied
209 // Returns a vector of cricket::VideoFormat that best match |constraints|.
211 const MediaConstraintsInterface::Constraints& mandatory,
212 const MediaConstraintsInterface::Constraints& optional
    [all...]
  /external/llvm/lib/IR/
InlineAsm.cpp 28 StringRef Constraints, bool hasSideEffects,
30 InlineAsmKeyType Key(AsmString, Constraints, FTy, hasSideEffects,
37 const std::string &constraints, bool hasSideEffects,
40 AsmString(asmString), Constraints(constraints), FTy(FTy),
45 assert(Verify(getFunctionType(), constraints) &&
46 "Function type not legal for constraints!");
139 // Parse the various constraints.
185 // FIXME: For now assuming these are 2-character constraints.
211 InlineAsm::ParseConstraints(StringRef Constraints) {
    [all...]
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/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/guava/guava-tests/test/com/google/common/collect/
ConstraintsTest.java 37 * Tests for {@code Constraints}.
65 Collection<String> constrained = Constraints.constrainedCollection(
79 Collection<String> constrained = Constraints.constrainedCollection(
95 Set<String> constrained = Constraints.constrainedSet(set, TEST_CONSTRAINT);
110 Set<String> constrained = Constraints.constrainedSet(set, TEST_CONSTRAINT);
125 SortedSet<String> constrained = Constraints.constrainedSortedSet(
144 SortedSet<String> constrained = Constraints.constrainedSortedSet(
172 List<String> constrained = Constraints.constrainedList(
201 List<String> constrained = Constraints.constrainedList(
210 List<String> constrained = Constraints.constrainedList
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds2/
layer1.py 155 Constraints:
280 Constraints:
292 Constraints:
348 Constraints:
363 Constraints:
376 Constraints:
392 Constraints: Must be an integer from 5 to 1024.
398 Constraints: Must be an integer from 10 to 1024.
402 Constraints: Must be an integer from 200 to 1024 (Standard Edition and
424 Constraints
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.h 133 /// Adds constraints and types for result registers.
136 std::string &Constraints, std::vector<llvm::Type *> &ResultRegTypes,
  /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/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/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/clang/lib/AST/
Stmt.cpp 402 /// output operand. All output constraints are known to be non-empty (either
416 /// constraints, these can be empty.
423 StringLiteral **Constraints,
443 C.Deallocate(this->Constraints);
444 this->Constraints = new (C) StringLiteral*[NumExprs];
445 std::copy(Constraints, Constraints + NumExprs, this->Constraints);
482 // "Simple" inline asms have no constraints or operands, just convert the asm
687 StringLiteral **constraints, Expr **exprs
    [all...]
  /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/llvm/include/llvm/MC/MCParser/
MCAsmParser.h 120 SmallVectorImpl<std::string> &Constraints,

Completed in 329 milliseconds

1 2 3 4 5