/external/guava/guava/src/com/google/common/collect/ |
Constraint.java | 22 * A constraint that an element must satisfy in order to be added to a 37 * passed-in element. A non-deterministic constraint cannot reliably enforce 38 * that all the collection's elements meet the constraint, since the constraint 44 interface Constraint<E> { 57 * Returns a brief human readable description of this constraint, such as
|
Constraints.java | 31 * Factories and utilities pertaining to the {@link Constraint} interface. 42 * constraint. Any operations that add new elements to the collection will 43 * call the provided constraint. However, this method does not verify that 44 * existing elements satisfy the constraint. 49 * @param constraint the constraint that validates added elements 53 Collection<E> collection, Constraint<? super E> constraint) { 54 return new ConstrainedCollection<E>(collection, constraint); 60 private final Constraint<? super E> constraint field in class:Constraints.ConstrainedCollection 99 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedSet 137 final Constraint<? super E> constraint; field in class:Constraints.ConstrainedSortedSet 190 final Constraint<? super E> constraint; field in class:Constraints.ConstrainedList 257 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedListIterator [all...] |
/external/llvm/include/llvm/MC/MCParser/ |
MCParsedAsmOperand.h | 29 /// Constraint - The constraint on this operand. Only valid when parsing 31 std::string Constraint; 36 // that verbosity, just rely on defaulted copy ops. It's only the Constraint 45 void setConstraint(StringRef C) { Constraint = C.str(); } 46 StringRef getConstraint() { return Constraint; }
|
/external/perfetto/src/trace_processor/ |
query_constraints.h | 32 // This is because the constraint columns and the order-by clauses are passed 33 // to the xBestIndex method but the constraint values are available only in the 41 using Constraint = sqlite3_index_info::sqlite3_index_constraint; 53 // Two QueryConstraints with the same constraint and orderby vectors 74 const std::vector<Constraint>& constraints() const { return constraints_; } 81 std::vector<Constraint> constraints_;
|
storage_table.h | 74 const std::vector<QueryConstraints::Constraint>& cs, 81 const std::vector<QueryConstraints::Constraint>& cs,
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/MCParser/ |
MCParsedAsmOperand.h | 30 /// Constraint - The constraint on this operand. Only valid when parsing 32 std::string Constraint; 37 // that verbosity, just rely on defaulted copy ops. It's only the Constraint 46 void setConstraint(StringRef C) { Constraint = C.str(); } 47 StringRef getConstraint() { return Constraint; }
|
/external/webrtc/talk/app/webrtc/ |
mediaconstraintsinterface.h | 46 struct Constraint { 47 Constraint() {} 48 Constraint(const std::string& key, const std::string value) 55 class Constraints : public std::vector<Constraint> { 63 // Constraint keys used by a local video source. 74 // Constraint keys used by a local audio source. 91 // Google-specific constraint keys for a local video source 94 // Constraint keys for CreateOffer / CreateAnswer 107 // PeerConnection constraint keys. 112 // Google-specific constraint keys [all...] |
/external/deqp-deps/SPIRV-Tools/source/opt/ |
loop_dependence.h | 168 class Constraint { 170 explicit Constraint(const Loop* loop) : loop_(loop) {} 175 virtual ~Constraint() {} 177 // Get the loop this constraint belongs to. 180 bool operator==(const Constraint& other) const; 182 bool operator!=(const Constraint& other) const; 198 class DependenceLine : public Constraint { 201 : Constraint(loop), a_(a), b_(b), c_(c) {} 218 class DependenceDistance : public Constraint { 221 : Constraint(loop), distance_(distance) { [all...] |
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
loop_dependence.h | 168 class Constraint { 170 explicit Constraint(const Loop* loop) : loop_(loop) {} 175 virtual ~Constraint() {} 177 // Get the loop this constraint belongs to. 180 bool operator==(const Constraint& other) const; 182 bool operator!=(const Constraint& other) const; 198 class DependenceLine : public Constraint { 201 : Constraint(loop), a_(a), b_(b), c_(c) {} 218 class DependenceDistance : public Constraint { 221 : Constraint(loop), distance_(distance) { [all...] |
/external/webrtc/talk/app/webrtc/test/ |
fakeconstraints.h | 54 mandatory_.push_back(Constraint(key, rtc::ToString<T>(value))); 69 mandatory_.push_back(Constraint(key, rtc::ToString<T>(value))); 74 optional_.push_back(Constraint(key, rtc::ToString<T>(value)));
|
/external/llvm/include/llvm/Analysis/ |
DependenceAnalysis.h | 375 /// Constraint - This private class represents a constraint, as defined 382 /// There are 5 kinds of constraint, in a hierarchy. 383 /// 1) Any - indicates no constraint, any dependence is possible. 390 class Constraint { 400 /// isEmpty - Return true if the constraint is of kind Empty. 403 /// isPoint - Return true if the constraint is of kind Point. 406 /// isDistance - Return true if the constraint is of kind Distance. 409 /// isLine - Return true if the constraint is of kind Line. 411 /// true if the constraint is of kind Distance [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
DependenceAnalysis.h | 365 /// Constraint - This private class represents a constraint, as defined 372 /// There are 5 kinds of constraint, in a hierarchy. 373 /// 1) Any - indicates no constraint, any dependence is possible. 380 class Constraint { 390 /// isEmpty - Return true if the constraint is of kind Empty. 393 /// isPoint - Return true if the constraint is of kind Point. 396 /// isDistance - Return true if the constraint is of kind Distance. 399 /// isLine - Return true if the constraint is of kind Line. 401 /// true if the constraint is of kind Distance [all...] |
/external/tensorflow/tensorflow/python/keras/ |
constraints.py | 31 @keras_export('keras.constraints.Constraint') 32 class Constraint(object): 42 class MaxNorm(Constraint): 43 """MaxNorm weight constraint. 79 class NonNeg(Constraint): 88 class UnitNorm(Constraint): 119 class MinMaxNorm(Constraint): 120 """MinMaxNorm weight constraint. 128 rate: rate for enforcing the constraint: weights will be 132 enforcement of the constraint, while rate<1.0 means tha [all...] |
/external/llvm/include/llvm/IR/ |
InlineAsm.h | 87 /// the specified constraint string is legal for the type. This returns true 92 // Constraint String Parsing 102 /// MatchingInput - If this is not -1, this is an output constraint where an 103 /// input constraint is required to match it (e.g. "0"). The value is the 104 /// constraint number that matches this one (for example, if this is 105 /// constraint #0 and constraint #4 has the value "0", this will be 4). 107 /// Code - The constraint code, either the register name (in braces) or the 108 /// constraint letter/number. 119 /// Type - The basic type of the constraint: input/output/clobbe [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
InlineAsm.h | 85 /// the specified constraint string is legal for the type. This returns true 90 // Constraint String Parsing 100 /// MatchingInput - If this is not -1, this is an output constraint where an 101 /// input constraint is required to match it (e.g. "0"). The value is the 102 /// constraint number that matches this one (for example, if this is 103 /// constraint #0 and constraint #4 has the value "0", this will be 4). 106 /// Code - The constraint code, either the register name (in braces) or the 107 /// constraint letter/number. 119 /// Type - The basic type of the constraint: input/output/clobbe [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ConstrainedSetMultimapTest.java | 40 private enum Constraint implements Serializable, MapConstraint<String, String> { 60 return MapConstraints.constrainedSetMultimap(multimap, Constraint.INSTANCE);
|
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/ |
BlackfinISelLowering.h | 42 ConstraintType getConstraintType(const std::string &Constraint) const; 44 /// Examine constraint string and operand type and determine a weight value. 47 AsmOperandInfo &info, const char *constraint) const; 50 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const;
|
/external/swiftshader/third_party/LLVM/lib/Target/Sparc/ |
SparcISelLowering.h | 65 ConstraintType getConstraintType(const std::string &Constraint) const; 67 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const;
|
/external/webrtc/talk/app/webrtc/objc/ |
RTCMediaConstraints.mm | 62 constraints.push_back(webrtc::MediaConstraintsInterface::Constraint(
|
/external/llvm/lib/Target/AVR/ |
AVRISelLowering.h | 99 ConstraintType getConstraintType(StringRef Constraint) const override; 103 const char *constraint) const override; 107 StringRef Constraint, MVT VT) const override; 111 void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
|
/external/llvm/lib/Target/Lanai/ |
LanaiISelLowering.h | 98 StringRef Constraint, MVT VT) const override; 101 const char *Constraint) const override; 102 void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
MCInstrDesc.h | 147 /// getOperandConstraint - Returns the value of the specific constraint if 150 MCOI::OperandConstraint Constraint) const { 152 (OpInfo[OpNum].Constraints & (1 << Constraint))) { 153 unsigned Pos = 16 + Constraint * 4;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/ |
LanaiISelLowering.h | 98 StringRef Constraint, MVT VT) const override; 101 const char *Constraint) const override; 102 void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
|
/external/v8/src/compiler/ |
loop-variable-optimizer.h | 87 struct Constraint { 92 bool operator!=(const Constraint& other) const { 97 using VariableLimits = FunctionalList<Constraint>;
|
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/ |
AlphaISelLowering.h | 90 ConstraintType getConstraintType(const std::string &Constraint) const; 92 /// Examine constraint string and operand type and determine a weight value. 95 AsmOperandInfo &info, const char *constraint) const; 98 getRegForInlineAsmConstraint(const std::string &Constraint,
|