Searched defs:attributeValue (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS10Attribute.java59 protected Object attributeValue = null; field in class:PKCS10Attribute
74 this.attributeValue = attr.getValue();
82 * @param attributeValue an instance of a class that implements
86 Object attributeValue) {
88 this.attributeValue = attributeValue;
98 this.attributeValue = attr.getValue();
111 PKCS9Attribute attr = new PKCS9Attribute(attributeId, attributeValue);
126 return (attributeValue);
133 return (attributeValue
85 PKCS10Attribute(ObjectIdentifier attributeId, Object attributeValue) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/vocab/
H A DSerializerVocabulary.java49 public final StringIntMap attributeValue; field in class:SerializerVocabulary
71 tables[ATTRIBUTE_VALUE] = attributeValue = new StringIntMap();
125 addToTable(v.attributeValues.iterator(), attributeValue);
H A DParserVocabulary.java82 public final StringArray attributeValue; field in class:ParserVocabulary
101 attributeValue = new StringArray(ValueArray.DEFAULT_CAPACITY, NON_IDENTIFYING_STRING_TABLE_MAXIMUM_ITEMS, true);
119 tables[ATTRIBUTE_VALUE] = attributeValue;
173 addToTable(v.attributeValues.iterator(), attributeValue);
/openjdk7/jdk/src/share/instrument/
H A DInvocationAdapter.c100 char* attributeValue = getAttribute(attributes, name); local
101 return attributeValue != NULL && strcasecmp(attributeValue, "true") == 0;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DElementImpl.java972 String attributeValue = null; field in class:ElementImpl.AttributeManager
984 attributeValue = value;
991 return attributeValue;
997 attributeValue = null;
1003 if (attributeValue != null) {
1004 addAttribute(attributeName, attributeValue);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWInputMethod.java458 int[] attributeBoundary, byte[] attributeValue,
495 if (attributeBoundary!=null && attributeValue!=null &&
496 attributeValue.length!=0 && attributeBoundary.length==attributeValue.length+1 &&
497 attributeBoundary[0]==0 && attributeBoundary[attributeValue.length]==text.length() )
501 switch (attributeValue[i]) {
456 sendInputMethodEvent(int id, long when, String text, int[] clauseBoundary, String[] clauseReading, int[] attributeBoundary, byte[] attributeValue, int commitedTextLength, int caretPos, int visiblePos) argument

Completed in 594 milliseconds