Searched defs:string (Results 1 - 4 of 4) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/
H A DActionString.java36 * bundle, but parses the returned string for the mnemonic indicator and
39 * resource properties file - mnemonics can be embedded within the string,
50 private String string; field in class:ActionString
62 string = Finder.getString(key);
68 * Returns the text string without the mnemonic indicator
70 * @return the text string without the mnemonic character
74 return string;
92 * Split the retrieved message into its string and mnemonic parts.
105 (string.startsWith("<html>") && string
[all...]
H A DAttrObj.java36 * The set has a single key name and zero or more string values.
62 * Return an array of string values for the set.
64 * @return An array of string values
76 * Return a vector of string values for the set.
78 * @return A vector of string values
88 * Return the first string value in the set.
90 * @return A string value
125 * Set the specified string value as the values for the set.
128 * @param string A string valu
131 set(String string) argument
187 add(String string) argument
232 del(String string) argument
[all...]
H A DDblTreeNode.java62 public DblTreeNode(String string) { argument
63 super(string);
121 String string = getComparableObject().toString();
125 return string.compareTo(other.getComparableObject().toString());
127 return string.compareTo(object.toString());
/solaris-userland-s11u3/components/libusb/wrapper/src/
H A Dtestlibusb.c127 char string[256]; local
136 ret = usb_get_string_simple(udev, dev->descriptor.iManufacturer, string, sizeof(string));
138 printf("- Manufacturer : %s\n", string);
140 printf("- Unable to fetch manufacturer string %d\n", ret);
145 ret = usb_get_string_simple(udev, dev->descriptor.iProduct, string, sizeof(string));
147 printf("- Product : %s\n", string);
149 printf("- Unable to fetch product string\n");
153 ret = usb_get_string_simple(udev, dev->descriptor.iSerialNumber, string, sizeo
[all...]

Completed in 21 milliseconds