Searched defs:constraint (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/awt/
H A DXDrawingAreaP.h70 ConstraintPart constraint; member in struct:_XDrawingAreaRec
H A DVDrawingAreaP.h71 ConstraintPart constraint; member in struct:_VDrawingAreaRec
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DInstructionFinder.java81 for(Iterator i = f.search(pat, constraint); i.hasNext(); ) {
213 * @param constraint optional CodeConstraint to check the found code pattern for
219 CodeConstraint constraint)
245 if((constraint == null) || constraint.checkCode(match))
284 * Check found matches with the constraint object.
287 * @param constraint constraints to be checked on matching code
290 public final Iterator search(String pattern, CodeConstraint constraint) { argument
291 return search(pattern, il.getStart(), constraint);
308 * user-defined constraint objec
218 search(String pattern, InstructionHandle from, CodeConstraint constraint) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicToolBarUI.java827 String constraint = getDockingConstraint(dockingSource,
829 if (constraint == null) {
830 constraint = BorderLayout.NORTH;
832 int orientation = mapConstraintToOrientation(constraint);
838 dockingSource.add(constraint, toolBar);
848 private int mapConstraintToOrientation(String constraint) argument
852 if ( constraint != null )
854 if ( constraint.equals(BorderLayout.EAST) || constraint.equals(BorderLayout.WEST) )
856 else if ( constraint
899 isBlocked(Component comp, Object constraint) argument
[all...]
H A DBasicTextUI.java1912 // remove the constraint record
1943 * with a View object as a constraint. The current allocation
1999 * constraint object. We only store those components that were added
2000 * with a constraint that is of type View.
2003 * @param constraint where/how the component is added to the layout.
2005 public void addLayoutComponent(Component comp, Object constraint) { argument
2006 if (constraint instanceof View) {
2010 constraints.put(comp, constraint);
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddfa.cpp43 static const char *unknownValid = "unknownValid"; // Unknown (probably due to a child or predicate constraint)
46 static const char *hasConstraint = "hasConstraint"; // Within the first constraint
60 Production(const char *result, const char *constraint, const char *valid);
88 const char *constraint();
89 void set_constraint(const char *constraint); // currently working inside of constraints
917 Production::Production(const char *result, const char *constraint, const char *valid) { argument
920 _constraint = constraint;
968 void ProductionState::set_constraint(const char *constraint) { argument
969 _constraint = constraint;
H A Dadlparse.cpp228 else if (!strcmp(ident, "constraint")) {
229 parse_err(SYNERR, "Instructions do not specify a constraint\n");
472 else if (!strcmp(ident, "constraint"))oper->_constraint= constraint_parse();
480 parse_err(SYNERR, "expected one of - constraint, predicate, match, encode, format, construct, or the name of a defined operand attribute at %s\n", ident);
2118 // Check for constraint expression
2121 parse_err(SYNERR, "missing constraint expression, (...)\n");
2126 // Get constraint function
2130 parse_err(SYNERR, "missing function in constraint expression.\n");
2138 parse_err(SYNERR, "missing '(' for constraint function's argument.\n");
2147 parse_err(SYNERR, "missing argument for constraint functio
2177 Constraint *constraint = new Constraint(func,arg); local
2607 PeepConstraint *constraint = new PeepConstraint( left_inst, left_op, local
[all...]
H A Dformssel.cpp2251 // Return register class name if a constraint specifies the register class.
2256 Constraint *constraint = _constraint; local
2626 assert((_func != NULL && _arg != NULL),"missing constraint function or arg");

Completed in 114 milliseconds