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

1 2 3 4 5 6

  /external/jetty/src/java/org/eclipse/jetty/security/
ConstraintMapping.java 21 import org.eclipse.jetty.util.security.Constraint;
30 Constraint _constraint;
34 * @return Returns the constraint.
36 public Constraint getConstraint()
43 * @param constraint The constraint to set.
45 public void setConstraint(Constraint constraint)
47 this._constraint = constraint;
DefaultAuthenticatorFactory.java 30 import org.eclipse.jetty.util.security.Constraint;
62 if (auth==null || Constraint.__BASIC_AUTH.equalsIgnoreCase(auth))
64 else if (Constraint.__DIGEST_AUTH.equalsIgnoreCase(auth))
66 else if (Constraint.__FORM_AUTH.equalsIgnoreCase(auth))
68 else if ( Constraint.__SPNEGO_AUTH.equalsIgnoreCase(auth) )
70 else if ( Constraint.__NEGOTIATE_AUTH.equalsIgnoreCase(auth) ) // see Bug #377076
71 authenticator = new SpnegoAuthenticator(Constraint.__NEGOTIATE_AUTH);
72 if (Constraint.__CERT_AUTH.equalsIgnoreCase(auth)||Constraint.__CERT_AUTH2.equalsIgnoreCase(auth))
ConstraintSecurityHandler.java 49 import org.eclipse.jetty.util.security.Constraint;
54 * 3.0 compliant and precomputes the constraint combinations for runtime
72 public static Constraint createConstraint()
74 return new Constraint();
79 * @param constraint
82 public static Constraint createConstraint(Constraint constraint)
86 return (Constraint)constraint.clone()
106 Constraint constraint = createConstraint(); local
138 Constraint constraint = createConstraint(); local
233 Constraint constraint = ConstraintSecurityHandler.createConstraint(name, securityElement); local
577 Constraint constraint = mapping.getConstraint(); local
    [all...]
  /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 33 * Factories and utilities pertaining to the {@link Constraint} interface.
53 private enum NotNullConstraint implements Constraint<Object> {
67 * Returns a constraint that verifies that the element is not null. If the
72 public static <E> Constraint<E> notNull() {
73 return (Constraint<E>) NotNullConstraint.INSTANCE;
78 * constraint. Any operations that add new elements to the collection will
79 * call the provided constraint. However, this method does not verify that
80 * existing elements satisfy the constraint.
85 * @param constraint the constraint that validates added element
96 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedCollection
135 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedSet
173 final Constraint<? super E> constraint; field in class:Constraints.ConstrainedSortedSet
226 final Constraint<? super E> constraint; field in class:Constraints.ConstrainedList
293 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedListIterator
347 private final Constraint<? super E> constraint; field in class:Constraints.ConstrainedMultiset
    [all...]
Constraint.java 24 * A constraint that an element must satisfy in order to be added to a
39 * passed-in element. A non-deterministic constraint cannot reliably enforce
40 * that all the collection's elements meet the constraint, since the constraint
58 interface Constraint<E> {
71 * 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/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/include/llvm/Analysis/
DependenceAnalysis.h 366 /// Constraint - This private class represents a constraint, as defined
373 /// There are 5 kinds of constraint, in a hierarchy.
374 /// 1) Any - indicates no constraint, any dependence is possible.
381 class Constraint {
390 /// isEmpty - Return true if the constraint is of kind Empty.
393 /// isPoint - Return true if the constraint is of kind Point.
396 /// isDistance - Return true if the constraint is of kind Distance.
399 /// isLine - Return true if the constraint is of kind Line.
401 /// true if the constraint is of kind Distance
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/security/
Constraint.java 26 * Describe an auth and/or data constraint.
30 public class Constraint implements Cloneable, Serializable
84 public Constraint()
95 public Constraint(String name, String role)
138 * @return List of roles for this constraint.
148 * @return True if the constraint contains the role.
169 * @return True if the constraint requires request authentication
192 if (c < 0 || c > DC_CONFIDENTIAL) throw new IllegalArgumentException("Constraint out of range");
208 * @return True if a data constraint has been set.

Completed in 290 milliseconds

1 2 3 4 5 6