HomeSort by relevance Sort by last modified time
    Searched full:constraint (Results 1 - 25 of 949) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
MapConstraints.java 49 * Returns a constraint that verifies that neither the key nor the value is
73 * constraint. Any operations that add new mappings will call the provided
74 * constraint. However, this method does not verify that existing mappings
75 * satisfy the constraint.
80 * @param constraint the constraint that validates added entries
84 Map<K, V> map, MapConstraint<? super K, ? super V> constraint) {
85 return new ConstrainedMap<K, V>(map, constraint);
90 * constraint. Any operations that add new mappings will call the provided
91 * constraint. However, this method does not verify that existing mapping
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
SliderJoint.java 48 * The slider constraint allows the body to rotate around one axis and translate along this axis.
83 return ((SliderConstraint) constraint).getLowerLinLimit();
87 ((SliderConstraint) constraint).setLowerLinLimit(lowerLinLimit);
91 return ((SliderConstraint) constraint).getUpperLinLimit();
95 ((SliderConstraint) constraint).setUpperLinLimit(upperLinLimit);
99 return ((SliderConstraint) constraint).getLowerAngLimit();
103 ((SliderConstraint) constraint).setLowerAngLimit(lowerAngLimit);
107 return ((SliderConstraint) constraint).getUpperAngLimit();
111 ((SliderConstraint) constraint).setUpperAngLimit(upperAngLimit);
115 return ((SliderConstraint) constraint).getSoftnessDirLin()
    [all...]
  /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/
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!");
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!");
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!");
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!");
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!");
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!");
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!");
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
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
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
  /frameworks/base/media/java/android/drm/mobile1/
DrmConstraintInfo.java 22 * This class provides interfaces to access the DRM constraint.
26 * The constraint of count.
31 * The constraint of start date.
36 * The constraint of end date.
41 * The constraint of interval.
56 * Get the count constraint.
65 * Get the start date constraint.
77 * Get the end date constraint.
89 * Get the Interval constraint.
  /external/llvm/test/CodeGen/Generic/
2007-04-27-InlineAsm-X-Dest.ll 3 ; Test that we can have an "X" output constraint.
  /external/clang/test/CodeGen/
2010-08-12-asm-aggr-arg.c 3 // we don't get an error with "input constraint with a matching output
4 // constraint of incompatible type!"
  /external/llvm/test/CodeGen/Thumb/
inlineasm-imm-thumb.ll 3 ; Test Thumb-mode "I" constraint, for ADD immediate.
9 ; Test Thumb-mode "J" constraint, for negated ADD immediates.
15 ; Test Thumb-mode "K" constraint, for compatibility with GCC's internal use.
21 ; Test Thumb-mode "L" constraint, for 3-operand ADD immediates.
27 ; Test Thumb-mode "M" constraint, for "ADD r = sp + imm".
33 ; Test Thumb-mode "N" constraint, for values between 0 and 31.
39 ; Test Thumb-mode "O" constraint, for "ADD sp = sp + imm".
  /external/llvm/test/CodeGen/ARM/
inlineasm-imm-arm.ll 3 ; Test ARM-mode "I" constraint, for any Data Processing immediate.
9 ; Test ARM-mode "J" constraint, for compatibility with unknown use in GCC.
15 ; Test ARM-mode "K" constraint, for bitwise inverted Data Processing immediates.
21 ; Test ARM-mode "L" constraint, for negated Data Processing immediates.
27 ; Test ARM-mode "M" constraint, for value between 0 and 32.
  /frameworks/base/core/java/android/widget/
FilterQueryProvider.java 30 * Runs a query with the specified constraint. This query is requested
33 * Contract: when constraint is null or empty, the original results,
36 * @param constraint the constraint with which the query must
41 Cursor runQuery(CharSequence constraint);
  /external/llvm/test/CodeGen/Mips/
inlineasm-cnstrnt-bad-I-1.ll 2 ;This is a negative test. The constant value given for the constraint
11 ;CHECK-ERRORS: error: invalid operand for inline asm constraint 'I'

Completed in 478 milliseconds

1 2 3 4 5 6 7 8 91011>>