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

123

/external/guava/guava/src/com/google/common/collect/
H A DConstraint.java44 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/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitor.h132 DefinedSVal Constraint; member in class:clang::ento::final
143 : Constraint(constraint), Assumption(assumption), IsSatisfied(false),
144 IsZeroCheck(!Assumption && Constraint.getAs<Loc>()),
/external/llvm/include/llvm/MC/MCParser/
H A DMCParsedAsmOperand.h29 /// Constraint - The constraint on this operand. Only valid when parsing
31 std::string Constraint; member in class:llvm::MCParsedAsmOperand
36 // that verbosity, just rely on defaulted copy ops. It's only the Constraint
45 void setConstraint(StringRef C) { Constraint = C.str(); }
46 StringRef getConstraint() { return Constraint; }
/external/clang/lib/CodeGen/
H A DTargetInfo.h127 StringRef Constraint,
126 adjustInlineAsmType(CodeGen::CodeGenFunction &CGF, StringRef Constraint, llvm::Type *Ty) const argument
H A DCGStmt.cpp1625 SimplifyConstraint(const char *Constraint, const TargetInfo &Target, argument
1629 while (*Constraint) {
1630 switch (*Constraint) {
1632 Result += Target.convertConstraint(Constraint);
1642 while (Constraint[1] && Constraint[1] != ',')
1643 Constraint++;
1647 Result += *Constraint;
1648 while (Constraint[1] && Constraint[
1678 AddVariableConstraints(const std::string &Constraint, const Expr &AsmExpr, const TargetInfo &Target, CodeGenModule &CGM, const AsmStmt &Stmt, const bool EarlyClobber) argument
[all...]
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DInstrInfoEmitter.cpp112 const CGIOperandList::ConstraintInfo &Constraint = local
114 if (Constraint.isNone())
116 else if (Constraint.isEarlyClobber())
119 assert(Constraint.isTied());
120 Res += "((" + utostr(Constraint.getTiedOperand()) +
/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/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()) +
/external/webrtc/talk/app/webrtc/
H A Dmediaconstraintsinterface.h46 struct Constraint { struct in class:webrtc::MediaConstraintsInterface
47 Constraint() {} function in struct:webrtc::MediaConstraintsInterface::Constraint
48 Constraint(const std::string& key, const std::string value) function in struct:webrtc::MediaConstraintsInterface::Constraint
55 class Constraints : public std::vector<Constraint> {
63 // Constraint keys used by a local video source.
74 // Constraint keys used by a local audio source.
94 // Constraint keys for CreateOffer / CreateAnswer
115 // Constraint to enable IPv6 through JS.
122 // Constraint to enable combined audio+video bandwidth estimation.
/external/llvm/include/llvm/IR/
H A DInlineAsm.h92 // Constraint String Parsing
300 static unsigned getFlagWordForMem(unsigned InputFlag, unsigned Constraint) { argument
301 assert(Constraint <= 0x7fff && "Too large a memory constraint ID");
302 assert(Constraint <= Constraints_Max && "Unknown constraint ID");
304 return InputFlag | (Constraint << Constraints_ShiftAmount);
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
H A DBlackfinISelLowering.cpp511 BlackfinTargetLowering::getConstraintType(const std::string &Constraint) const {
512 if (Constraint.size() != 1)
513 return TargetLowering::getConstraintType(Constraint);
515 switch (Constraint[0]) {
548 return TargetLowering::getConstraintType(Constraint);
600 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const { argument
604 if (Constraint.size() != 1)
605 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
607 switch (Constraint[0]) {
638 return TargetLowering::getRegForInlineAsmConstraint(Constraint, V
[all...]
/external/v8/src/compiler/
H A Dloop-variable-optimizer.cc76 class LoopVariableOptimizer::Constraint : public ZoneObject { class in class:v8::internal::compiler::LoopVariableOptimizer
82 const Constraint* next() const { return next_; }
84 Constraint(Node* left, InductionVariable::ConstraintKind kind, Node* right, function in class:v8::internal::compiler::LoopVariableOptimizer::Constraint
85 const Constraint* next)
92 const Constraint* next_;
107 head_ = new (zone) Constraint(left, kind, right, head_);
119 const Constraint* other_limit = other->head_;
139 const Constraint* head() const { return head_; }
146 const Constraint* head_ = nullptr;
177 for (const Constraint* constrain
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp982 DefinedOrUnknownSVal Constraint = local
985 if (!state->assume(Constraint, true)) {
988 Constraint = svalBuilder.evalEQ(state, SymVal,
992 state = state->assume(Constraint, false);
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h375 /// Constraint - This private class represents a constraint, as defined
390 class Constraint { class in class:llvm::DependenceInfo
614 Constraint &NewConstraint,
652 Constraint &NewConstraint) const;
670 Constraint &NewConstraint,
689 Constraint &NewConstraint) const;
707 Constraint &NewConstraint) const;
725 Constraint &NewConstraint) const;
852 bool intersectConstraints(Constraint *X,
853 const Constraint *
[all...]
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp186 const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
189 if (Constraint.size() == 1) {
190 switch (Constraint[0]) {
205 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
185 getRegForInlineAsmConstraint( const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const argument
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp195 SystemZTargetLowering::getConstraintType(const std::string &Constraint) const {
196 if (Constraint.size() == 1) {
197 switch (Constraint[0]) {
204 return TargetLowering::getConstraintType(Constraint);
209 getRegForInlineAsmConstraint(const std::string &Constraint, argument
211 if (Constraint.size() == 1) {
212 // GCC Constraint Letters
213 switch (Constraint[0]) {
225 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp208 MSP430TargetLowering::getConstraintType(StringRef Constraint) const {
209 if (Constraint.size() == 1) {
210 switch (Constraint[0]) {
217 return TargetLowering::getConstraintType(Constraint);
222 const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
223 if (Constraint.size() == 1) {
224 // GCC Constraint Letters
225 switch (Constraint[0]) {
235 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
221 getRegForInlineAsmConstraint( const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const argument
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/
H A DAlphaISelLowering.cpp800 AlphaTargetLowering::getConstraintType(const std::string &Constraint) const {
801 if (Constraint.size() == 1) {
802 switch (Constraint[0]) {
809 return TargetLowering::getConstraintType(Constraint);
840 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const argument
842 if (Constraint.size() == 1) {
843 switch (Constraint[0]) {
851 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeISelLowering.cpp1067 getConstraintType(const std::string &Constraint) const
1075 if (Constraint.size() == 1) {
1076 switch (Constraint[0]) {
1085 return TargetLowering::getConstraintType(Constraint);
1123 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const { argument
1124 if (Constraint.size() == 1) {
1125 switch (Constraint[0]) {
1137 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp207 MSP430TargetLowering::getConstraintType(const std::string &Constraint) const {
208 if (Constraint.size() == 1) {
209 switch (Constraint[0]) {
216 return TargetLowering::getConstraintType(Constraint);
221 getRegForInlineAsmConstraint(const std::string &Constraint, argument
223 if (Constraint.size() == 1) {
224 // GCC Constraint Letters
225 switch (Constraint[0]) {
235 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
/external/swiftshader/third_party/LLVM/lib/Target/Sparc/
H A DSparcISelLowering.cpp1247 SparcTargetLowering::getConstraintType(const std::string &Constraint) const {
1248 if (Constraint.size() == 1) {
1249 switch (Constraint[0]) {
1255 return TargetLowering::getConstraintType(Constraint);
1259 SparcTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint, argument
1261 if (Constraint.size() == 1) {
1262 switch (Constraint[0]) {
1268 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DPluralRules.java354 private static final Constraint NO_CONSTRAINT = new Constraint() {
1150 private interface Constraint extends Serializable { interface in class:PluralRules
1219 private static Constraint parseConstraint(String description)
1222 Constraint result = null;
1225 Constraint andConstraint = null;
1228 Constraint newConstraint = NO_CONSTRAINT;
1453 Constraint constraint;
1485 * An implementation of Constraint representing a modulus,
1489 private static class RangeConstraint implements Constraint, Serializabl
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPluralRules.java355 private static final Constraint NO_CONSTRAINT = new Constraint() {
1104 private interface Constraint extends Serializable { interface in class:PluralRules
1173 private static Constraint parseConstraint(String description)
1176 Constraint result = null;
1179 Constraint andConstraint = null;
1182 Constraint newConstraint = NO_CONSTRAINT;
1407 Constraint constraint;
1439 * An implementation of Constraint representing a modulus,
1443 private static class RangeConstraint implements Constraint, Serializabl
[all...]
/external/llvm/lib/Target/Lanai/
H A DLanaiISelLowering.cpp221 StringRef Constraint,
223 if (Constraint.size() == 1)
224 // GCC Constraint Letters
225 switch (Constraint[0]) {
232 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
240 AsmOperandInfo &Info, const char *Constraint) const {
248 switch (*Constraint) {
260 Weight = TargetLowering::getSingleConstraintMatchWeight(Info, Constraint);
269 SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops,
274 if (Constraint
220 getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const argument
268 LowerAsmOperandForConstraint( SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops, SelectionDAG &DAG) const argument
[all...]

Completed in 630 milliseconds

123