Searched refs:type (Results 1 - 25 of 70) sorted by relevance

123

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DDialogMessage.java36 private int type; field in class:DialogMessage
44 * type.
49 * @param type
56 public DialogMessage(String text, int type) { argument
58 this.type = type;
74 return type;
H A DBeanUtil.java77 Class type = descriptor.getPropertyType();
79 // Is there a property editor for this type?
94 editor = PropertyEditorManager.findEditor(type);
106 value = getValueAs(type, valueAsText);
135 private static Object getValueAs(Class type, String value) { argument
140 if (type.equals(Boolean.class) || type.equals(Boolean.TYPE)) {
144 if (type.equals(Byte.class) || type.equals(Byte.TYPE)) {
148 if (type
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/layout/
H A DHorizontalAnchor.java38 private AnchorType type; field in class:HorizontalAnchor
44 HorizontalAnchor(AnchorType type) { argument
45 this.type = type;
54 return type;
H A DVerticalAnchor.java38 private AnchorType type; field in class:VerticalAnchor
44 VerticalAnchor(AnchorType type) { argument
45 this.type = type;
54 return type;
/solaris-userland-s11u3/components/openstack/nova/files/solariszones/
H A Dsysconfig.py33 svcbundle = etree.Element("service_bundle", type="profile",
38 type="service", name="network/physical")
41 pg = etree.SubElement(instance, "property_group", type="application",
43 etree.SubElement(pg, "propval", type="astring", name="active_ncp",
48 type="service", name="network/install")
59 type="ipv4_interface",
61 etree.SubElement(pg4, "propval", type="astring", name="address_type",
65 etree.SubElement(pg4, "propval", type="net_address_v4",
67 etree.SubElement(pg4, "propval", type="astring", name="name",
69 etree.SubElement(pg4, "propval", type
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/event/
H A DIntervalEventQueue.java44 private Type type; field in class:IntervalEventQueue
75 if (type == Type.REMOVE && t == Type.REMOVE) {
84 * If this is a new event type or a disjoint interval, flush
87 if (t != type || l < first - 1 || f > last + 1) {
91 type = t;
98 if (type == Type.REMOVE) {
114 public void addIndex(int index, Type type) { argument
115 addInterval(index, index, type);
119 if (type != null) {
120 switch (type) {
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/api/auth/
H A DPrincipalHint.java40 PrincipalHint(PrincipalType type) argument
42 type_ = type;
H A DPrincipalHintList.java54 public PrincipalHint getFirstHint(PrincipalHint.PrincipalType type) { argument
56 if (hint.getType() == type) {
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/event/
H A DExtListSelectionEvent.java45 private Type type; field in class:ExtListSelectionEvent
55 Type type, int anchorIndex, int leadIndex, boolean isAdjusting) {
59 this.type = type;
78 return type;
54 ExtListSelectionEvent(ExtListSelectionModel source, Type type, int anchorIndex, int leadIndex, boolean isAdjusting) argument
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/timezone/
H A DLocationSelectionEvent.java40 public LocationSelectionEvent(Object source, Type type, T location) argument
44 type_ = type;
/solaris-userland-s11u3/components/visual-panels/apache/src/java/vpanels/app/apache/com/oracle/solaris/vp/panels/apache/client/swing/
H A DMimeTypeControl.java99 String type = panel.getTypeProperty().getValue();
102 validate(type, subtype);
104 MimeType child = mimeType.getParent().getMimeType(type, subtype);
107 "mimetype.error.duplicate", type, subtype));
110 mimeType.getTypeProperty().setValue(type);
182 public static void validate(String type, String subtype) argument
185 if (type.isEmpty()) {
187 "mimetype.error.type.empty", type));
190 if (!MimeType.isValidToken(type)) {
[all...]
H A DMimeTypePropertySynchronizer.java151 String type = saved ? typeProperty.getSavedValue() :
163 String id = SMF_VALUE_PREFIX + type + MimeType.SEPARATOR + subtype;
182 String type = null;
193 type = sValue;
196 type = sValue.substring(0, index);
201 if (type.isEmpty()) {
202 type = null;
217 typeProperty.setSavedValue(type);
219 typeProperty.setValue(type);
/solaris-userland-s11u3/components/visual-panels/tools/
H A Dmakestruct59 while read type prop cmt ; do
60 test -z "$type" && break
62 if [[ "$type" = "import" ]]; then
63 echo "$type $prop"
66 types[${#types[*]}]=$type
107 type=${types[$i]}
119 if [[ $type = "boolean" ]] || [[ $type = "Boolean" ]]; then
120 echo "\tpublic $type is$cprop()"
122 echo "\tpublic $type ge
[all...]
/solaris-userland-s11u3/components/visual-panels/firewall/src/java/vpanels/app/firewall/com/oracle/solaris/vp/panels/firewall/client/swing/
H A DSimpleAccessPolicy.java82 public SimpleAccessPolicy(Type type, String customFile, argument
84 init(type, customFile, aList, eList, portList);
87 public SimpleAccessPolicy(Type type) { argument
88 this(type, null, null, null, null);
91 public SimpleAccessPolicy(Type type, List<String> pList) { argument
92 this(type, null, null, null, pList);
95 public SimpleAccessPolicy(Type type, List<String> aList, argument
97 this(type, null, aList, eList, null);
100 public SimpleAccessPolicy(Type type, String customFile, argument
102 this(type, customFil
140 setType(Type type) argument
321 update(Type type, String customFile, List<String> aList, List<String> eList, List<String> pList) argument
330 init(Type type, String customFile, List<String> aList, List<String> eList, List<String> portList) argument
[all...]
H A DAccessProperty.java156 Type type = typeProperty.getSavedValue();
158 if (type == null) {
162 if (type == Type.ALLOW)
163 return new SimpleAccessPolicy(type, customFileProperty == null ?
168 else if (type == Type.DENY)
169 return new SimpleAccessPolicy(type, customFileProperty == null ?
175 return new SimpleAccessPolicy(type, customFileProperty == null ?
185 Type type = typeProperty.getValue();
187 if (type == null) {
197 if (type
[all...]
H A DAccessPanel.java89 for (Type type : types) {
91 "service.objects.access.option." + type);
94 map.put(button, type);
99 if (type == Type.USE_GLOBAL) {
104 if (type == Type.DENY || type == Type.ALLOW) {
110 switch (type) {
137 if (type == Type.CUSTOM) {
H A DAccessPolicyUtil.java74 public static String toString(Type type, boolean verbose) { argument
76 (verbose ? "long" : "short") + "." + type;
81 Type type = policy == null ? null : policy.getType();
82 return toString(type, verbose);
85 public static String toPropValue(Type type) { argument
86 return policy2prop.get(type);
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/finder/
H A DGnomeUtil.java42 String getMimeIconFileName(String type, String subtype, int height); argument
119 * Gets a Gnome MIME {@code Icon} of the given type, subtype, and height.
121 * @param type
122 * the type portion of the MIME type
125 * the subtype portion of the MIME type
134 public static Icon getMimeIcon(String type, String subtype, int height, argument
137 String key = height + ":" + force + ":" + type + "/" + subtype;
140 String file = getMimeIconFileName(type, subtype, height);
147 public static String getMimeIconFileName(String type, Strin argument
[all...]
/solaris-userland-s11u3/components/openstack/cinder/files/zfssa/
H A Dcinder.akwf25 type: 'String'
29 type: 'Password'
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/smf/
H A DBasicSmfMutableProperty.java95 private PropertyType type; field in class:BasicSmfMutableProperty
118 * @param type
119 * the type of the property
126 DualConverter<String, T> converter, PropertyType type,
132 this.type = type;
201 service.createProperty(group, name, type);
212 service.createProperty(group, name, type);
274 return type;
335 public void setType(PropertyType type) { argument
125 BasicSmfMutableProperty(String name, DualConverter<String, T> converter, PropertyType type, SmfPropertyInfo info) argument
[all...]
/solaris-userland-s11u3/components/net-snmp/sun/sdk/demo/demo_module_1/
H A DREADME_demo_module_1138 If you are running the 64-bit SPARC Solaris kernel, type:
141 If you are running the 32-bit SPARC Solaris kernel, type:
144 If you are running the Solaris x86 kernel, type:
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/common/
H A DPanelClassLoader.java92 String type = matcher.group(1);
97 Permission perm = getPermission(type, name, actions);
102 "type=%s name=%s actions=", type, name, actions);
145 private static Permission getPermission(String type, String name, argument
149 Class<?> clazz = Class.forName(type);
/solaris-userland-s11u3/components/openssh/sources/
H A Dkexgssc.c76 int type = 0; local
127 fatal("%s: Unexpected KEX type %d", __func__, kex->kex_type);
191 type = packet_read();
192 if (type == SSH2_MSG_KEXGSS_HOSTKEY) {
200 } while (type == SSH2_MSG_KEXGSS_HOSTKEY);
202 switch (type) {
244 " expect packet type %d", type);
259 if (type != SSH2_MSG_KEXGSS_COMPLETE)
313 fatal("%s: Unexpected KEX type
[all...]
/solaris-userland-s11u3/components/net-snmp/sun/agent/modules/seaExtensions/
H A Dsnmpvars.h122 int type; member in struct:new_devicess
/solaris-userland-s11u3/components/ruby/puppet/files/
H A Dupdate_smf.py68 # is assumed to have a property type of astring, integer,
105 <prop_pattern name='${key}' type='${key_type}'
115 type=key_type,
125 '''Determine the xml property type to associate with the
129 # Does the key have a specified xml property type
136 # Use the value to determine the xml property type
237 # <pg_pattern name='config' type='application' required='false'>
242 type="application",
265 action="store", type="string", nargs=1,
271 action="store", type
[all...]

Completed in 71 milliseconds

123