Searched refs:isVarArgs (Results 1 - 25 of 30) sorted by relevance

12

/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/mirror/declaration/
H A DExecutableDeclaration.java57 boolean isVarArgs(); method in interface:ExecutableDeclaration
/openjdk7/langtools/src/share/classes/javax/lang/model/element/
H A DExecutableElement.java79 boolean isVarArgs(); method in interface:ExecutableElement
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DConstructorFinder.java113 protected boolean isVarArgs(Constructor<?> constructor) { method in class:ConstructorFinder
114 return constructor.isVarArgs();
H A DAbstractFinder.java77 protected abstract boolean isVarArgs(T method); method in class:AbstractFinder
143 if (isVarArgs(newMethod)) {
H A DMethodFinder.java221 protected boolean isVarArgs(Method method) { method in class:MethodFinder
222 return method.isVarArgs();
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DMethod.java163 boolean isVarArgs(); method in interface:Method
/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/langtools/test/tools/apt/mirror/declaration/
H A DAnnoTypeElemDecl.java146 Boolean isVarArgs() { method in class:AnnoTypeElemDecl
147 return elem1.isVarArgs();
H A DConstructorDecl.java170 return ctor.isVarArgs();
175 return ctorInner.isVarArgs();
H A DMethodDecl.java184 return meth1.isVarArgs();
189 return meth2.isVarArgs();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DMethodBreakpointSpec.java186 !method.isVarArgs() ||
237 boolean isVarArgs = name.endsWith("...");
238 if (isVarArgs) {
280 if (isVarArgs) {
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DBreakpointSpec.java239 !method.isVarArgs() ||
287 boolean isVarArgs = name.endsWith("...");
288 if (isVarArgs) {
326 if (isVarArgs) {
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DMethodElementHandler.java103 if (method.isVarArgs()) {
H A DNewElementHandler.java153 if (constructor.isVarArgs()) {
/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/com/sun/tools/javadoc/
H A DExecutableMemberDocImpl.java103 public boolean isVarArgs() { method in class:ExecutableMemberDocImpl
239 if (isVarArgs()) {
/openjdk7/jdk/test/com/sun/jdi/
H A DVarargsTest.java244 if (!varString.isVarArgs()) {
247 if (!varString2.isVarArgs()) {
363 if (!ctor.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/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/doclets/formats/html/
H A DAbstractExecutableMemberWriter.java177 (paramstart == params.length - 1) && member.isVarArgs(), htmltree);
195 addParam(member, params[i], (i == params.length - 1) && member.isVarArgs(),
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DPrintAP.java268 if (ex.isVarArgs() ) {
289 if (i == size && ex.isVarArgs() ) {

Completed in 162 milliseconds

12