Searched defs:namespace (Results 1 - 25 of 100) sorted by path

1234

/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jar ... dom4j.QName getQName () public abstract org.dom4j.Namespace getNamespace () public abstract void setNamespace (org.dom4j.Namespace ...
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js15 * The org.antlr global namespace object. If antlr is already defined, the
18 * @namespace org.antlr
31 * Returns the namespace specified and creates it if it doesn't exist.
36 * org.antlr.namespace("really.long.nested.namespace");
42 * @return {Object} A reference to the last namespace object created
44 * org.antlr.namespace("org.antlr.property.package");
46 org.antlr.namespace = function() {
65 * @namespace org.antlr.env
78 * @namespace or
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExtensionNamespaceSupport.java29 * namespace the stylesheet uses. At the beginning of a transformation, TransformerImpl generates
41 public ExtensionNamespaceSupport(String namespace, argument
45 m_namespace = namespace;
H A DExtensionNamespacesManager.java29 * extension namespace that is required during the transformation process
53 * objects is created, one for each predefined extension namespace.
61 * If necessary, register the extension namespace found compiling a function or
64 * If it is a predefined namespace, create a
66 * during transformation runtime. Otherwise, add the namespace, if necessary,
70 public void registerExtension(String namespace) argument
72 if (namespaceIndex(namespace, m_extensions) == -1)
74 int predef = namespaceIndex(namespace, m_predefExtensions);
77 else if (!(m_unregisteredExtensions.contains(namespace)))
78 m_unregisteredExtensions.add(namespace);
103 namespaceIndex(String namespace, Vector extensions) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTAttributeDef.java58 * @param namespace The Namespace URI, or an empty string.
59 * @param name The local name (without prefix), or empty string if not namespace processing.
67 XSLTAttributeDef(String namespace, String name, int type, boolean required, boolean supportsAVT, int errorType) argument
69 this.m_namespace = namespace;
80 * @param namespace The Namespace URI, or an empty string.
81 * @param name The local name (without prefix), or empty string if not namespace processing.
90 XSLTAttributeDef(String namespace, String name, int type, boolean supportsAVT, int errorType, String defaultVal) argument
93 this.m_namespace = namespace;
106 * @param namespace The Namespace URI, or an empty string.
107 * @param name The local name (without prefix), or empty string if not namespace processin
117 XSLTAttributeDef(String namespace, String name, boolean required, boolean supportsAVT, boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2) argument
150 XSLTAttributeDef(String namespace, String name, boolean required, boolean supportsAVT, boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2, String k3, int v3) argument
185 XSLTAttributeDef(String namespace, String name, boolean required, boolean supportsAVT, boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2, String k3, int v3, String k4, int v4) argument
[all...]
H A DXSLTElementDef.java47 * @param namespace The Namespace URI, "*", or null.
55 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, argument
59 build(namespace, name, nameAlias, elements, attributes, contentHandler,
61 if ( (null != namespace)
62 && (namespace.equals(Constants.S_XSLNAMESPACEURL)
63 || namespace.equals(Constants.S_BUILTIN_EXTENSIONS_URL)
64 || namespace.equals(Constants.S_BUILTIN_OLD_EXTENSIONS_URL)))
66 schema.addAvailableElement(new QName(namespace, name));
68 schema.addAvailableElement(new QName(namespace, nameAlias));
75 * @param namespace Th
84 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, boolean has_required) argument
116 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, boolean has_required, boolean required) argument
142 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, boolean has_required, boolean required, int order, boolean multiAllowed) argument
171 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, boolean has_required, boolean required, boolean has_order, int order, boolean multiAllowed) argument
199 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, boolean has_order, int order, boolean multiAllowed) argument
224 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, int order, boolean multiAllowed) argument
263 build(String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/serialize/
H A DSerializerUtils.java150 * to copy an individual namespace node.
170 for (int namespace = dtm.getFirstNamespaceNode(src, true);
171 DTM.NULL != namespace;
172 namespace = dtm.getNextNamespaceNode(src, namespace, true))
175 // String prefix = dtm.getPrefix(namespace);
176 String prefix = dtm.getNodeNameX(namespace);
179 String srcURI = dtm.getNodeValue(namespace);
207 * Returns whether a namespace is defined
213 * @return True if the namespace i
248 ensureNamespaceDeclDeclared( SerializationHandler handler, DTM dtm, int namespace) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemExtensionCall.java96 // Register the extension namespace if the extension does not have
107 * @param namespace Namespace associated with this extension element
112 String namespace)
132 if (namespace.equals(declNamespace))
111 getElemExtensionDecl(StylesheetRoot stylesheet, String namespace) argument
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerImpl.java794 * of the element, if it is in no namespace, or, the URI
796 * if the element is in that namespace. For example:
813 * These must be in the extension namespace of
815 * by putting the namespace URI in braces before the
866 * recognized and are not namespace qualified.
1374 * @param namespace The namespace of the parameter.
1380 public void setParameter(String name, String namespace, Object value) argument
1384 QName qname = new QName(namespace, name);
1408 * which may have a namespace UR
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java42 * the URL ID, and the local-name ID. Note that the namespace URL id
43 * can be 0, which should have the meaning that the namespace is null.
158 * The node is a <code>namespace node</code>. Note that this is not
258 * Retrieves an attribute node by local name and namespace URI
264 * @param namespaceURI The namespace URI of the attribute to
284 * Given a node handle, get the index of the node's first namespace node.
291 * namespace declarations should be returned.
292 * @return handle of first namespace,
328 * Given a namespace handle, advance to the next namespace i
450 getExpandedTypeID(String namespace, String localName, int type) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java83 * These hold indexes to elements based on namespace and local name.
84 * The base lookup is the the namespace. The second lookup is the local
378 * @param nsIndex The namespace index lookup.
1039 * Retrieves an attribute node by by qualified name and namespace URI.
1042 * @param namespaceURI The namespace URI of the attribute to
1231 // Assume that attributes and namespace nodes immediately follow the element
1245 /** Lazily created namespace lists. */
1249 /** Build table of namespace declaration
1251 * SuballocatedIntVectors containing the namespace node HANDLES declared at
1299 // Base the size of a new namespace lis
1704 getExpandedTypeID(String namespace, String localName, int type) argument
[all...]
H A DDTMDocumentImpl.java56 * %REVIEW% I _think_ the SAX convention is that "no namespace" is expressed
254 * Set a reference pointer to the namespace URI symbol table.
265 * Get a reference pointer to the namespace URI symbol table.
677 // * @param nsIndex The namespace of the node
686 // // this element and its attributes, store the element, namespace, and attritute
760 // * @param ns String the namespace of the node
791 // * @param ns the namespace of the element
811 // // Pop a level of namespace table
1075 * Retrieves an attribute node by by qualified name and namespace URI.
1078 * @param namespaceURI The namespace UR
1535 getExpandedTypeID(String namespace, String localName, int type) argument
[all...]
H A DExpandedNameTable.java145 * Given an expanded name represented by namespace, local name and node type,
150 * @param namespace The namespace
156 public int getExpandedTypeID(String namespace, String localName, int type) argument
158 return getExpandedTypeID(namespace, localName, type, false);
162 * Given an expanded name represented by namespace, local name and node type,
171 * @param namespace The namespace
179 public int getExpandedTypeID(String namespace, String localName, int type, boolean searchOnly) argument
181 if (null == namespace)
[all...]
H A DExtendedType.java30 private String namespace; field in class:ExtendedType
35 * Create an ExtendedType object from node type, namespace and local name.
36 * The hash code is calculated from the node type, namespace and local name.
39 * @param namespace Namespace of the node
42 public ExtendedType (int nodetype, String namespace, String localName) argument
45 this.namespace = namespace;
47 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
51 * Create an ExtendedType object from node type, namespace, local name
55 * @param namespace Namespac
59 ExtendedType(int nodetype, String namespace, String localName, int hash) argument
72 redefine(int nodetype, String namespace, String localName) argument
85 redefine(int nodetype, String namespace, String localName, int hash) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNSInfo.java24 * This class holds information about the namespace info
25 * of a node. It is used to optimize namespace lookup in
77 * @param namespace The namespace URI
81 public NSInfo(String namespace, boolean hasXMLNSAttrs) argument
86 m_namespace = namespace;
90 /** The namespace URI */
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncExtFunction.java48 * The namespace for the extension function, which should not normally
102 * Return the namespace of the extension function.
104 * @return The namespace of the extension function.
158 * @param namespace The namespace for the extension function, which should
165 public FuncExtFunction(java.lang.String namespace, argument
168 //try{throw new Exception("FuncExtFunction() " + namespace + " " + extensionName);} catch (Exception e){e.printStackTrace();}
169 m_namespace = namespace;
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
H A DNodeTest.java43 * The namespace or local name for node tests with a wildcard.
92 * The namespace to be tested for, which may be null.
98 * Return the namespace to be tested.
100 * @return The namespace to be tested for, or {@link #WILD}, or null.
108 * Set the namespace to be tested.
110 * @param ns The namespace to be tested for, or {@link #WILD}, or null.
196 * @param namespace The namespace to be tested.
199 public NodeTest(int whatToShow, String namespace, String name) argument
201 initNodeTest(whatToShow, namespace, nam
284 initNodeTest(int whatToShow, String namespace, String name) argument
[all...]
H A DStepPattern.java51 * @param namespace The namespace to be tested.
56 public StepPattern(int whatToShow, String namespace, String name, int axis, argument
60 super(whatToShow, namespace, name);
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dhidgnubbydevice.js44 {namespace: HidGnubbyDevice.NAMESPACE, device: this.id});
467 namespace: HidGnubbyDevice.NAMESPACE,
H A Dusbgnubbydevice.js50 {namespace: UsbGnubbyDevice.NAMESPACE, device: this.id});
531 namespace: UsbGnubbyDevice.NAMESPACE,
/external/chromium_org/remoting/android/cast/src/org/chromium/chromoting/
H A DCastExtensionHandler.java55 * Custom namespace that will be used to communicate with the Cast device.
194 * Returns the namespace associated with this channel.
201 public void onMessageReceived(CastDevice castDevice, String namespace, String message) { argument
202 if (namespace.equals(CHROMOTOCAST_NAMESPACE)) {
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSGrammar.y46 using namespace blink;
47 using namespace HTMLNames;
278 %type <rule> namespace
504 | namespace
554 | namespace
590 namespace: label
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 682 milliseconds

1234