Searched defs:prefix (Results 76 - 100 of 404) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DNamespaceContext.java29 * The prefix and namespace must be identical references for equal strings, thus
47 * the Namespace URI that is automatically mapped to the "xml" prefix.
54 * whose [prefix] property has no value) have a namespace URI of http://www.w3.org/2000/xmlns/
79 * XML element. After popping the context, all Namespace prefix
91 * Declare a Namespace prefix.
93 * This method declares a prefix in the current Namespace
94 * context; the prefix will remain in force until this context
100 * Note that you must <em>not</em> declare a prefix after
103 * @param prefix The prefix t
112 declarePrefix(String prefix, String uri) argument
127 getURI(String prefix) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathEvaluatorImpl.java64 * This prefix resolver is created whenever null is passed to the
66 * requirement that if a null prefix resolver is used, an exception
67 * should only be thrown when an attempt is made to resolve a prefix.
82 public String getNamespaceForPrefix(String prefix, Node context) { argument
84 throw new DOMException(DOMException.NAMESPACE_ERR, fmsg); // Unable to resolve prefix with null prefix resolver.
93 public String getNamespaceForPrefix(String prefix) { argument
94 return getNamespaceForPrefix(prefix,null);
148 * . If this is specified as <code>null</code>, any namespace prefix
169 // If the resolver is null, create a dummy prefix resolve
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DEndElementEvent.java61 public EndElementEvent(String prefix, String uri, String localpart) { argument
62 this(new QName(uri,localpart,prefix));
82 String prefix = fQName.getPrefix();
83 if (prefix != null && prefix.length() > 0) {
84 writer.write(prefix);
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLEventWriterImpl.java227 * @return prefix associated with the URI.
253 * @param prefix namespace prefix associated with the uri.
257 public void setPrefix(String prefix, String uri) throws javax.xml.stream.XMLStreamException { argument
258 fStreamWriter.setPrefix(prefix, uri);
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorModel.java33 private final String prefix; field in class:ColorModel
37 this.prefix = "ColorChooser." + name; // NON-NLS: default prefix
85 return UIManager.getString(this.prefix + suffix + "Text", component.getLocale()); // NON-NLS: default postfix
89 Object value = UIManager.get(this.prefix + suffix, component.getLocale());
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusIcon.java43 private String prefix; field in class:NimbusIcon
46 NimbusIcon(String prefix, String key, int w, int h) { argument
49 this.prefix = prefix;
61 painter = (Painter) UIManager.get(prefix + "[Enabled]." + key);
143 Painter painter = (Painter)UIManager.get(prefix + "[Enabled]." + key);
/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DXMLCryptoContext.java108 * Returns the namespace prefix that the specified namespace URI is
109 * associated with. Returns the specified default prefix if the specified
110 * namespace URI has not been bound to a prefix. To bind a namespace URI
111 * to a prefix, call the {@link #putNamespacePrefix putNamespacePrefix}
115 * @param defaultPrefix the prefix to be returned in the event that the
116 * the specified namespace URI has not been bound to a prefix.
117 * @return the prefix that is associated with the specified namespace URI,
119 * the namespace URI is registered but has no prefix, an empty string
128 * Maps the specified namespace URI to the specified prefix. If there is
129 * already a prefix associate
142 putNamespacePrefix(String namespaceURI, String prefix) argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMDigestMethod.java148 public void marshal(Node parent, String prefix, DOMCryptoContext context) argument
153 (ownerDoc, "DigestMethod", XMLSignature.XMLNS, prefix);
157 marshalParams(dmElem, prefix);
186 * @param the namespace prefix to use
189 void marshalParams(Element parent, String prefix) argument
/openjdk7/jdk/src/share/classes/sun/instrument/
H A DTransformerManager.java61 void setPrefix(String prefix) { argument
62 mPrefix = prefix;
226 setNativeMethodPrefix(ClassFileTransformer transformer, String prefix) { argument
234 transformerInfo.setPrefix(prefix);
/openjdk7/jdk/src/share/classes/java/lang/instrument/
H A DInstrumentation.java526 * setting a native method prefix}.
527 * The ability to set a native method prefix is an optional
529 * Setting a native method prefix will only be supported if the
537 * setting a native method prefix, false if not.
547 * with a prefix applied to the name.
572 * method with the appended prefix "wrapped_". Note that
573 * "wrapped_" would be a poor choice of prefix since it
587 * This function allows the prefix to be specified and the
590 * resolution is retried taking the prefix into consideration.
600 * the specified prefix prepende
656 setNativeMethodPrefix(ClassFileTransformer transformer, String prefix) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.inline.hpp81 inline void Assembler::prefix(Register reg) {} function in class:Assembler
82 inline void Assembler::prefix(Address adr) {} function in class:Assembler
85 inline void Assembler::prefix(Address adr, Register reg, bool byteinst) {} function in class:Assembler
88 inline void Assembler::prefix(Address adr, XMMRegister reg) {} function in class:Assembler
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFocusHandler.java106 static void swapSelectionColors(final String prefix, final JTree c, final Object value) { argument
111 static void swapSelectionColors(final String prefix, final JTable c, final Object value) { argument
134 static void swapSelectionColors(final String prefix, final JList c, final Object value) { argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java52 /** the prefix code which represents the predecessor string to current input point **/
53 short prefix; field in class:LZWCompressor
85 prefix = (short)0xFFFF;
105 if ((index = lzss.findCharString(prefix, c)) != -1) {
106 prefix = index;
108 bf.writeBits(prefix, numBits);
109 if (lzss.addCharString(prefix, c) > limit) {
123 prefix = (short)((short)c & 0xFF);
135 if (prefix != -1) {
136 bf.writeBits(prefix, numBit
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DquickSort.cpp71 void QuickSort::print_array(const char* prefix, int* array, int length) { argument
72 tty->print("%s:", prefix);
/openjdk7/jaxp/src/org/xml/sax/
H A DContentHandler.java156 * Begin the scope of a prefix-URI Namespace mapping.
182 * "xml" prefix, since it is predeclared and immutable.</p>
184 * @param prefix the Namespace prefix being declared.
186 * which has no prefix.
187 * @param uri the Namespace URI the prefix is mapped to
193 public void startPrefixMapping (String prefix, String uri) argument
198 * End the scope of a prefix-URI mapping.
206 * @param prefix the prefix tha
213 endPrefixMapping(String prefix) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DContentHandlerNamespacePrefixAdapter.java80 public void startPrefixMapping(String prefix, String uri) throws SAXException { argument
81 if (XMLConstants.XML_NS_URI.equals(uri)) return; //xml prefix shall not be declared based on jdk api javadoc
88 nsBinding[len++] = prefix;
90 super.startPrefixMapping(prefix,uri);
99 String prefix = nsBinding[i];
100 if(prefix.length()==0)
103 this.atts.addAttribute(XMLConstants.XML_NS_URI,prefix,"xmlns:"+prefix,"CDATA",nsBinding[i+1]);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/parser/
H A DIncorrectNamespaceURIChecker.java50 * prefix "jaxb". If the document doesn't associate any prefix to the
51 * JAXB customization URI and if it does associate the jaxb prefix,
56 * nothing prevents you from using the prefix "jaxb" for other purpose
76 /** Sets to true once we see the jaxb prefix in use. */
94 public void startPrefixMapping(String prefix, String uri) throws SAXException { argument
95 if (WellKnownNamespace.XML_NAMESPACE_URI.equals(uri)) return; //xml prefix shall not be declared based on jdk api javadoc
96 if( prefix.equals("jaxb") )
101 super.startPrefixMapping(prefix, uri);
105 public void endPrefixMapping(String prefix) throw argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DForkXmlOutput.java80 public void beginStartTag(int prefix, String localName) throws IOException, XMLStreamException { argument
81 lhs.beginStartTag(prefix,localName);
82 rhs.beginStartTag(prefix,localName);
85 public void attribute(int prefix, String localName, String value) throws IOException, XMLStreamException { argument
86 lhs.attribute(prefix,localName,value);
87 rhs.attribute(prefix,localName,value);
95 public void endTag(int prefix, String localName) throws IOException, SAXException, XMLStreamException { argument
96 lhs.endTag(prefix,localName);
97 rhs.endTag(prefix,localName);
H A DMTOMXmlOutput.java75 public void beginStartTag(int prefix, String localName) throws IOException, XMLStreamException { argument
76 next.beginStartTag(prefix, localName);
77 this.nsUri = nsContext.getNamespaceURI(prefix);
85 public void attribute( int prefix, String localName, String value ) throws IOException, XMLStreamException { argument
86 next.attribute(prefix, localName, value);
97 public void endTag(int prefix, String localName) throws IOException, SAXException, XMLStreamException { argument
98 next.endTag(prefix, localName);
118 int prefix = nsContext.declareNsUri(WellKnownNamespace.XOP,"xop",false);
119 beginStartTag(prefix,"Include");
122 endTag(prefix,"Includ
[all...]
H A DXMLEventWriterOutput.java74 public void beginStartTag(int prefix, String localName) throws IOException, XMLStreamException { argument
77 nsContext.getPrefix(prefix),
78 nsContext.getNamespaceURI(prefix),
92 public void attribute(int prefix, String localName, String value) throws IOException, XMLStreamException { argument
94 if(prefix==-1)
98 nsContext.getPrefix(prefix),
99 nsContext.getNamespaceURI(prefix),
109 public void endTag(int prefix, String localName) throws IOException, SAXException, XMLStreamException { argument
112 nsContext.getPrefix(prefix),
113 nsContext.getNamespaceURI(prefix),
[all...]
H A DXmlOutput.java69 * convert prefix indices to URIs and the string representations of prefixes.
75 * prefix index 0 is reserved for "xml", and this binding is assumed to be always there.
139 public void beginStartTag(int prefix, String localName) throws IOException, XMLStreamException; argument
144 * @param prefix
145 * -1 if this attribute does not have a prefix
148 public void attribute( int prefix, String localName, String value ) throws IOException, XMLStreamException; argument
154 public void endTag(int prefix, String localName) throws IOException, SAXException, XMLStreamException; argument
H A DXmlOutputAbstractImpl.java90 public abstract void beginStartTag(int prefix, String localName) throws IOException, XMLStreamException; argument
100 * @param prefix
101 * -1 if this attribute does not have a prefix
104 public abstract void attribute( int prefix, String localName, String value ) throws IOException, XMLStreamException; argument
111 public abstract void endTag(int prefix, String localName) throws IOException, SAXException, XMLStreamException; argument
122 * The conversion table from the namespace URI index to prefix index.
127 * This allows {@link Name#nsUriIndex} to be converted to prefix index
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DStAXConnector.java103 protected final String getQName(String prefix, String localName) { argument
104 if(prefix==null || prefix.length()==0)
107 return prefix + ':' + localName;
H A DXmlVisitor.java100 void startPrefixMapping( String prefix, String nsUri ) throws SAXException; argument
104 void endPrefixMapping( String prefix ) throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DQualifiedName.java33 public String prefix; field in class:QualifiedName
47 public QualifiedName(String prefix, String namespaceName, String localName, String qName) { argument
48 this.prefix = prefix;
58 public void set(String prefix, String namespaceName, String localName, String qName) { argument
59 this.prefix = prefix;
70 public QualifiedName(String prefix, String namespaceName, String localName, String qName, int index) { argument
71 this.prefix = prefix;
81 set(String prefix, String namespaceName, String localName, String qName, int index) argument
94 QualifiedName(String prefix, String namespaceName, String localName, String qName, int index, int prefixIndex, int namespaceNameIndex, int localNameIndex) argument
106 set(String prefix, String namespaceName, String localName, String qName, int index, int prefixIndex, int namespaceNameIndex, int localNameIndex) argument
120 QualifiedName(String prefix, String namespaceName, String localName) argument
131 set(String prefix, String namespaceName, String localName) argument
144 QualifiedName(String prefix, String namespaceName, String localName, int prefixIndex, int namespaceNameIndex, int localNameIndex, char[] charBuffer) argument
173 set(String prefix, String namespaceName, String localName, int prefixIndex, int namespaceNameIndex, int localNameIndex, char[] charBuffer) argument
204 QualifiedName(String prefix, String namespaceName, String localName, int index) argument
215 set(String prefix, String namespaceName, String localName, int index) argument
228 QualifiedName(String prefix, String namespaceName, String localName, int index, int prefixIndex, int namespaceNameIndex, int localNameIndex) argument
240 set(String prefix, String namespaceName, String localName, int index, int prefixIndex, int namespaceNameIndex, int localNameIndex) argument
255 QualifiedName(String prefix, String namespaceName) argument
266 set(String prefix, String namespaceName) argument
[all...]

Completed in 115 milliseconds

1234567891011>>