Searched refs:namespace (Results 1 - 25 of 22348) sorted by path

1234567891011>>

/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/CSharp3/Sources/Antlr3.Runtime.Test/
H A DTestExpressionFeatures.g378 @lexer::namespace{Antlr3.Runtime.Test}
79 @parser::namespace{Antlr3.Runtime.Test}
/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/antlr/antlr-3.4/runtime/Ruby/lib/
H A Dantlr3.rb37 The main namespace for the ANTLR runtime libraries, which are used by
72 just a module used as a namespace for the named constant values used
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtask.rb54 @namespace = Rake.application.current_scope
76 full_name = ( @namespace + [ @name, 'compile' ] ).join( ':' )
85 full_name = ( @namespace + [ @name, 'clobber' ] ).join( ':' )
94 namespace( @name ) do
H A Dtemplate.rb95 namespace = options.fetch( :namespace, ::Object )
98 return( parser.group( namespace ) )
108 namespace = options.fetch( :namespace, ::Object )
112 return( parser.group( namespace ) )
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-parser.rb117 def fetch_group( namespace, name )
118 if namespace.const_defined?( name )
119 group = namespace.const_get( name )
125 namespace.const_set( name, group )
160 def group( namespace = ::Object )
161 group_spec( namespace )
170 # 79:1: group_spec[ namespace ] returns [ group ] : ( group_name[ $namespace ] | ) ( member[ $group ] )* ;
172 def group_spec( namespace )
179 # at line 80:5: ( group_name[ $namespace ] | ) ( membe
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DCSharp2.stg86 <if(actions.(actionScope).namespace)>
87 namespace <actions.(actionScope).namespace>
92 <if(actions.(actionScope).namespace)>
94 } // namespace <actions.(actionScope).namespace>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DCSharp3.stg84 <if(actions.(actionScope).namespace)>
85 namespace <actions.(actionScope).namespace>
90 <if(actions.(actionScope).namespace)>
92 } // namespace <actions.(actionScope).namespace>
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExpressionVisitor.java35 * extension namespace.
55 * If the function is an extension function, register the namespace.
66 String namespace = ((FuncExtFunction)func).getNamespace();
67 m_sroot.getExtensionNamespacesManager().registerExtension(namespace);
75 String namespace = this.m_sroot.getNamespaceForPrefix(prefix);
76 m_sroot.getExtensionNamespacesManager().registerExtension(namespace);
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 DElemExsltFunction.java128 // Register the function namespace (if not already registered).
129 String namespace = getName().getNamespace();
131 Object[] args ={namespace, sroot};
133 new ExtensionNamespaceSupport(namespace, handlerClass, args);
135 // Make sure there is a handler for the EXSLT functions namespace
137 if (!(namespace.equals(Constants.S_EXSLT_FUNCTIONS_URL)))
139 namespace = Constants.S_EXSLT_FUNCTIONS_URL;
140 args = new Object[]{namespace, sroot};
141 extNsSpt = new ExtensionNamespaceSupport(namespace, handlerClass, args);
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
H A DElemLiteralResult.java118 * other than attributes with names in the XSLT namespace.
123 /** List of attributes with the XSLT namespace.
236 * if namespace is not null.
248 String namespace = null;
252 namespace = avt.getURI();
254 if ((namespace != null && (!namespace.equals("")) && (namespace
255 +":"+avt.getName()).equals(name))|| ((namespace == null ||
256 namespace
[all...]
/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...]
H A DTreeWalker2Result.java121 String namespace = m_dtm.getNamespaceURI(node);
125 m_handler.startElement(namespace, localName, elemName);
/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 DDTMNodeProxy.java1616 * Look up the namespace URI associated to the given prefix, starting from this node.
1617 * Use lookupNamespaceURI(null) to lookup the default namespace
1620 * @return th URI for the namespace
1628 String namespace = this.getNamespaceURI();
1630 if (namespace !=null) {
1633 // looking for default namespace
1634 return namespace;
1636 // non default namespace
1637 return namespace;
1647 namespace
[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...]

Completed in 648 milliseconds

1234567891011>>