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

1 2 3 4

  /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 53 /** Format to chain constraint dependencies: button 1 above button2 etc */
69 // the parent id from a constraint, only via parent-relative params
99 Constraint constraint = new Constraint(type, view, parentView); local
100 view.dependsOn.add(constraint);
101 parentView.dependedOnBy.add(constraint);
104 // id-based constraint.
115 Constraint constraint = new Constraint(type, view, target) local
302 Constraint constraint = path.get(i); local
    [all...]
ConstraintPainter.java 42 import com.android.ide.common.layout.relative.DependencyGraph.Constraint;
62 * Paints a given match as a constraint.
77 * Paints a constraint.
83 * @param constraint The constraint to be drawn
85 private static void paintConstraint(IGraphics graphics, Constraint constraint,
86 Set<Constraint> allConstraints) {
87 ViewData source = constraint.from;
88 ViewData target = constraint.to
    [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!");
ConstraintInverseKinematics.java 13 * This class represents 'Inverse kinematics' constraint type in blender.
16 /*package*/ class ConstraintInverseKinematics extends Constraint {
21 * This constructor creates the constraint instance.
24 * the constraint's structure (bConstraint clss in blender 2.49).
26 * the old memory address of the constraint owner
133 * the bone to which the constraint is applied
  /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/include/llvm/MC/
MCInstrDesc.h 146 /// getOperandConstraint - Returns the value of the specific constraint if
149 MCOI::OperandConstraint Constraint) const {
151 (OpInfo[OpNum].Constraints & (1 << Constraint))) {
152 unsigned Pos = 16 + Constraint * 4;
  /external/clang/lib/CodeGen/
TargetInfo.h 114 StringRef Constraint,
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 42 /// constraint
52 template<size_t Constraint>
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
BlenderContext.java 51 import com.jme3.scene.plugins.blender.constraints.Constraint;
111 protected Map<Long, List<Constraint>> constraints = new HashMap<Long, List<Constraint>>();
475 public void addConstraints(Long ownerOMA, List<Constraint> constraints) {
476 List<Constraint> objectConstraints = this.constraints.get(ownerOMA);
478 objectConstraints = new ArrayList<Constraint>();
492 public List<Constraint> getConstraints(Long objectOMA) {

Completed in 254 milliseconds

1 2 3 4