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

  /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/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 134 DefinedSVal Constraint;
139 TrackConstraintBRVisitor(DefinedSVal constraint, bool assumption)
140 : Constraint(constraint), Assumption(assumption), isSatisfied(false) {}
  /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...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
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.
151 * (or "constraint") between a set of variables. A constraint supplies
154 * to represent a constraint.
156 function Constraint(strength) {
161 * Activate this constraint and attempt to satisfy it.
163 Constraint.prototype.addConstraint = function () {
169 * Attempt to find a way to enforce this constraint. If successful
    [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 133 // Fill in constraint info.
136 const CGIOperandList::ConstraintInfo &Constraint =
138 if (Constraint.isNone())
140 else if (Constraint.isEarlyClobber())
143 assert(Constraint.isTied());
144 Res += "((" + utostr(Constraint.getTiedOperand()) +
AsmMatcherEmitter.cpp 435 void formTwoOperandAlias(StringRef Constraint);
682 throw TGError(Loc, "missing '=' in two-operand alias constraint");
700 void MatchableInfo::formTwoOperandAlias(StringRef Constraint) {
703 parseTwoOperandConstraint(Constraint, TheDef->getLoc());
885 // 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 83 enum Constraint {
85 * This value must be unique. This constraint usually only makes sense
93 * This value must already exist. This constraint usually only makes sense
130 public static Constraint get(String name) {
132 return Constraint.valueOf(name.toUpperCase(Locale.US));
134 AdtPlugin.printErrorToConsole("Unexpected template constraint '" + name + "'");
139 for (Constraint s : Constraint.values()) {
200 public final EnumSet<Constraint> constraints;
225 EnumSet<Constraint> constraintSet = null
227 Constraint constraint = Constraint.get(s); local
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp     [all...]
ExprEngine.cpp 121 DefinedOrUnknownSVal *Constraint =
124 if (!Constraint)
127 if (ProgramStateRef newState = state->assume(*Constraint, true))
279 // the constraint manager.
298 // The constraint manager has not been cleaned up yet, so clean up now.
    [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 
com.ibm.icu_4.2.1.v20100412.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/tools/common/guava-tools/
guava-13.0.1.jar 

Completed in 3493 milliseconds