/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/ |
H A D | TypedPropertiesWrapper.java | 56 * Retrieves the first property of the given key from the given list and 59 * @param key 60 * the property key 66 * property of the given key 68 public boolean getBoolean(String key) { argument 69 return getValue(key, BooleanStringConverter.INSTANCE); 73 * Retrieves the first property of the given key from the given list and 76 * @param key 77 * the property key 83 * property of the given key 88 getByte(String key) argument 111 getChar(String key) argument 131 getColor(String key) argument 151 getDimension(String key) argument 171 getDouble(String key) argument 191 getFloat(String key) argument 211 getInt(String key) argument 231 getLong(String key) argument 267 getShort(String key) argument 286 setBoolean(String key, boolean value) argument 305 setByte(String key, byte value) argument 324 setChar(String key, char value) argument 343 setColor(String key, Color value) argument 362 setDimension(String key, Dimension value) argument 381 setDouble(String key, double value) argument 400 setFloat(String key, float value) argument 419 setInt(String key, int value) argument 438 setLong(String key, long value) argument 457 setShort(String key, short value) argument 465 getValue(String key, StringConverter<T> converter) argument 478 setValue(String key, T value, StringConverter<T> converter) argument [all...] |
H A D | KeyValueWriter.java | 33 * key/value lines. 49 private void writeLine(BufferedWriter writer, String key, String value) argument 52 writer.write(key + separator_ + value);
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/view/ |
H A D | SortableComparatorTableRowSorter.java | 54 for (RowSorter.SortKey key : keys) { 55 int column = key.getColumn(); 59 key.getSortOrder());
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/finder/ |
H A D | ObjectCache.java | 86 K key = i.next(); 87 Element<V> element = map.get(key); 107 public synchronized boolean containsKey(K key) { argument 108 return map.containsKey(key); 115 public synchronized V get(K key) { argument 117 Element<V> element = map.get(key); 147 public synchronized V put(K key, V value) { argument 151 map.put(key, element); 155 public synchronized V remove(K key) { argument 156 Element<V> element = map.remove(key); [all...] |
H A D | IconFinder.java | 122 String key = url.toString(); 126 if (cache.containsKey(key)) { 128 icon = cache.get(key); 131 cache.put(key, icon);
|
H A D | MessageFinder.java | 100 * Return a parameterized localized string for the given key. See the class 111 * @param key 112 * the identifying key in the {@code ResourceBundle}, which may 114 * stripped off to form a backup key in case this key is not 121 * @return a parameterized localized string for the given key, or 124 public String getString(ClassLoader loader, String pkg, String key, argument 133 // If key ends with a numerical element, strip it off to form a backup 134 // key in case this key does 206 getStringFromPackage(String pkg, String key, Object... args) argument 225 getString(String key, Object... args) argument [all...] |
H A D | GnomeUtil.java | 93 String key = height + ":" + force + ":" + name; 94 Icon icon = cache.get(key); 98 cache.put(key, icon); 137 String key = height + ":" + force + ":" + type + "/" + subtype; 138 Icon icon = cache.get(key); 142 cache.put(key, icon);
|
H A D | Finder.java | 145 public static String getString(String key, Object... args) { argument 146 return mFinder.getString(key, args);
|
/solaris-userland-s11u3/components/ruby/puppet/files/solaris/lib/puppet/provider/address_properties/ |
H A D | solaris.rb | 51 props.each do |key, value| 52 addresses << new(:name => key, 76 value.each do |key, value| 77 ipadm("set-addrprop", "-p", "#{key}=#{value}", @resource[:name]) 86 @resource[:properties].each do |key, value| 87 p = exec_cmd(command(:ipadm), "show-addrprop","-c", "-p", key, 90 Puppet.warning "Property '#{key}' not found for address " \ 96 @addrprops[key] = value 104 @addrprops.each do |key, value| 105 ipadm("set-addrprop", "-p", "#{key} [all...] |
/solaris-userland-s11u3/components/ruby/puppet/files/solaris/lib/puppet/provider/interface_properties/ |
H A D | solaris.rb | 51 props.each do |key, value| 52 interfaces << new(:name => key, 76 value.each do |key, value| 77 ipadm("set-ifprop", "-p", "#{key}=#{value}", @resource[:name]) 88 @resource[:properties].each do |key, value| 90 "-p", key, "-c", "-o", "CURRENT", ifname) 93 Puppet.warning "Property '#{key}' not found for interface 99 @ifprops[key] = value 108 @ifprops.each do |key, value| 109 ipadm("set-ifprop", "-m", proto, "-p", "#{key} [all...] |
/solaris-userland-s11u3/components/ruby/puppet/files/solaris/lib/puppet/provider/protocol_properties/ |
H A D | solaris.rb | 51 props.each do |key, value| 52 protocols << new(:name => key, 76 value.each do |key, value| 77 ipadm("set-prop", "-p", "#{key}=#{value}", @resource[:name]) 86 @resource[:properties].each do |key, value| 87 p = exec_cmd(command(:ipadm), "show-prop","-c", "-p", key, 90 Puppet.warning "Property '#{key}' not found for protocol " \ 96 @protoprops[key] = value 104 @protoprops.each do |key, value| 105 ipadm("set-prop", "-p", "#{key} [all...] |
/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/ |
H A D | ExtAttrObj.java | 38 * It contains convenience methods for manipulating key/value sets; 40 * All key/value sets are maintained in a hash table in this superclass. 52 * Null constructor creates an empty has table of key/values. 62 * Return the values for a specified key name. 64 * @param A key name 81 * Set the value for a specified key name. Any existing values 82 * for that key are replaced. 84 * @param A key name 96 * Set one or more values for a specified key name. 97 * Any existing values for that key ar 292 locate(String key) argument [all...] |
H A D | ActionString.java | 54 * Returns the localized message associated with the specified message key 58 * @param key message lookup key 60 public ActionString(String key) { argument 62 string = Finder.getString(key);
|
H A D | AttrObj.java | 35 * The AttrObj class implements a generic attribute key/value set. 36 * The set has a single key name and zero or more string values. 44 protected Vector<String> vector = null; // Vector of values for key 45 private String key = null; // keyword for attribute field in class:AttrObj 48 * Constructor takes the set key name. 50 * @param keyword A key name 56 key = keyword; 100 * Return true if the set contains the specified key name. 102 * @param key The key nam 106 contains(String key) argument [all...] |
/solaris-userland-s11u3/components/ruby/puppet/files/solaris/lib/puppet/provider/link_properties/ |
H A D | solaris.rb | 60 value.each do |key, value| 61 dladm("set-linkprop", "-p", "#{key}=#{value}", @resource[:name]) 69 @linkprops.each do |key, value| 70 a << "#{key}=#{value}" 81 @resource[:properties].each do |key, value| 83 "-c", "-p", key, "-o", "value") 85 Puppet.warning "Property '#{key}' not found for link " \ 91 @linkprops[key] = value
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/smf/ |
H A D | ServiceUtil.java | 124 String key = "service.state." + lower; 125 String text = Finder.getString(key); 140 String key = 143 synopsis = Finder.getString(key); 145 key = "service.state.synopsis.default"; 146 synopsis = Finder.getString(key, state); 185 String key = 190 key += "." + auxState.toLowerCase(); 191 details = Finder.getString(key, date); 198 details = Finder.getString(key, dat [all...] |
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/swing/ |
H A D | Preferences.java | 65 protected void putPreference(String key, Object value) { argument 66 getProperties().put(key, value);
|
/solaris-userland-s11u3/components/openstack/common/files/ |
H A D | openstack_common.py | 51 def update_mapping(section, key, mapping): 53 section/key. 56 if (section, key) in mapping: 57 print "Deprecated value found: [%s] %s" % (section, key) 58 section, key = mapping[(section, key)] 59 if section is None and key is None: 62 print "Updating to: [%s] %s" % (section, key) 63 return section, key 110 section/key [all...] |
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/view/ |
H A D | PanelIconUtil.java | 104 String key = Integer.toString(icon.hashCode()) + status; 105 Icon cIcon = badgeCache.get(key); 116 badgeCache.put(key, cIcon); 155 String key = height + '/' + type + '/'+ subtype; 158 if (mimeCache.containsKey(key)) { 160 icon = mimeCache.get(key); 163 mimeCache.put(key, icon);
|
/solaris-userland-s11u3/components/jansson/doc/html/_static/ |
H A D | doctools.js | 44 * current request. Multiple values per key are supported, 54 var key = jQuery.urldecode(tmp[0]); 56 if (key in result) 57 result[key].push(value); 59 result[key] = [value]; 129 for (var key in catalog.messages) 130 this.TRANSLATIONS[key] = catalog.messages[key];
|
H A D | sidebar.js | 145 var key = key_val[0].replace(/ /, ""); // strip leading spaces 146 if (key == 'sidebar') {
|
/solaris-userland-s11u3/components/ruby/puppet/files/ |
H A D | update_smf.py | 102 def create_config_element(key, key_type, desc_text): 105 <prop_pattern name='${key}' type='${key_type}' 114 name=key, 124 def determine_type(key, value): 126 specified key 129 # Does the key have a specified xml property type 132 return PROP_TYPE[key] 146 a 'key=value' entry 149 # The last field should be a key = value pair 155 # key [all...] |
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/control/ |
H A D | Control.java | 691 String key = nvPair[0]; 695 key = URLDecoder.decode(key, ENCODING); 700 parameters.put(key, value); 729 for (String key : parameters.keySet()) { 736 String value = parameters.get(key); 743 key = URLEncoder.encode(key, ENCODING); 745 buffer.append(key).append("=").append(value);
|
/solaris-userland-s11u3/components/openstack/horizon/files/branding/css/ |
H A D | solaris2.css | 43 [ng-controller="LaunchInstanceKeypairCtrl as ctrl"] dl.key-pair-details dt { 45 [ng-controller="LaunchInstanceKeypairCtrl as ctrl"] dl.key-pair-details dd { 49 [ng-controller="LaunchInstanceKeypairCtrl as ctrl"] dl.key-pair-details dd pre {
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/cli/ |
H A D | HelpFormatter.java | 159 String key = element.getName() + element.getArgName(); 160 map.put(key, element);
|