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

1 2 3 4 5

  /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
  /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/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/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 132 DefinedSVal Constraint;
142 TrackConstraintBRVisitor(DefinedSVal constraint, bool assumption)
143 : Constraint(constraint), Assumption(assumption), IsSatisfied(false),
144 IsZeroCheck(!Assumption && Constraint.getAs<Loc>()),
159 /// Checks if the constraint is valid in the current state.
309 /// Track if we found the node where the constraint was first added.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
constraint.py 29 """Determine if this is a regular or MLS constraint/validatetrans."""
42 """Validate constraint rule types."""
44 raise InvalidConstraintType("{0} is not a valid constraint type.".format(t))
50 """Factory function for creating constraint objects."""
55 return Constraint(policy, sym, "mlsconstrain")
60 return Constraint(policy, sym, "constrain")
70 """Base class for constraint rules."""
109 """Object class for this constraint."""
125 The constraint's expression in infix notation.
187 The constraint's expression in postfix notation
    [all...]
  /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...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
InstrInfoEmitter.cpp 109 // Fill in constraint info.
112 const CGIOperandList::ConstraintInfo &Constraint =
114 if (Constraint.isNone())
116 else if (Constraint.isEarlyClobber())
119 assert(Constraint.isTied());
120 Res += "((" + utostr(Constraint.getTiedOperand()) +
  /external/llvm/utils/TableGen/
InstrInfoEmitter.cpp 150 // Fill in constraint info.
153 const CGIOperandList::ConstraintInfo &Constraint =
155 if (Constraint.isNone())
157 else if (Constraint.isEarlyClobber())
160 assert(Constraint.isTied());
161 Res += "((" + utostr(Constraint.getTiedOperand()) +
  /external/v8/benchmarks/
deltablue.js 32 * A JavaScript implementation of the DeltaBlue constraint-solving
35 * "The DeltaBlue Algorithm: An Incremental Constraint Hierarchy Solver"
41 * the constraint model is built by side-effects from constructors.
148 * (or "constraint") between a set of variables. A constraint supplies
151 * to represent a constraint.
153 function Constraint(strength) {
158 * Activate this constraint and attempt to satisfy it.
160 Constraint.prototype.addConstraint = function () {
166 * Attempt to find a way to enforce this constraint. If successful
    [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...]
  /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...]
  /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...]
  /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...]
  /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/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp     [all...]
ExprEngine.cpp 136 Optional<DefinedOrUnknownSVal> Constraint =
139 if (!Constraint)
142 if (ProgramStateRef newState = state->assume(*Constraint, true))
386 // the constraint manager.
405 // The constraint manager has not been cleaned up yet, so clean up now.
    [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/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...]
  /external/messageformat/java/com/ibm/icu/simple/
PluralRules.java 339 * The default constraint that is always satisfied.
341 private static final Constraint NO_CONSTRAINT = new Constraint() {
1392 Constraint constraint; local
1597 private final Constraint constraint; field in class:PluralRules.Rule
    [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-impl-0.9.0.M2.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-impl/1.0.2.v20150114/
aether-impl-1.0.2.v20150114.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar 

Completed in 1715 milliseconds

1 2 3 4 5