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

1 2 3 4

  /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/guava/guava/src/com/google/common/collect/
Constraints.java 32 * Factories and utilities pertaining to the {@link Constraint} interface.
45 private enum NotNullConstraint implements Constraint<Object> {
59 * Returns a constraint that verifies that the element is not null. If the
64 public static <E> Constraint<E> notNull() {
65 return (Constraint<E>) NotNullConstraint.INSTANCE;
70 * constraint. Any operations that add new elements to the collection will
71 * call the provided constraint. However, this method does not verify that
72 * existing elements satisfy the constraint.
77 * @param constraint the constraint that validates added element
88 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedCollection
127 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedSet
165 final Constraint<? super E> constraint; field in class:Constraints.ConstrainedSortedSet
218 final Constraint<? super E> constraint; field in class:Constraints.ConstrainedList
285 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedListIterator
339 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedMultiset
    [all...]
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
  /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/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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintNull.java 9 * This class represents 'Null' constraint type in blender.
12 /*package*/ class ConstraintNull extends Constraint {
15 * This constructor creates the constraint instance.
18 * the constraint's structure (bConstraint clss in blender 2.49).
20 * the old memory address of the constraint owner
ConstraintHelper.java 19 * This class should be used for constraint calculations.
25 private static final Map<String, Class<? extends Constraint>> constraintClasses = new HashMap<String, Class<? extends Constraint>>(22);
72 * the structure we read constraint's for
111 List<Constraint> constraintsList = new ArrayList<Constraint>();
117 for (Structure constraint : constraints) {
118 String constraintName = constraint.getFieldValue("name").toString();
122 float enforce = ((Number) constraint.getFieldValue("enforce")).floatValue();
125 constraintsList.add(this.createConstraint(constraint, boneOMA, ipo, blenderContext));
    [all...]
ConstraintAction.java 11 * This class represents 'Action' constraint type in blender.
14 /*package*/ class ConstraintAction extends Constraint {
18 * This constructor creates the constraint instance.
21 * the constraint's structure (bConstraint clss in blender 2.49).
23 * the old memory address of the constraint owner
39 // TODO: implement 'Action' constraint
40 LOGGER.log(Level.WARNING, "'Action' constraint NOT implemented!");
ConstraintChildOf.java 11 * This class represents 'ChildOf' constraint type in blender.
14 /*package*/ class ConstraintChildOf extends Constraint {
18 * This constructor creates the constraint instance.
21 * the constraint's structure (bConstraint clss in blender 2.49).
23 * the old memory address of the constraint owner
39 // TODO: implement ChildOf constraint
40 LOGGER.log(Level.WARNING, "ChildOf constraint NOT implemented!");
ConstraintClampTo.java 11 * This class represents 'Clamp to' constraint type in blender.
14 /*package*/ class ConstraintClampTo extends Constraint {
18 * This constructor creates the constraint instance.
21 * the constraint's structure (bConstraint clss in blender 2.49).
23 * the old memory address of the constraint owner
ConstraintDampTrack.java 12 * The damp track constraint. Available for blender 2.50+.
15 /*package*/ class ConstraintDampTrack extends Constraint {
19 * This constructor creates the constraint instance.
22 * the constraint's structure (bConstraint clss in blender 2.49).
24 * the old memory address of the constraint owner
41 LOGGER.log(Level.WARNING, "'Damp Track' constraint NOT implemented!");
ConstraintFollowPath.java 11 * This class represents 'Follow path' constraint type in blender.
14 /*package*/ class ConstraintFollowPath extends Constraint {
18 * This constructor creates the constraint instance.
21 * the constraint's structure (bConstraint clss in blender 2.49).
23 * the old memory address of the constraint owner
ConstraintLockTrack.java 11 * This class represents 'Action' constraint type in blender.
14 /*package*/ class ConstraintLockTrack extends Constraint {
18 * This constructor creates the constraint instance.
21 * the constraint's structure (bConstraint clss in blender 2.49).
23 * the old memory address of the constraint owner
40 // TODO: implement 'Lock track' constraint
41 LOGGER.log(Level.WARNING, "'Lock track' constraint NOT implemented!");
ConstraintMinMax.java 11 * This class represents 'Min max' constraint type in blender.
14 /*package*/ class ConstraintMinMax extends Constraint {
18 * This constructor creates the constraint instance.
21 * the constraint's structure (bConstraint clss in blender 2.49).
23 * the old memory address of the constraint owner
39 // TODO: implement 'Min max' constraint
40 LOGGER.log(Level.WARNING, "'Min max' constraint NOT implemented!");
ConstraintPivot.java 12 * The pivot constraint. Available for blender 2.50+.
15 /*package*/ class ConstraintPivot extends Constraint {
19 * This constructor creates the constraint instance.
22 * the constraint's structure (bConstraint clss in blender 2.49).
24 * the old memory address of the constraint owner
42 LOGGER.log(Level.WARNING, "'Pivot' constraint NOT implemented!");
ConstraintPython.java 11 * This class represents 'Python' constraint type in blender.
14 /*package*/ class ConstraintPython extends Constraint {
18 * This constructor creates the constraint instance.
21 * the constraint's structure (bConstraint clss in blender 2.49).
23 * the old memory address of the constraint owner
39 // TODO: implement 'Python' constraint
40 LOGGER.log(Level.WARNING, "'Python' constraint NOT implemented!");
ConstraintRigidBodyJoint.java 11 * This class represents 'Rigid body joint' constraint type in blender.
14 /*package*/ class ConstraintRigidBodyJoint extends Constraint {
18 * This constructor creates the constraint instance.
21 * the constraint's structure (bConstraint clss in blender 2.49).
23 * the old memory address of the constraint owner
39 // TODO: implement 'Rigid body joint' constraint
40 LOGGER.log(Level.WARNING, "'Rigid body joint' constraint NOT implemented!");
ConstraintSplineInverseKinematic.java 12 * The spline inverse kinematic constraint. Available for blender 2.50+.
15 /*package*/ class ConstraintSplineInverseKinematic extends Constraint {
19 * This constructor creates the constraint instance.
22 * the constraint's structure (bConstraint clss in blender 2.49).
24 * the old memory address of the constraint owner
42 LOGGER.log(Level.WARNING, "'Splie IK' constraint NOT implemented!");
ConstraintStretchTo.java 11 * This class represents 'Stretch to' constraint type in blender.
14 /*package*/ class ConstraintStretchTo extends Constraint {
18 * This constructor creates the constraint instance.
21 * the constraint's structure
23 * the old memory address of the constraint owner
39 // TODO: implement 'Stretch to' constraint
40 LOGGER.log(Level.WARNING, "'Stretch to' constraint NOT implemented!");
ConstraintTransform.java 11 * This class represents 'Transform' constraint type in blender.
14 /*package*/ class ConstraintTransform extends Constraint {
18 * This constructor creates the constraint instance.
21 * the constraint's structure
23 * the old memory address of the constraint owner
39 // TODO: implement 'Transform' constraint
40 LOGGER.log(Level.WARNING, "'Transform' constraint NOT implemented!");
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.h 64 ConstraintType getConstraintType(const std::string &Constraint) const;
66 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const;
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.h 109 ConstraintType getConstraintType(const std::string &Constraint) const;
111 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const;
132 virtual void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
  /external/llvm/lib/Target/MBlaze/
MBlazeISelLowering.h 159 ConstraintType getConstraintType(const std::string &Constraint) const;
161 /// Examine constraint string and operand type and determine a weight value.
164 AsmOperandInfo &info, const char *constraint) const;
167 getRegForInlineAsmConstraint(const std::string &Constraint,
  /external/clang/lib/CodeGen/
TargetInfo.h 114 StringRef Constraint,

Completed in 463 milliseconds

1 2 3 4