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

1 2

  /external/guava/guava/src/com/google/common/collect/
Constraint.java 23 * A constraint that an element must satisfy in order to be added to a
38 * passed-in element. A non-deterministic constraint cannot reliably enforce
39 * that all the collection's elements meet the constraint, since the constraint
49 public interface Constraint<E> {
62 * Returns a brief human readable description of this constraint, such as
  /external/llvm/include/llvm/MC/MCParser/
MCParsedAsmOperand.h 26 /// Constraint - The constraint on this operand. Only valid when parsing
28 std::string Constraint;
34 void setConstraint(StringRef C) { Constraint = C.str(); }
35 StringRef getConstraint() { return Constraint; }
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 131 DefinedSVal Constraint;
136 TrackConstraintBRVisitor(DefinedSVal constraint, bool assumption)
137 : Constraint(constraint), Assumption(assumption), isSatisfied(false) {}
290 /// 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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Constraint.java 18 * The implementation of a constraint.
22 public abstract class Constraint {
23 /** The name of this constraint. */
25 /** The constraint's owner. */
27 /** The constraint's target. */
29 /** The structure with constraint's data. */
37 * This constructor creates the constraint instance.
40 * the constraint's structure (bConstraint clss in blender 2.49).
42 * the old memory address of the constraint owner
51 public Constraint(Structure constraintStructure, Long ownerOMA,
    [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/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-deltablue.js 29 * "The DeltaBlue Algorithm: An Incremental Constraint Hierarchy Solver"
35 * the constraint model is built by side-effects from constructors.
142 * (or "constraint") between a set of variables. A constraint supplies
145 * to represent a constraint.
147 function Constraint(strength) {
152 * Activate this constraint and attempt to satisfy it.
154 Constraint.prototype.addConstraint = function () {
160 * Attempt to find a way to enforce this constraint. If successful,
162 * graph. Answer the constraint that this constraint overrides, i
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-deltablue.js 29 * "The DeltaBlue Algorithm: An Incremental Constraint Hierarchy Solver"
35 * the constraint model is built by side-effects from constructors.
142 * (or "constraint") between a set of variables. A constraint supplies
145 * to represent a constraint.
147 function Constraint(strength) {
152 * Activate this constraint and attempt to satisfy it.
154 Constraint.prototype.addConstraint = function () {
160 * Attempt to find a way to enforce this constraint. If successful,
162 * graph. Answer the constraint that this constraint overrides, i
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-deltablue.js 26 * A JavaScript implementation of the DeltaBlue constraint-solving
29 * "The DeltaBlue Algorithm: An Incremental Constraint Hierarchy Solver"
35 * the constraint model is built by side-effects from constructors.
142 * (or "constraint") between a set of variables. A constraint supplies
145 * to represent a constraint.
147 function Constraint(strength) {
152 * Activate this constraint and attempt to satisfy it.
154 Constraint.prototype.addConstraint = function () {
160 * Attempt to find a way to enforce this constraint. If successful
    [all...]
  /external/llvm/utils/TableGen/
InstrInfoEmitter.cpp 135 // Fill in constraint info.
138 const CGIOperandList::ConstraintInfo &Constraint =
140 if (Constraint.isNone())
142 else if (Constraint.isEarlyClobber())
145 assert(Constraint.isTied());
146 Res += "((" + utostr(Constraint.getTiedOperand()) +
AsmMatcherEmitter.cpp 444 void formTwoOperandAlias(StringRef Constraint);
692 PrintFatalError(Loc, "missing '=' in two-operand alias constraint");
710 void MatchableInfo::formTwoOperandAlias(StringRef Constraint) {
713 parseTwoOperandConstraint(Constraint, TheDef->getLoc());
895 // this implies a constraint we would not honor.
    [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/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp     [all...]
ExprEngine.cpp 121 Optional<DefinedOrUnknownSVal> Constraint =
124 if (!Constraint)
127 if (ProgramStateRef newState = state->assume(*Constraint, true))
339 // the constraint manager.
358 // The constraint manager has not been cleaned up yet, so clean up now.
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 335 /// Constraint - This private class represents a constraint, as defined
342 /// There are 5 kinds of constraint, in a hierarchy.
343 /// 1) Any - indicates no constraint, any dependence is possible.
350 class Constraint {
359 /// isEmpty - Return true if the constraint is of kind Empty.
362 /// isPoint - Return true if the constraint is of kind Point.
365 /// isDistance - Return true if the constraint is of kind Distance.
368 /// isLine - Return true if the constraint is of kind Line.
370 /// true if the constraint is of kind Distance
    [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar 
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 

Completed in 1607 milliseconds

1 2