HomeSort by relevance Sort by last modified time
    Searched refs:namespace (Results 51 - 75 of 676) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncExtFunctionAvailable.java 52 String namespace; local
61 namespace = Constants.S_XSLNAMESPACEURL;
67 namespace = xctxt.getNamespaceContext().getNamespaceForPrefix(prefix);
68 if (null == namespace)
73 if (namespace.equals(Constants.S_XSLNAMESPACEURL))
89 return extProvider.functionAvailable(namespace, methName)
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPPrefixResolver.java 26 import javax.xml.namespace.NamespaceContext;
31 * can be used to perform prefix-to-namespace lookup
68 * The URI for the XML namespace.
73 "http://www.w3.org/XML/1998/namespace";
77 * Given a prefix and a Context Node, get the corresponding namespace.
82 * xmlns attribute that binds a prefix to a namespace.
83 * @return Namespace that prefix resolves to, or null if prefix
89 String namespace = null; local
92 namespace = S_XMLNAMESPACEURI;
96 while ((null != parent) && (null == namespace)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
appengine_blobstore.py 25 def Set(self, key, blob, namespace):
29 key = namespace + '.' + key
37 def Get(self, key, namespace):
40 key = namespace + '.' + key
47 def Delete(self, key, namespace):
50 key = namespace + '.' + key
memcache_object_store.py 18 def __init__(self, namespace):
19 self._namespace = namespace
27 memcache.Client().set_multi_async(mapping, namespace=self._namespace)
33 rpc = memcache.Client().get_multi_async(keys, namespace=self._namespace)
37 memcache.delete_multi(keys, namespace=self._namespace)
  /external/chromium_org/chrome/browser/resources/cryptotoken/
gnubbies.js 12 * namespace: string,
51 * Registers a new gnubby namespace, i.e. an implementation of the
52 * enumerate/open functions for all devices within a namespace.
53 * @param {string} namespace The namespace of the numerator, e.g. 'usb'.
56 Gnubbies.prototype.registerNamespace = function(namespace, impl) {
57 if (!this.impl_.hasOwnProperty(namespace)) {
58 this.namespaces_.push(namespace);
60 this.impl_[namespace] = impl;
68 if (!this.impl_.hasOwnProperty(id.namespace)) return false
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
PrefixResolverDefault.java 28 * can be used to perform prefix-to-namespace lookup
54 * Given a namespace, get the corrisponding prefix. This assumes that
55 * the PrevixResolver hold's it's own namespace context, or is a namespace
58 * @return Namespace that prefix resolves to, or null if prefix
67 * Given a namespace, get the corrisponding prefix.
72 * xmlns attribute that binds a prefix to a namespace.
73 * @return Namespace that prefix resolves to, or null if prefix
81 String namespace = null; local
85 namespace = Constants.S_XMLNAMESPACEURI
    [all...]
NSInfo.java 24 * 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)
86 m_namespace = namespace;
90 /** The namespace URI */
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_names.py 55 'namespace': '',
70 namespace = self.in_file.parameters['namespace'].strip('"')
74 assert namespace, 'A namespace is required.'
77 (namespace + suffix + 'Names.h'): self.generate_header,
78 (namespace + suffix + 'Names.cpp'): self.generate_implementation,
81 'namespace': namespace,
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Element.java 35 protected String namespace; field in class:Element
65 String namespace,
69 ? super.createElement(namespace, name)
70 : this.parent.createElement(namespace, name);
96 public String getAttributeValue(String namespace, String name) {
99 && (namespace == null || namespace.equals(getAttributeNamespace(i)))) {
131 * returns the namespace of the element */
134 return namespace;
138 * returns the namespace for the given prefix *
    [all...]
  /external/chromium_org/tools/json_to_struct/
json_to_struct.py 83 def _GenerateH(basepath, fileroot, head, namespace, schema, description):
92 namespace: A string corresponding to the C++ namespace to use.
114 if namespace:
115 f.write('namespace %s {\n' % namespace)
129 if namespace:
131 f.write('} // namespace %s\n' % namespace)
136 def _GenerateCC(basepath, fileroot, head, namespace, schema, description)
    [all...]
  /bionic/libstdc++/include/
csetjmp 45 namespace std
49 } // namespace std
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
FloatPointMac.mm 30 namespace blink {
FloatRectMac.mm 30 namespace blink {
FloatSizeMac.mm 30 namespace blink {
IntPointMac.mm 29 namespace blink {
IntSizeMac.mm 29 namespace blink {
  /external/chromium_org/third_party/webrtc/base/
maccocoathreadhelper.mm 17 namespace rtc {
40 } // namespace rtc
  /external/chromium_org/ui/ozone/
generate_constructor_list.py 16 --namespace ui \
26 namespace ui {
31 } // namespace ui
33 namespace ui {
45 } // namespace ui
74 def GenerateConstructorList(out, namespace, export, typenames, platforms,
88 out.write('namespace %(namespace)s {\n' % {'namespace': namespace})
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IIntStream.cs 36 namespace Antlr.Runtime
ITokenStream.cs 32 namespace Antlr.Runtime {
ParserRuleReturnScope.cs 33 namespace Antlr.Runtime {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
StackList.cs 35 namespace Antlr.Runtime.Collections
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeRuleReturnScope.cs 33 namespace Antlr.Runtime.Tree {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
AstParserRuleReturnScope`2.cs 33 namespace Antlr.Runtime
IIntStream.cs 33 namespace Antlr.Runtime

Completed in 990 milliseconds

1 23 4 5 6 7 8 91011>>