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

1 2 3 4

  /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/autotest/frontend/shared/
query_lib.py 4 """Raised when an error occurs applying a Constraint."""
9 # maps selector name to (selector, constraint)
37 def add_selector(self, selector, constraint):
40 self._selectors[selector.name] = (selector, constraint)
49 return tuple(selector for selector, constraint
61 _, constraint = self._selectors[selector_name]
63 return constraint.apply_constraint(queryset, value, comparison_type,
87 class Constraint(object):
92 class _FieldConstraint(Constraint):
126 class _RelatedExistenceConstraint(Constraint)
    [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/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 131 DefinedSVal Constraint;
141 TrackConstraintBRVisitor(DefinedSVal constraint, bool assumption)
142 : Constraint(constraint), Assumption(assumption), IsSatisfied(false),
143 IsZeroCheck(!Assumption && Constraint.getAs<Loc>()),
158 /// Checks if the constraint is valid in the current state.
308 /// Track if we found the node where the constraint was first added.
  /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/jetty/src/java/org/eclipse/jetty/util/security/
Constraint.java 26 * Describe an auth and/or data constraint.
30 public class Constraint implements Cloneable, Serializable
84 public Constraint()
95 public Constraint(String name, String role)
138 * @return List of roles for this constraint.
148 * @return True if the constraint contains the role.
169 * @return True if the constraint requires request authentication
192 if (c < 0 || c > DC_CONFIDENTIAL) throw new IllegalArgumentException("Constraint out of range");
208 * @return True if a data constraint has been set.
  /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 exception.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."""
192 Internal generator for getting users/roles/types in a constraint
242 """Object class for this constraint."""
264 class Constraint(BaseConstraint)
    [all...]
  /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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/
question.py 287 class Constraint(object):
302 class NumericConstraint(Constraint):
310 class LengthConstraint(Constraint):
318 class RegExConstraint(Constraint):
  /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()) +
AsmMatcherEmitter.cpp 490 void formTwoOperandAlias(StringRef Constraint);
740 PrintFatalError(Loc, "missing '=' in two-operand alias constraint");
758 void MatchableInfo::formTwoOperandAlias(StringRef Constraint) {
761 parseTwoOperandConstraint(Constraint, TheDef->getLoc());
    [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...]
  /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...]
  /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 135 Optional<DefinedOrUnknownSVal> Constraint =
138 if (!Constraint)
141 if (ProgramStateRef newState = state->assume(*Constraint, true))
385 // the constraint manager.
404 // The constraint manager has not been cleaned up yet, so clean up now.
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 372 /// Constraint - This private class represents a constraint, as defined
379 /// There are 5 kinds of constraint, in a hierarchy.
380 /// 1) Any - indicates no constraint, any dependence is possible.
387 class Constraint {
397 /// isEmpty - Return true if the constraint is of kind Empty.
400 /// isPoint - Return true if the constraint is of kind Point.
403 /// isDistance - Return true if the constraint is of kind Distance.
406 /// isLine - Return true if the constraint is of kind Line.
408 /// true if the constraint is of kind Distance
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralRules.java 350 * The default constraint that is always satisfied.
352 private static final Constraint NO_CONSTRAINT = new Constraint() {
1447 Constraint constraint; local
1652 private final Constraint constraint; field in class:PluralRules.Rule
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralRules.java 351 * The default constraint that is always satisfied.
353 private static final Constraint NO_CONSTRAINT = new Constraint() {
1401 Constraint constraint; local
1606 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 1764 milliseconds

1 2 3 4