Searched defs:isVarArgs (Results 1 - 17 of 17) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/mirror/declaration/
H A DExecutableDeclaration.java57 boolean isVarArgs(); method in interface:ExecutableDeclaration
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DAbstractFinder.java77 protected abstract boolean isVarArgs(T method); method in class:AbstractFinder
143 if (isVarArgs(newMethod)) {
H A DConstructorFinder.java113 protected boolean isVarArgs(Constructor<?> constructor) { method in class:ConstructorFinder
114 return constructor.isVarArgs();
H A DMethodFinder.java221 protected boolean isVarArgs(Method method) { method in class:MethodFinder
222 return method.isVarArgs();
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DExecutableMemberDoc.java78 public boolean isVarArgs(); method in interface:ExecutableMemberDoc
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DExecutableDeclarationImpl.java64 public boolean isVarArgs() { method in class:ExecutableDeclarationImpl
/openjdk7/langtools/src/share/classes/javax/lang/model/element/
H A DExecutableElement.java79 boolean isVarArgs(); method in interface:ExecutableElement
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DAnnoTypeElemDecl.java146 Boolean isVarArgs() { method in class:AnnoTypeElemDecl
147 return elem1.isVarArgs();
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DMethod.java163 boolean isVarArgs(); method in interface:Method
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DExecutableMemberDocImpl.java103 public boolean isVarArgs() { method in class:ExecutableMemberDocImpl
239 if (isVarArgs()) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DMethodImpl.java139 public boolean isVarArgs() { method in class:MethodImpl
140 return saMethod.isVarArgs();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DAccessFlags.java48 public boolean isVarArgs () { return (flags & JVM_ACC_VARARGS ) != 0; } method in class:AccessFlags
97 if (isVarArgs ()) tty.print("varargs " );
H A DMethod.java247 public boolean isVarArgs() { return getAccessFlagsObj().isVarArgs(); } method in class:Method
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DConstructor.java437 if (isVarArgs() && (j == params.length - 1)) // replace T[] with T...
538 public boolean isVarArgs() { method in class:Constructor
H A DMethod.java506 if (isVarArgs() && (j == params.length - 1)) // replace T[] with T...
640 public boolean isVarArgs() { method in class:Method
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DMethodImpl.java198 public boolean isVarArgs() { method in class:MethodImpl
358 if (isVarArgs()) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymbol.java1327 public boolean isVarArgs() { method in class:Symbol.MethodSymbol

Completed in 110 milliseconds