Searched defs:illegal (Results 1 - 7 of 7) sorted by relevance
/openjdk7/langtools/test/tools/javac/ |
H A D | BadAnnotation.java | 34 int value(int... illegal); argument
|
/openjdk7/jdk/test/java/beans/XMLDecoder/ |
H A D | Test6341798.java | 43 + " <void property=\"illegal\">\n" 64 private boolean illegal; field in class:Test6341798.DataBean 67 return this.illegal; 70 public void setIllegal(boolean illegal) { argument 71 this.illegal = illegal; 75 if (this.illegal) {
|
/openjdk7/jdk/src/share/classes/javax/management/ |
H A D | ImmutableDescriptor.java | 139 String lastName = ""; // also catches illegal null name 465 * @exception RuntimeOperationsException for illegal value for field Names 481 * either an exception is thrown because of illegal parameters, or 487 illegal("Null argument"); 489 illegal("Different array sizes"); 502 * either an exception is thrown because of illegal parameters, or 522 * If the field name is illegal or the field is not found, 543 illegal("Null or empty field name"); 552 private static void illegal(String message) { method in class:ImmutableDescriptor
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | subnode.hpp | 266 enum mask { eq = 0, ne = 4, le = 5, ge = 7, lt = 3, gt = 1, illegal = 8 }; enumerator in enum:VALUE_OBJ_CLASS_SPEC::mask
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/ |
H A D | ByteCodes.java | 41 int illegal = -1, field in interface:ByteCodes
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/ |
H A D | JavacParser.java | 329 /** Report an illegal start of expression/type error at given position. 331 JCExpression illegal(int pos) { method in class:JavacParser 334 return syntaxError(pos, "illegal.start.of.expr"); 336 return syntaxError(pos, "illegal.start.of.type"); 340 /** Report an illegal start of expression/type error at current position. 342 JCExpression illegal() { method in class:JavacParser 343 return illegal(S.pos()); 883 return illegal(); 898 } else return illegal(); 965 } else return illegal(); [all...] |
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_LIR.hpp | 809 static LIR_Opr illegal() { return (LIR_Opr)-1; } function in class:LIR_OprFact 1976 // stack_loc_temp is an illegal register for old backend
|
Completed in 1066 milliseconds