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

1 2 3 4 5 6 7 8 9

  /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; }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DependencyGraph.java 55 /** Format to chain constraint dependencies: button 1 above button2 etc */
71 // the parent id from a constraint, only via parent-relative params
101 Constraint constraint = new Constraint(type, view, parentView); local
102 view.dependsOn.add(constraint);
103 parentView.dependedOnBy.add(constraint);
106 // id-based constraint.
117 Constraint constraint = new Constraint(type, view, target) local
304 Constraint constraint = path.get(i); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
Parameter.java 89 enum Constraint {
91 * This value must be unique. This constraint usually only makes sense
99 * This value must already exist. This constraint usually only makes sense
136 public static Constraint get(String name) {
138 return Constraint.valueOf(name.toUpperCase(Locale.US));
140 AdtPlugin.printErrorToConsole("Unexpected template constraint '" + name + "'");
145 for (Constraint s : Constraint.values()) {
209 public final EnumSet<Constraint> constraints;
235 EnumSet<Constraint> constraintSet = null
237 Constraint constraint = Constraint.get(s); local
    [all...]
  /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/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)));
  /libcore/ojluni/src/main/java/sun/security/util/
DisabledAlgorithmConstraints.java 222 * Constraint classes. That is addressed with
237 private Map<String, Set<Constraint>> constraintsMap = new HashMap<>();
252 // Check if constraint is a complete disabling of an
269 // Convert constraint conditions into Constraint classes
270 Constraint c = null;
271 Constraint lastConstraint = null;
272 // Allow only one jdkCA entry per constraint entry
295 "Constraint: " + constraintEntry);
300 // Link multiple conditions for a single constraint
    [all...]
  /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/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/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(
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
FlashingResourcesParser.java 45 public static interface Constraint {
47 * Check if the provided {@code item} passes the constraint.
85 * flashing requirements. Flashing requirements must pass the appropriate constraint (if one
89 * @param c A map from key name to {@link Constraint}. Image names will be checked against
90 * the appropriate constraint (if any) as a prereq for being added. May be null to
93 public FlashingResourcesParser(File deviceImgZipFile, Map<String, Constraint> c)
115 * @param c A map from key name to {@link Constraint}. Image names will be checked against
116 * the appropriate constraint (if any) as a prereq for being added. May be null to
119 public FlashingResourcesParser(BufferedReader infoReader, Map<String, Constraint> c)
258 Map<String, Constraint> constraints) throws TargetSetupError
    [all...]
  /external/v8/src/compiler/
loop-variable-optimizer.cc 76 class LoopVariableOptimizer::Constraint : public ZoneObject {
82 const Constraint* next() const { return next_; }
84 Constraint(Node* left, InductionVariable::ConstraintKind kind, Node* right,
85 const Constraint* next)
92 const Constraint* next_;
107 head_ = new (zone) Constraint(left, kind, right, head_);
119 const Constraint* other_limit = other->head_;
139 const Constraint* head() const { return head_; }
146 const Constraint* head_ = nullptr;
175 // this loop if they are involved in the constraint
    [all...]
  /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;
  /frameworks/compile/mclinker/include/mcld/Script/
OutputSectDesc.h 39 enum Constraint { NO_CONSTRAINT, ONLY_IF_RO, ONLY_IF_RW };
78 Constraint constraint() const { return m_Constraint; } function in struct:mcld::OutputSectDesc::Prolog
104 Constraint m_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,
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-integration/1.1/
hamcrest-integration-1.1.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-integration/1.3/
hamcrest-integration-1.3.jar 
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralRules.java 352 * The default constraint that is always satisfied.
354 private static final Constraint NO_CONSTRAINT = new Constraint() {
1453 Constraint constraint; local
1669 private final Constraint constraint; field in class:PluralRules.Rule
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralRules.java 353 * The default constraint that is always satisfied.
355 private static final Constraint NO_CONSTRAINT = new Constraint() {
1407 Constraint constraint; local
1623 private final Constraint constraint; field in class:PluralRules.Rule
    [all...]

Completed in 439 milliseconds

1 2 3 4 5 6 7 8 9