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

12

/external/guava/guava/src/com/google/common/collect/
H A DConstraint.java49 public interface Constraint<E> { interface
/external/clang/lib/CodeGen/
H A DTargetInfo.h120 StringRef Constraint,
119 adjustInlineAsmType(CodeGen::CodeGenFunction &CGF, StringRef Constraint, llvm::Type* Ty) const argument
H A DTargetInfo.cpp504 StringRef Constraint,
506 if ((Constraint == "y" || Constraint == "&y") && Ty->isVectorTy()) {
594 StringRef Constraint,
596 return X86AdjustInlineAsmType(CGF, Constraint, Ty);
1252 StringRef Constraint,
1254 return X86AdjustInlineAsmType(CGF, Constraint, Ty);
503 X86AdjustInlineAsmType(CodeGen::CodeGenFunction &CGF, StringRef Constraint, llvm::Type* Ty) argument
593 adjustInlineAsmType(CodeGen::CodeGenFunction &CGF, StringRef Constraint, llvm::Type* Ty) const argument
1251 adjustInlineAsmType(CodeGen::CodeGenFunction &CGF, StringRef Constraint, llvm::Type* Ty) const argument
H A DCGStmt.cpp1329 SimplifyConstraint(const char *Constraint, const TargetInfo &Target, argument
1333 while (*Constraint) {
1334 switch (*Constraint) {
1336 Result += Target.convertConstraint(Constraint);
1346 while (Constraint[1] && Constraint[1] != ',')
1347 Constraint++;
1359 bool result = Target.resolveSymbolicName(Constraint,
1368 Constraint++;
1378 AddVariableConstraints(const std::string &Constraint, cons argument
[all...]
/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/chromium_org/third_party/libjingle/source/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> {
64 // Constraint keys used by a local video source.
75 // Constraint keys used by a local audio source.
90 // Constraint keys for CreateOffer / CreateAnswer
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitor.h132 DefinedSVal Constraint; member in class:clang::ento::TrackConstraintBRVisitor
143 : Constraint(constraint), Assumption(assumption), IsSatisfied(false),
144 IsZeroCheck(!Assumption && Constraint.getAs<Loc>()),
/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/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-deltablue.js29 * "The DeltaBlue Algorithm: An Incremental Constraint Hierarchy Solver"
147 function Constraint(strength) { class
154 Constraint.prototype.addConstraint = function () {
166 Constraint.prototype.satisfy = function (mark) {
184 Constraint.prototype.destroyConstraint = function () {
194 Constraint.prototype.isInput = function () {
213 UnaryConstraint.inherits(Constraint);
343 BinaryConstraint.inherits(Constraint);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-deltablue.js29 * "The DeltaBlue Algorithm: An Incremental Constraint Hierarchy Solver"
147 function Constraint(strength) { class
154 Constraint.prototype.addConstraint = function () {
166 Constraint.prototype.satisfy = function (mark) {
184 Constraint.prototype.destroyConstraint = function () {
194 Constraint.prototype.isInput = function () {
213 UnaryConstraint.inheritsFrom(Constraint);
343 BinaryConstraint.inheritsFrom(Constraint);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-deltablue.js29 * "The DeltaBlue Algorithm: An Incremental Constraint Hierarchy Solver"
147 function Constraint(strength) { class
154 Constraint.prototype.addConstraint = function () {
166 Constraint.prototype.satisfy = function (mark) {
184 Constraint.prototype.destroyConstraint = function () {
194 Constraint.prototype.isInput = function () {
213 UnaryConstraint.inheritsFrom(Constraint);
343 BinaryConstraint.inheritsFrom(Constraint);
/external/chromium_org/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/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/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DDesktopView.java55 private static enum Constraint { enum in class:DesktopView
71 private Constraint mConstraint;
102 mConstraint = Constraint.UNDEFINED;
141 if (mConstraint == Constraint.UNDEFINED) {
143 (double)mScreenWidth/mScreenHeight ? Constraint.WIDTH : Constraint.HEIGHT;
147 if (mConstraint == Constraint.WIDTH &&
156 } else if (mConstraint == Constraint.HEIGHT &&
247 mConstraint = Constraint.UNDEFINED;
/external/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp152 const CGIOperandList::ConstraintInfo &Constraint = local
154 if (Constraint.isNone())
156 else if (Constraint.isEarlyClobber())
159 assert(Constraint.isTied());
160 Res += "((" + utostr(Constraint.getTiedOperand()) +
H A DAsmMatcherEmitter.cpp445 void formTwoOperandAlias(StringRef Constraint);
711 void MatchableInfo::formTwoOperandAlias(StringRef Constraint) { argument
714 parseTwoOperandConstraint(Constraint, TheDef->getLoc());
1429 std::string Constraint = local
1431 if (Constraint != "") {
1436 AliasII->formTwoOperandAlias(Constraint);
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp917 DefinedOrUnknownSVal Constraint = local
920 if (!state->assume(Constraint, true)) {
923 Constraint = svalBuilder.evalEQ(state, SymVal,
927 state = state->assume(Constraint, false);
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h369 /// Constraint - This private class represents a constraint, as defined
384 class Constraint { class in class:llvm::DependenceAnalysis
602 Constraint &NewConstraint,
640 Constraint &NewConstraint) const;
658 Constraint &NewConstraint,
677 Constraint &NewConstraint) const;
695 Constraint &NewConstraint) const;
713 Constraint &NewConstraint) const;
841 bool intersectConstraints(Constraint *X,
842 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 getRegForInlineAsmConstraint(const std::string &Constraint, argument
232 if (Constraint.size() == 1) {
233 // GCC Constraint Letters
234 switch (Constraint[0]) {
244 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1875 TargetLowering::getConstraintType(const std::string &Constraint) const {
1876 unsigned S = Constraint.size();
1879 switch (Constraint[0]) {
1907 if (S > 1 && Constraint[0] == '{' && Constraint[S-1] == '}') {
1908 if (S == 8 && !Constraint.compare(1, 6, "memory", 6)) // "{memory}"
1929 std::string &Constraint,
1933 if (Constraint.length() > 1) return;
1935 char ConstraintLetter = Constraint[0];
1994 getRegForInlineAsmConstraint(const std::string &Constraint, argument
1928 LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops, SelectionDAG &DAG) const argument
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp1600 std::string &Constraint,
1602 if (Constraint.size() == 1) {
1603 switch (Constraint[0]) {
1622 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1599 getRegForInlineAsmConstraint(const std::string &Constraint, MVT VT) const argument
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1848 SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops,
1850 if (Constraint.length() > 1)
1853 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
1972 NVPTXTargetLowering::getConstraintType(const std::string &Constraint) const {
1973 if (Constraint.size() == 1) {
1974 switch (Constraint[0]) {
1988 return TargetLowering::getConstraintType(Constraint);
1992 NVPTXTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint, argument
1994 if (Constraint.size() == 1) {
1995 switch (Constraint[
1847 LowerAsmOperandForConstraint( SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops, SelectionDAG &DAG) const argument
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp1898 SparcTargetLowering::getConstraintType(const std::string &Constraint) const {
1899 if (Constraint.size() == 1) {
1900 switch (Constraint[0]) {
1906 return TargetLowering::getConstraintType(Constraint);
1910 SparcTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint, argument
1912 if (Constraint.size() == 1) {
1913 switch (Constraint[0]) {
1919 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp313 SystemZTargetLowering::getConstraintType(const std::string &Constraint) const {
314 if (Constraint.size() == 1) {
315 switch (Constraint[0]) {
340 return TargetLowering::getConstraintType(Constraint);
408 parseRegisterNumber(const std::string &Constraint, argument
410 assert(*(Constraint.end()-1) == '}' && "Missing '}'");
411 if (isdigit(Constraint[2])) {
412 std::string Suffix(Constraint.data() + 2, Constraint.size() - 2);
421 getRegForInlineAsmConstraint(const std::string &Constraint, MV argument
479 LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops, SelectionDAG &DAG) const argument
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp1640 getRegForInlineAsmConstraint(const std::string &Constraint, argument
1642 if (Constraint.size() == 1) {
1643 switch (Constraint[0]) {
1651 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);

Completed in 528 milliseconds

12