Searched defs:Constraint (Results 1 - 25 of 38) sorted by relevance

12

/external/guava/guava/src/com/google/common/collect/
H A DConstraint.java58 interface Constraint<E> { interface
/external/guava/guava-tests/test/com/google/common/collect/
H A DConstrainedSetMultimapTest.java40 private enum Constraint implements Serializable, MapConstraint<String, String> { enum in class:ConstrainedSetMultimapTest
60 return MapConstraints.constrainedSetMultimap(multimap, Constraint.INSTANCE);
/external/llvm/include/llvm/MC/MCParser/
H A DMCParsedAsmOperand.h26 /// Constraint - The constraint on this operand. Only valid when parsing
28 std::string Constraint; member in class:llvm::MCParsedAsmOperand
34 void setConstraint(StringRef C) { Constraint = C.str(); }
35 StringRef getConstraint() { return Constraint; }
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitor.h130 DefinedSVal Constraint; member in class:clang::ento::TrackConstraintBRVisitor
141 : Constraint(constraint), Assumption(assumption), IsSatisfied(false),
142 IsZeroCheck(!Assumption && Constraint.getAs<Loc>()),
/external/clang/lib/CodeGen/
H A DTargetInfo.h128 StringRef Constraint,
127 adjustInlineAsmType(CodeGen::CodeGenFunction &CGF, StringRef Constraint, llvm::Type *Ty) const argument
H A DCGStmt.cpp1647 SimplifyConstraint(const char *Constraint, const TargetInfo &Target, argument
1651 while (*Constraint) {
1652 switch (*Constraint) {
1654 Result += Target.convertConstraint(Constraint);
1664 while (Constraint[1] && Constraint[1] != ',')
1665 Constraint++;
1669 Result += *Constraint;
1670 while (Constraint[1] && Constraint[
1702 AddVariableConstraints(const std::string &Constraint, const Expr &AsmExpr, const TargetInfo &Target, CodeGenModule &CGM, const AsmStmt &Stmt, const bool EarlyClobber) argument
[all...]
H A DTargetInfo.cpp516 StringRef Constraint,
518 if ((Constraint == "y" || Constraint == "&y") && Ty->isVectorTy()) {
653 StringRef Constraint,
655 return X86AdjustInlineAsmType(CGF, Constraint, Ty);
1571 StringRef Constraint,
1573 return X86AdjustInlineAsmType(CGF, Constraint, Ty);
515 X86AdjustInlineAsmType(CodeGen::CodeGenFunction &CGF, StringRef Constraint, llvm::Type* Ty) argument
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DConstraint.java22 public abstract class Constraint { class
51 public Constraint(Structure constraintStructure, Long ownerOMA, method in class:Constraint
/external/v8/benchmarks/
H A Ddeltablue.js35 * "The DeltaBlue Algorithm: An Incremental Constraint Hierarchy Solver"
153 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/jetty/src/java/org/eclipse/jetty/util/security/
H A DConstraint.java30 public class Constraint implements Cloneable, Serializable class in inherits:Cloneable,Serializable
84 public Constraint() method in class:Constraint
95 public Constraint(String name, String role) method in class:Constraint
192 if (c < 0 || c > DC_CONFIDENTIAL) throw new IllegalArgumentException("Constraint out of range");
/external/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp153 const CGIOperandList::ConstraintInfo &Constraint = local
155 if (Constraint.isNone())
157 else if (Constraint.isEarlyClobber())
160 assert(Constraint.isTied());
161 Res += "((" + utostr(Constraint.getTiedOperand()) +
H A DAsmMatcherEmitter.cpp455 void formTwoOperandAlias(StringRef Constraint);
725 void MatchableInfo::formTwoOperandAlias(StringRef Constraint) { argument
728 parseTwoOperandConstraint(Constraint, TheDef->getLoc());
1439 std::string Constraint = local
1441 if (Constraint != "") {
1446 AliasII->formTwoOperandAlias(Constraint);
/external/llvm/include/llvm/IR/
H A DInlineAsm.h91 // Constraint String Parsing
291 static unsigned getFlagWordForMem(unsigned InputFlag, unsigned Constraint) { argument
292 assert(Constraint <= 0x7fff && "Too large a memory constraint ID");
293 assert(Constraint <= Constraints_Max && "Unknown constraint ID");
295 return InputFlag | (Constraint << Constraints_ShiftAmount);
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp948 DefinedOrUnknownSVal Constraint = local
951 if (!state->assume(Constraint, true)) {
954 Constraint = svalBuilder.evalEQ(state, SymVal,
958 state = state->assume(Constraint, false);
H A DExprEngine.cpp134 Optional<DefinedOrUnknownSVal> Constraint = local
137 if (!Constraint)
140 if (ProgramStateRef newState = state->assume(*Constraint, true))
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h366 /// Constraint - This private class represents a constraint, as defined
381 class Constraint { class in class:llvm::DependenceAnalysis
605 Constraint &NewConstraint,
643 Constraint &NewConstraint) const;
661 Constraint &NewConstraint,
680 Constraint &NewConstraint) const;
698 Constraint &NewConstraint) const;
716 Constraint &NewConstraint) const;
844 bool intersectConstraints(Constraint *X,
845 const Constraint *
[all...]
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp216 MSP430TargetLowering::getConstraintType(const std::string &Constraint) const {
217 if (Constraint.size() == 1) {
218 switch (Constraint[0]) {
225 return TargetLowering::getConstraintType(Constraint);
230 const TargetRegisterInfo *TRI, const std::string &Constraint,
232 if (Constraint.size() == 1) {
233 // GCC Constraint Letters
234 switch (Constraint[0]) {
244 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
229 getRegForInlineAsmConstraint( const TargetRegisterInfo *TRI, const std::string &Constraint, MVT VT) const argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPluralRules.java354 private static final Constraint NO_CONSTRAINT = new Constraint() {
1099 private interface Constraint extends Serializable { interface in class:PluralRules
1168 private static Constraint parseConstraint(String description)
1171 Constraint result = null;
1174 Constraint andConstraint = null;
1177 Constraint newConstraint = NO_CONSTRAINT;
1402 Constraint constraint;
1434 * An implementation of Constraint representing a modulus,
1438 private static class RangeConstraint implements Constraint, Serializabl
[all...]
/external/llvm/lib/Target/R600/
H A DSIISelLowering.cpp2097 const std::string &Constraint,
2099 if (Constraint == "r") {
2109 if (Constraint.size() > 1) {
2111 if (Constraint[1] == 'v') {
2113 } else if (Constraint[1] == 's') {
2118 unsigned Idx = std::atoi(Constraint.substr(2).c_str());
2123 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
2096 getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, const std::string &Constraint, MVT VT) const argument
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp1964 const std::string &Constraint,
1966 if (Constraint.size() == 1) {
1967 switch (Constraint[0]) {
1975 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
1963 getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, const std::string &Constraint, MVT VT) const argument
/external/messageformat/java/com/ibm/icu/simple/
H A DPluralRules.java341 private static final Constraint NO_CONSTRAINT = new Constraint() {
1083 private interface Constraint extends Serializable { interface in class:PluralRules
1158 private static Constraint parseConstraint(String description)
1161 Constraint result = null;
1164 Constraint andConstraint = null;
1167 Constraint newConstraint = NO_CONSTRAINT;
1392 Constraint constraint;
1424 * An implementation of Constraint representing a modulus,
1428 private static class RangeConstraint implements Constraint, Serializabl
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2075 TargetLowering::getConstraintType(const std::string &Constraint) const {
2076 unsigned S = Constraint.size();
2079 switch (Constraint[0]) {
2107 if (S > 1 && Constraint[0] == '{' && Constraint[S-1] == '}') {
2108 if (S == 8 && !Constraint.compare(1, 6, "memory", 6)) // "{memory}"
2129 std::string &Constraint,
2133 if (Constraint.length() > 1) return;
2135 char ConstraintLetter = Constraint[0];
2195 const std::string &Constraint,
2128 LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops, SelectionDAG &DAG) const argument
2194 getRegForInlineAsmConstraint(const TargetRegisterInfo *RI, const std::string &Constraint, MVT VT) const argument
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp2449 const TargetRegisterInfo *TRI, const std::string &Constraint,
2451 if (Constraint.size() == 1) {
2452 switch (Constraint[0]) {
2471 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
2448 getRegForInlineAsmConstraint( const TargetRegisterInfo *TRI, const std::string &Constraint, MVT VT) const argument
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp2507 SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops,
2509 if (Constraint.length() > 1)
2512 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
3742 NVPTXTargetLowering::getConstraintType(const std::string &Constraint) const {
3743 if (Constraint.size() == 1) {
3744 switch (Constraint[0]) {
3759 return TargetLowering::getConstraintType(Constraint);
3764 const std::string &Constraint,
3766 if (Constraint.size() == 1) {
3767 switch (Constraint[
2506 LowerAsmOperandForConstraint( SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops, SelectionDAG &DAG) const argument
3763 getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, const std::string &Constraint, MVT VT) const argument
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp3065 SparcTargetLowering::getConstraintType(const std::string &Constraint) const {
3066 if (Constraint.size() == 1) {
3067 switch (Constraint[0]) {
3075 return TargetLowering::getConstraintType(Constraint);
3107 std::string &Constraint,
3113 if (Constraint.length() > 1)
3116 char ConstraintLetter = Constraint[0];
3133 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
3138 const std::string &Constraint,
3140 if (Constraint
3106 LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops, SelectionDAG &DAG) const argument
3137 getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, const std::string &Constraint, MVT VT) const argument
[all...]

Completed in 770 milliseconds

12