Home | History | Annotate | Download | only in build

Lines Matching refs:constraint

93         String methodBody, constraint, title;
354 // main class to execute; opcode/constraint; test purpose
420 if (md.constraint != null) {
421 Constraint " + md.constraint + ", " + details;
690 // find the @title/@constraint in javadoc comment for this method
698 String title = null, constraint = null;
702 // now grep @title and @constraint
714 // constraint can be one line only
715 Matcher constraintM = Pattern.compile("@constraint (.*)").matcher(
718 constraint = constraintM.group(1);
719 constraint = constraint.trim();
720 // System.out.println("constraint: " + constraint);
723 .println("warning: no @constraint for for a VFE method:" + method + " in " +
732 md.constraint = constraint;