HomeSort by relevance Sort by last modified time
    Searched refs:namespace (Results 226 - 250 of 1118) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeRuleReturnScope`1.cs 33 namespace Antlr.Runtime.Tree
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TreeExtensions.cs 35 namespace Antlr.Runtime.JavaExtensions
  /external/chromium_org/tools/json_schema_compiler/
features_cc_generator.py 12 def Generate(self, feature_defs, source_file, namespace):
13 return _Generator(feature_defs, source_file, namespace).Generate()
19 def __init__(self, feature_defs, source_file, namespace):
24 self._namespace = namespace
schema_loader.py 14 '''Resolves a type name into the namespace the type belongs to.
34 # Try to find the file defining the namespace. Eg. for
35 # nameSpace.sub_name_space.Type' the following heuristics looks for:
47 namespace = Model().AddNamespace(
50 if type_name not in namespace.types:
52 return namespace
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathExpression.java 21 import javax.xml.namespace.QName;
63 * QNames in the expression are resolved against the XPath namespace context.
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_event_factory.py 55 'namespace': '',
68 if self.namespace == 'EventTarget':
70 self._outputs[(self.namespace + self.suffix + ".cpp")] = self.generate_implementation
75 'namespace': self.namespace,
make_qualified_names.py 52 'namespace': '',
74 self.namespace = self._parameter('namespace')
76 namespace_prefix = self._parameter('namespacePrefix') or self.namespace.lower()
82 (self.namespace + "Names.h"): self.generate_header,
83 (self.namespace + "Names.cpp"): self.generate_implementation,
86 'namespace': self.namespace,
  /external/smack/src/org/jivesoftware/smackx/pubsub/
PubSubElementType.java 68 public static PubSubElementType valueOfFromElemName(String elemName, String namespace)
70 int index = namespace.lastIndexOf('#');
71 String fragment = (index == -1 ? null : namespace.substring(index+1));
  /external/smack/src/org/jivesoftware/smackx/pubsub/provider/
PubSubProvider.java 35 String namespace = parser.getNamespace(); local
36 pubsub.setPubSubNamespace(PubSubNamespace.valueOfFromXmlns(namespace));
45 PacketExtension ext = PacketParserUtils.parsePacketExtension(parser.getName(), namespace, parser);
  /external/stlport/stlport/
functional 54 namespace boost {
62 namespace _mfi {
68 } // namespace boost
72 namespace tr1 {
84 namespace placeholders {
96 } // namespace tr1
121 namespace boost {
132 namespace tr1 {
138 } // namespace tr1
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
BridgeXmlPullAttributes.java 58 // get the attribute namespace
70 // this is not an attribute in the android namespace, we query the customviewloader, if
83 public int getAttributeListValue(String namespace, String attribute,
85 String value = getAttributeValue(namespace, attribute);
100 public boolean getAttributeBooleanValue(String namespace, String attribute,
102 String value = getAttributeValue(namespace, attribute);
117 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) {
118 String value = getAttributeValue(namespace, attribute);
124 public int getAttributeIntValue(String namespace, String attribute,
126 String value = getAttributeValue(namespace, attribute)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/
functional 54 namespace boost {
62 namespace _mfi {
68 } // namespace boost
72 namespace tr1 {
84 namespace placeholders {
96 } // namespace tr1
121 namespace boost {
132 namespace tr1 {
138 } // namespace tr1
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
functional 54 namespace boost {
62 namespace _mfi {
68 } // namespace boost
72 namespace tr1 {
84 namespace placeholders {
96 } // namespace tr1
121 namespace boost {
132 namespace tr1 {
138 } // namespace tr1
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
functional 54 namespace boost {
62 namespace _mfi {
68 } // namespace boost
72 namespace tr1 {
84 namespace placeholders {
96 } // namespace tr1
121 namespace boost {
132 namespace tr1 {
138 } // namespace tr1
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
functional 54 namespace boost {
62 namespace _mfi {
68 } // namespace boost
72 namespace tr1 {
84 namespace placeholders {
96 } // namespace tr1
121 namespace boost {
132 namespace tr1 {
138 } // namespace tr1
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
functional 54 namespace boost {
62 namespace _mfi {
68 } // namespace boost
72 namespace tr1 {
84 namespace placeholders {
96 } // namespace tr1
121 namespace boost {
132 namespace tr1 {
138 } // namespace tr1
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
functional 54 namespace boost {
62 namespace _mfi {
68 } // namespace boost
72 namespace tr1 {
84 namespace placeholders {
96 } // namespace tr1
121 namespace boost {
132 namespace tr1 {
138 } // namespace tr1
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSystemProperty.java 74 String namespace; local
76 namespace = xctxt.getNamespaceContext().getNamespaceForPrefix(prefix);
80 if (namespace.startsWith("http://www.w3.org/XSL/Transform")
81 || namespace.equals("http://www.w3.org/1999/XSL/Transform"))
96 new Object[]{ namespace,
97 fullName }); //"Don't currently do anything with namespace "+namespace+" in property: "+fullName);
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExtensionNamespacesManager.java 29 * 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)
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);
89 String namespace = extNsSpt.getNamespace(); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ExpandedNameTable.java 64 public static final int NAMESPACE = ((int)DTM.NAMESPACE_NODE) ;
145 * 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)
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
319 String namespace = m_extendedTypes[ExpandedNameID].getNamespace(); local
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Node.java 81 For no namespace, please use Xml.NO_NAMESPACE, null is not a
85 public Element createElement(String namespace, String name) {
88 e.namespace = namespace == null ? "" : namespace;
115 /** Returns the element with the given namespace and name. If the
119 public Element getElement(String namespace, String name) {
121 int i = indexOf(namespace, name, 0);
122 int j = indexOf(namespace, name, i + 1);
127 + namespace
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 26 private String theNamespace; // element type namespace name
57 theNamespace = namespace(name, false);
62 Return a namespace name from a Qname.
63 The attribute flag tells us whether to return an empty namespace
67 @return The namespace name
69 public String namespace(String name, boolean attribute) { method in class:ElementType
76 return "http://www.w3.org/XML/1998/namespace";
106 Returns the namespace name of this element type.
107 @return The namespace name of the element type
110 public String namespace() { return theNamespace; method in class:ElementType
194 String namespace = namespace(name, true); local
    [all...]
  /frameworks/base/core/java/android/content/res/
XmlBlock.java 223 public String getAttributeValue(String namespace, String name) {
224 int idx = nativeGetAttributeIndex(mParseState, namespace, name);
227 + namespace + ":" + name + " index = " + idx);
229 "Namespace=" + getAttributeNamespace(idx)
267 public void require(int type, String namespace, String name) throws XmlPullParserException,IOException {
269 || (namespace != null && !namespace.equals( getNamespace () ) )
314 public int getAttributeListValue(String namespace, String attribute,
316 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
322 public boolean getAttributeBooleanValue(String namespace, String attribute
    [all...]
  /external/chromium_org/tools/telemetry/third_party/davclient/
davclient.py 25 def object_to_etree(parent, obj, namespace=''):
32 ElementTree.SubElement(parent, '{%s}%s' % (namespace, obj))
40 key_etree = ElementTree.SubElement(parent, '{%s}%s' % (namespace, key))
41 object_to_etree(key_etree, value, namespace=namespace)
44 object_to_etree(key_etree, value, namespace=namespace)
49 object_to_etree(parent, item, namespace=namespace)
195 def propfind(self, path, properties='allprop', namespace='DAV:', depth=None, headers=None)
    [all...]
  /external/chromium_org/extensions/renderer/resources/
storage_area.js 15 function StorageArea(namespace, schema) {
16 // Binds an API function for a namespace to its browser-side call, e.g.
31 $Array.concat([namespace], args),

Completed in 1692 milliseconds

1 2 3 4 5 6 7 8 91011>>