Searched refs:description (Results 176 - 200 of 276) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DClassLoaderReferenceImpl.java50 protected String description() { method in class:ClassLoaderReferenceImpl
H A DSACoreAttachingConnector.java53 "Pathname of Java Executable", //getString("sa.javaExecutable.description");
60 "Pathname of a corefile from a Java Process", //getString("sa.CoreFile.description"),
149 public String description() { method in class:SACoreAttachingConnector
H A DSAPIDAttachingConnector.java51 "PID of a Java process", //getString("sa.pid.description");
136 public String description() { method in class:SAPIDAttachingConnector
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dinterpreter.cpp52 void InterpreterCodelet::initialize(const char* description, Bytecodes::Code bytecode) { argument
53 _description = description;
70 if (description() != NULL) st->print("%s ", description());
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMBeanIntrospector.java219 final String description =
221 return maker.makeMBeanInfo(mbeanInterface, description);
340 String description) {
359 description,
339 makeMBeanInfo(Class<?> mbeanInterface, String description) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DUtils.java42 * Return the thread status description.
76 * Return a description of an object.
78 public static String description(ObjectReference ref) { method in class:Utils
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DProcessAttachingConnector.java149 public String description() { method in class:ProcessAttachingConnector
150 return getString("process_attaching.description");
H A DThreadReferenceImpl.java125 protected String description() { method in class:ThreadReferenceImpl
451 vm.printTrace(description() +
479 vm.printTrace(description() +
513 vm.printTrace(description() +
H A DSunCommandLineLauncher.java248 public String description() { method in class:SunCommandLineLauncher
249 return getString("sun.description");
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_Utils.h85 // stringLength specified length of name, vendor, description & version strings
86 bool GetDeviceInfo(int index, AudioDeviceID *deviceID, int stringLength, char *name, char *vendor, char *description, char *version);
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest14.java62 public String description() { method in class:Test14.OffsetFilter
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/legacy/connection/
H A DREADME.txt72 having IORInfo implement the IORInfoExt interface. The description on
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeType.java87 * @param description The human readable description of the composite type this instance represents;
107 * @throws IllegalArgumentException If <var>typeName</var> or <var>description</var> is a null or empty string,
119 String description,
126 super(CompositeData.class.getName(), typeName, description, false);
199 * Returns the description of the item whose name is <var>itemName</var>,
205 * @return the description.
118 CompositeType(String typeName, String description, String[] itemNames, String[] itemDescriptions, OpenType<?>[] itemTypes) argument
/openjdk7/jdk/src/macosx/native/jobjc/src/tests/java/com/apple/jobjc/
H A DSubclassingTest.java80 assertEquals("foo", Utils.get().strings().javaString(obj.description()));
84 MsgSend msgSend = new MsgSend(runtime, "description", IDCoder.INST);
92 MsgSendSuper msgSendSuper = new MsgSendSuper(runtime, "description", IDCoder.INST);
100 MsgSendSuper msgSendSuper = new MsgSendSuper(runtime, "description", IDCoder.INST);
218 @Override public NSString description(){ method in class:MyObject
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DOutputRecord.java181 boolean isAlert(byte description) { argument
183 // {byte level, byte description}, following after the header bytes.
185 return buf[headerSize + 1] == description;
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DDestinations.java99 String nodename, String description,
102 super(parent, nodename, description, defenabled);
98 Destinations(Group parent, String nodename, String description, boolean defenabled) argument
H A DTest.java46 public Test(Group parent, String nodeName, String description) { argument
47 super(parent, nodeName, description, false);
/openjdk7/jdk/test/javax/management/mxbean/
H A DTigerMXBean.java164 static TabularType make(String typeName, String description, argument
167 return new TabularType(typeName, description, rowType,
/openjdk7/jdk/test/sun/java2d/pipe/hw/VSyncedBufferStrategyTest/
H A DVSyncedBufferStrategyTest.java239 private static final String description = field in class:VSyncedBufferStrategyTest
308 ta.setText(description);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeBodyPart.java572 * @return content description
589 * If the description parameter is <code>null</code>, then any
592 * If the description contains non US-ASCII characters, it will
594 * description contains only US-ASCII characters, no encoding
602 * @param description content description
610 public void setDescription(String description) throws MessagingException { argument
611 setDescription(description, null);
616 * If the description parameter is <code>null</code>, then any
619 * If the description contain
638 setDescription(String description, String charset) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DConfig.java117 // description to pass to the provider class
118 private String description; field in class:Config
228 if (description != null) {
229 return description;
391 } else if (word.equals("description")) {
680 description = parseLine();
681 debug("description: " + description);
/openjdk7/jdk/src/share/demo/jfc/FileChooserDemo/
H A DFileChooserDemo.java477 private FileFilter createFileFilter(String description, argument
480 description = createFileNameFilterDescriptionFromExtensions(
481 description, extensions);
483 return new FileNameExtensionFilter(description, extensions);
487 String description, String[] extensions) {
488 String fullDescription = (description == null) ? "(" : description
490 // build the description from the extension list
486 createFileNameFilterDescriptionFromExtensions( String description, String[] extensions) argument
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.cpp1421 void FrameValues::describe(int owner, intptr_t* location, const char* description, int priority) { argument
1426 fv.description = NEW_RESOURCE_ARRAY(char, strlen(description) + 1);
1427 strcpy(fv.description, description);
1448 tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", prev.location, *prev.location, prev.description);
1449 tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", fv.location, *fv.location, fv.description);
1498 tty->print_cr(" %s %s %s", spacer, spacer, fv.description);
1500 tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", fv.location, *fv.location, fv.description);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DOCSPChecker.java438 for (AccessDescription description : descriptions) {
439 if (description.getAccessMethod().equals((Object)
442 GeneralName generalName = description.getAccessLocation();
/openjdk7/jdk/test/javax/management/openmbean/
H A DArrayTypeTest.java81 String description,
94 if (a.getDescription().equals(description)) {
98 System.out.println("\t\t---> expecting " + description);
79 checkGetters(ArrayType a, String className, String description, String typeName, boolean isArray, boolean isPrimitiveArray, int dimension) argument

Completed in 688 milliseconds

1234567891011>>