HomeSort by relevance Sort by last modified time
    Searched full:constraint (Results 451 - 475 of 949) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
defaults.h 929 /* These old constraint macros shouldn't appear anywhere in a
930 configuration using MD constraint definitions. */
935 #else /* old constraint mechanism in use */
937 /* Determine whether extra constraint letter should be handled
943 /* Determine whether extra constraint letter should be handled
951 'length' of a digit in a matching constraint is an implementation detail,
976 #endif /* old constraint mechanism in use */
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
defaults.h 929 /* These old constraint macros shouldn't appear anywhere in a
930 configuration using MD constraint definitions. */
935 #else /* old constraint mechanism in use */
937 /* Determine whether extra constraint letter should be handled
943 /* Determine whether extra constraint letter should be handled
951 'length' of a digit in a matching constraint is an implementation detail,
976 #endif /* old constraint mechanism in use */
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 644 ID.Add(Constraint);
661 // Check if in the previous state it was feasible for this constraint
663 if (PrevN->getState()->assume(Constraint, !Assumption)) {
667 // As a sanity check, make sure that the negation of the constraint
670 if (N->getState()->assume(Constraint, !Assumption))
673 // We found the transition point for the constraint. We now need to
674 // pretty-print the constraint. (work-in-progress)
678 if (Constraint.getAs<Loc>()) {
    [all...]
ExprEngineC.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
ObjectHelper.java 57 import com.jme3.scene.plugins.blender.constraints.Constraint;
269 List<Constraint> objectConstraints = blenderContext.getConstraints(objectStructure.getOldMemoryAddress());
271 for(Constraint objectConstraint : objectConstraints) {
  /external/openssl/crypto/x509v3/
v3_ncons.c 233 * X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE: Unsupported constraint type.
234 * X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX: bad unsupported constraint syntax.
371 /* directoryName name constraint matching.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 188 // with a constraint
227 /** Ensures that every element has an id such that it can be referenced from a constraint */
286 for (Pair<String, String> constraint : view.getHorizConstraints()) {
288 namespace, constraint.getFirst(), constraint.getSecond());
290 for (Pair<String, String> constraint : view.getVerticalConstraints()) {
292 namespace, constraint.getFirst(), constraint.getSecond());
447 if (prevId != null) { // No constraint for first child
712 // Vertical constraint
    [all...]
  /external/llvm/utils/TableGen/
CodeGenInstruction.cpp 123 // constraint info, even if none is present.
206 PrintFatalError("Illegal format for @earlyclobber constraint: '" + CStr + "'");
218 // Only other constraint is "TIED_TO" for now.
220 assert(pos != std::string::npos && "Unrecognized constraint");
227 PrintFatalError("Illegal format for tied-to constraint: '" + CStr + "'");
234 PrintFatalError("Illegal format for tied-to constraint: '" + CStr + "'");
CodeGenInstruction.h 103 /// Constraint info for this operand. This operand can have pieces, so we
104 /// track constraint info for each.
  /external/ceres-solver/internal/ceres/
graph_algorithms.h 222 // not violate the degree/cycle constraint.
230 // constraint.
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Feature.java 11 import com.jme3.scene.plugins.blender.constraints.Constraint.Space;
16 * This class represents either owner or target of the constraint. It has the
  /external/llvm/test/CodeGen/X86/
2008-03-07-APIntBug.ll 3 %struct.CONSTRAINT = type { i32, i32, i32, i32 }
5 %struct.FOURTH_UNION = type { %struct.CONSTRAINT }
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qgraphicswkview.cpp 241 QSizeF QGraphicsWKView::sizeHint(Qt::SizeHint which, const QSizeF& constraint) const
245 return QGraphicsWidget::sizeHint(which, constraint);
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_image_homography.cpp 30 /*Compute the linear constraint on H obtained by requiring that the
52 each constraint is generated by considering the ratio between a
  /packages/apps/Gallery2/jni_mosaic/feature_stab/db_vlvm/
db_image_homography.cpp 30 /*Compute the linear constraint on H obtained by requiring that the
52 each constraint is generated by considering the ratio between a
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_image_homography.cpp 30 /*Compute the linear constraint on H obtained by requiring that the
52 each constraint is generated by considering the ratio between a
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 211 /// getConstraintType - Given a constraint letter, return the type of
212 /// constraint it is for this target.
214 MSP430TargetLowering::getConstraintType(const std::string &Constraint) const {
215 if (Constraint.size() == 1) {
216 switch (Constraint[0]) {
223 return TargetLowering::getConstraintType(Constraint);
228 getRegForInlineAsmConstraint(const std::string &Constraint,
230 if (Constraint.size() == 1) {
231 // GCC Constraint Letters
232 switch (Constraint[0])
    [all...]
  /build/core/
dynamic_binary.mk 10 # This constraint means that we can hard-code any $(TARGET_*) variables.
  /external/clang/test/Analysis/
additive-folding.cpp 189 // At one point we were ignoring the *4 completely -- the constraint manager
  /external/guava/guava-tests/test/com/google/common/collect/
MutableClassToInstanceMapTest.java 92 * breaking the constraint, because we know that newClassMap() is
  /external/iproute2/man/man8/
tc-tbf.8 46 Tokens roughly correspond to bytes, with the additional constraint that each packet consumes
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
IpoHelper.java 17 * like animation or constraint influence. The curves are 3rd degree bezier
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
HingeJoint.java 46 * Hinge constraint, or revolute joint restricts two additional angular degrees of freedom,

Completed in 506 milliseconds

<<11121314151617181920>>