Home
last modified time | relevance | path

Searched refs:Constraint (Results 1 – 25 of 91) sorted by relevance

1234

/external/jetty/src/java/org/eclipse/jetty/security/
DDefaultAuthenticatorFactory.java30 import org.eclipse.jetty.util.security.Constraint;
62 if (auth==null || Constraint.__BASIC_AUTH.equalsIgnoreCase(auth)) in getAuthenticator()
64 else if (Constraint.__DIGEST_AUTH.equalsIgnoreCase(auth)) in getAuthenticator()
66 else if (Constraint.__FORM_AUTH.equalsIgnoreCase(auth)) in getAuthenticator()
68 else if ( Constraint.__SPNEGO_AUTH.equalsIgnoreCase(auth) ) in getAuthenticator()
70 else if ( Constraint.__NEGOTIATE_AUTH.equalsIgnoreCase(auth) ) // see Bug #377076 in getAuthenticator()
71 authenticator = new SpnegoAuthenticator(Constraint.__NEGOTIATE_AUTH); in getAuthenticator()
72 … if (Constraint.__CERT_AUTH.equalsIgnoreCase(auth)||Constraint.__CERT_AUTH2.equalsIgnoreCase(auth)) in getAuthenticator()
DConstraintMapping.java21 import org.eclipse.jetty.util.security.Constraint;
30 Constraint _constraint;
36 public Constraint getConstraint() in getConstraint()
45 public void setConstraint(Constraint constraint) in setConstraint()
DConstraintSecurityHandler.java49 import org.eclipse.jetty.util.security.Constraint;
72 public static Constraint createConstraint() in createConstraint()
74 return new Constraint(); in createConstraint()
82 public static Constraint createConstraint(Constraint constraint) in createConstraint()
86 return (Constraint)constraint.clone(); in createConstraint()
104 …public static Constraint createConstraint (String name, boolean authenticate, String[] roles, int … in createConstraint()
106 Constraint constraint = createConstraint(); in createConstraint()
122 public static Constraint createConstraint (String name, HttpConstraintElement element) in createConstraint()
136 …public static Constraint createConstraint (String name, String[] rolesAllowed, EmptyRoleSemantic p… in createConstraint()
138 Constraint constraint = createConstraint(); in createConstraint()
[all …]
/external/guava/guava/src/com/google/common/collect/
DConstraints.java53 Collection<E> collection, Constraint<? super E> constraint) { in constrainedCollection()
60 private final Constraint<? super E> constraint;
63 Collection<E> delegate, Constraint<? super E> constraint) { in ConstrainedCollection()
92 Set<E> set, Constraint<? super E> constraint) { in constrainedSet()
99 private final Constraint<? super E> constraint;
101 public ConstrainedSet(Set<E> delegate, Constraint<? super E> constraint) { in ConstrainedSet()
130 SortedSet<E> sortedSet, Constraint<? super E> constraint) { in constrainedSortedSet()
137 final Constraint<? super E> constraint;
140 SortedSet<E> delegate, Constraint<? super E> constraint) { in ConstrainedSortedSet()
180 List<E> list, Constraint<? super E> constraint) { in constrainedList()
[all …]
/external/llvm/include/llvm/Analysis/
DDependenceAnalysis.h387 class Constraint {
611 Constraint &NewConstraint,
649 Constraint &NewConstraint) const;
667 Constraint &NewConstraint,
686 Constraint &NewConstraint) const;
704 Constraint &NewConstraint) const;
722 Constraint &NewConstraint) const;
849 bool intersectConstraints(Constraint *X,
850 const Constraint *Y);
860 SmallVectorImpl<Constraint> &Constraints,
[all …]
/external/webrtc/talk/app/webrtc/
Dmediaconstraintsinterface.h46 struct Constraint { struct
47 Constraint() {} in Constraint() function
48 Constraint(const std::string& key, const std::string value) in Constraint() function
55 class Constraints : public std::vector<Constraint> { argument
/external/llvm/include/llvm/MC/MCParser/
DMCParsedAsmOperand.h31 std::string Constraint; variable
45 void setConstraint(StringRef C) { Constraint = C.str(); } in setConstraint()
46 StringRef getConstraint() { return Constraint; } in getConstraint()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DPluralRules.java353 private static final Constraint NO_CONSTRAINT = new Constraint() {
1098 private interface Constraint extends Serializable { interface in PluralRules
1167 private static Constraint parseConstraint(String description) in parseConstraint()
1170 Constraint result = null; in parseConstraint()
1173 Constraint andConstraint = null; in parseConstraint()
1176 Constraint newConstraint = NO_CONSTRAINT; in parseConstraint()
1401 Constraint constraint; in parseRule()
1437 private static class RangeConstraint implements Constraint, Serializable {
1539 private static abstract class BinaryConstraint implements Constraint,
1542 protected final Constraint a;
[all …]
/external/messageformat/java/com/ibm/icu/simple/
DPluralRules.java341 private static final Constraint NO_CONSTRAINT = new Constraint() {
1083 private interface Constraint extends Serializable { interface in PluralRules
1158 private static Constraint parseConstraint(String description) in parseConstraint()
1161 Constraint result = null; in parseConstraint()
1164 Constraint andConstraint = null; in parseConstraint()
1167 Constraint newConstraint = NO_CONSTRAINT; in parseConstraint()
1392 Constraint constraint; in parseRule()
1428 private static class RangeConstraint implements Constraint, Serializable {
1530 private static abstract class BinaryConstraint implements Constraint,
1533 protected final Constraint a;
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DPluralRules.java352 private static final Constraint NO_CONSTRAINT = new Constraint() {
1144 private interface Constraint extends Serializable { interface in PluralRules
1213 private static Constraint parseConstraint(String description) in parseConstraint()
1216 Constraint result = null; in parseConstraint()
1219 Constraint andConstraint = null; in parseConstraint()
1222 Constraint newConstraint = NO_CONSTRAINT; in parseConstraint()
1447 Constraint constraint; in parseRule()
1483 private static class RangeConstraint implements Constraint, Serializable {
1585 private static abstract class BinaryConstraint implements Constraint,
1588 protected final Constraint a;
[all …]
/external/webrtc/talk/app/webrtc/test/
Dfakeconstraints.h54 mandatory_.push_back(Constraint(key, rtc::ToString<T>(value))); in AddMandatory()
69 mandatory_.push_back(Constraint(key, rtc::ToString<T>(value))); in SetMandatory()
74 optional_.push_back(Constraint(key, rtc::ToString<T>(value))); in AddOptional()
/external/jetty/src/java/org/eclipse/jetty/util/security/
DConstraint.java30 public class Constraint implements Cloneable, Serializable class
84 public Constraint() in Constraint() method in Constraint
95 public Constraint(String name, String role) in Constraint() method in Constraint
/external/llvm/include/llvm/IR/
DInlineAsm.h299 static unsigned getFlagWordForMem(unsigned InputFlag, unsigned Constraint) { in getFlagWordForMem() argument
300 assert(Constraint <= 0x7fff && "Too large a memory constraint ID"); in getFlagWordForMem()
301 assert(Constraint <= Constraints_Max && "Unknown constraint ID"); in getFlagWordForMem()
303 return InputFlag | (Constraint << Constraints_ShiftAmount); in getFlagWordForMem()
/external/autotest/frontend/shared/
Dquery_lib.py87 class Constraint(object): class
92 class _FieldConstraint(Constraint):
126 class _RelatedExistenceConstraint(Constraint):
156 class _KeyvalConstraint(Constraint):
/external/guava/guava-tests/test/com/google/common/collect/
DConstrainedSetMultimapTest.java40 private enum Constraint implements Serializable, MapConstraint<String, String> { enum in ConstrainedSetMultimapTest
60 return MapConstraints.constrainedSetMultimap(multimap, Constraint.INSTANCE); in suite()
/external/llvm/include/llvm/MC/
DMCInstrDesc.h163 MCOI::OperandConstraint Constraint) const { in getOperandConstraint() argument
165 (OpInfo[OpNum].Constraints & (1 << Constraint))) { in getOperandConstraint()
166 unsigned Pos = 16 + Constraint * 4; in getOperandConstraint()
/external/clang/lib/CodeGen/
DCGStmt.cpp1568 SimplifyConstraint(const char *Constraint, const TargetInfo &Target, in SimplifyConstraint() argument
1572 while (*Constraint) { in SimplifyConstraint()
1573 switch (*Constraint) { in SimplifyConstraint()
1575 Result += Target.convertConstraint(Constraint); in SimplifyConstraint()
1585 while (Constraint[1] && Constraint[1] != ',') in SimplifyConstraint()
1586 Constraint++; in SimplifyConstraint()
1590 Result += *Constraint; in SimplifyConstraint()
1591 while (Constraint[1] && Constraint[1] == *Constraint) in SimplifyConstraint()
1592 Constraint++; in SimplifyConstraint()
1604 bool result = Target.resolveSymbolicName(Constraint, *OutCons, Index); in SimplifyConstraint()
[all …]
/external/v8/benchmarks/
Ddeltablue.js153 function Constraint(strength) { class
160 Constraint.prototype.addConstraint = function () {
172 Constraint.prototype.satisfy = function (mark) {
190 Constraint.prototype.destroyConstraint = function () {
200 Constraint.prototype.isInput = function () {
219 UnaryConstraint.inheritsFrom(Constraint);
349 BinaryConstraint.inheritsFrom(Constraint);
/external/clang/lib/Basic/
DTargets.cpp1009 std::string convertConstraint(const char *&Constraint) const override { in convertConstraint()
1011 switch (*Constraint) { in convertConstraint()
1015 R = std::string("^") + std::string(Constraint, 2); in convertConstraint()
1016 Constraint++; in convertConstraint()
1019 return TargetInfo::convertConstraint(Constraint); in convertConstraint()
2382 bool validateOutputSize(StringRef Constraint, unsigned Size) const override;
2384 bool validateInputSize(StringRef Constraint, unsigned Size) const override;
2386 virtual bool validateOperandSize(StringRef Constraint, unsigned Size) const;
2388 std::string convertConstraint(const char *&Constraint) const override;
3552 bool X86TargetInfo::validateOutputSize(StringRef Constraint, in validateOutputSize() argument
[all …]
/external/jetty/src/java/org/eclipse/jetty/security/authentication/
DSpnegoAuthenticator.java36 import org.eclipse.jetty.util.security.Constraint;
42 private String _authMethod = Constraint.__SPNEGO_AUTH;
DBasicAuthenticator.java36 import org.eclipse.jetty.util.security.Constraint;
54 return Constraint.__BASIC_AUTH; in getAuthMethod()
/external/llvm/lib/Target/Sparc/
DSparcISelLowering.h75 ConstraintType getConstraintType(StringRef Constraint) const override;
80 std::string &Constraint,
85 StringRef Constraint, MVT VT) const override;
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporterVisitor.h131 DefinedSVal Constraint; variable
142 : Constraint(constraint), Assumption(assumption), IsSatisfied(false), in TrackConstraintBRVisitor()
143 IsZeroCheck(!Assumption && Constraint.getAs<Loc>()), in TrackConstraintBRVisitor()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/
Dquestion.py287 class Constraint(object): class
302 class NumericConstraint(Constraint):
310 class LengthConstraint(Constraint):
318 class RegExConstraint(Constraint):
/external/llvm/utils/TableGen/
DInstrInfoEmitter.cpp153 const CGIOperandList::ConstraintInfo &Constraint = in GetOperandInfo() local
155 if (Constraint.isNone()) in GetOperandInfo()
157 else if (Constraint.isEarlyClobber()) in GetOperandInfo()
160 assert(Constraint.isTied()); in GetOperandInfo()
161 Res += "((" + utostr(Constraint.getTiedOperand()) + in GetOperandInfo()

1234