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

1 23 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/contrib/py2tf/pyct/
context.py 29 namespace: Dict[str->*], containing symbols visible to the entity
35 def __init__(self, namer, source_code, source_file, namespace, arg_values,
40 self.namespace = namespace
  /external/emma/core/java12/com/vladium/util/exception/
ExceptionCommon.java 52 * <LI> when <CODE>getMessage(namespace, code)</CODE> is called, 'code'
54 * under 'namespace';
57 * key 'code', the same step is repeated for the superclass of 'namespace';
73 * @param namespace the Class object acting as the namespace key for the
77 * @param messageResourceBundleName name of a bundle (path relative to 'namespace'
81 * @return ResourceBundle that corresponds to 'namespace' key or null if
84 * @throws Error if 'namespace' does not correspond to an exception class derived
89 public static ResourceBundle addExceptionResource (final Class namespace,
92 if ((namespace != null) && (messageResourceBundleName != null
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Constants.cs 35 namespace Antlr.Runtime
ICharStream.cs 33 namespace Antlr.Runtime {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
TestFixtureBase.cs 35 namespace Antlr.Runtime.Tests
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ICharStream.cs 33 namespace Antlr.Runtime
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
FunctionDelegates.cs 33 namespace Antlr.Runtime.Misc
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
ITokenStream`1.cs 32 namespace Antlr.Runtime
  /external/flatbuffers/net/FlatBuffers/
FlatBufferConstants.cs 22 namespace FlatBuffers
  /external/flatbuffers/tests/FlatBuffers.Test/
FlatBuffersTestClassAttribute.cs 22 namespace FlatBuffers.Test
Lcg.cs 17 namespace FlatBuffers.Test
  /external/tensorflow/tensorflow/go/op/
scope.go 38 namespace string
81 if s.namespace != "" {
82 args.Name = s.namespace + "/" + args.Name
93 // graph to be namespaced with 'namespace'. If namespace collides with an
94 // existing namespace within the scope, then a suffix will be added.
95 func (s *Scope) SubScope(namespace string) *Scope {
96 namespace = s.uniqueName(namespace)
97 if s.namespace != ""
    [all...]
  /frameworks/base/tools/aapt2/integration-tests/NamespaceTest/Split/src/com/android/aapt/namespace/split/
SplitActivity.java 16 package com.android.aapt.namespace.split;
  /libcore/luni/src/main/java/javax/xml/namespace/
NamespaceContext.java 20 package javax.xml.namespace;
25 * <p>Interface for read only XML Namespace context processing.</p>
27 * <p>An XML Namespace has the properties:</p>
29 * <li>Namespace URI:
30 * Namespace name expressed as a URI to which the prefix is bound</li>
33 * ("xmlns") in the Namespace declaration</li>
35 * <p> example: <code>&lt;element xmlns:prefix="http://Namespace-name-URI"&gt;</code></p>
38 * for Namespace URI and prefix resolution.</p>
40 * <p>Note that a Namespace URI can be bound to
43 * ("xmlns") Namespace declarations occur in the same Start-Tag an
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncExtElementAvailable.java 51 String namespace; local
60 namespace = Constants.S_XSLNAMESPACEURL;
66 namespace = xctxt.getNamespaceContext().getNamespaceForPrefix(prefix);
67 if (null == namespace)
72 if (namespace.equals(Constants.S_XSLNAMESPACEURL)
73 || namespace.equals(Constants.S_BUILTIN_EXTENSIONS_URL))
79 new QName(namespace, methName))
91 return extProvider.elementAvailable(namespace, methName)
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/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
EnumInNestedNS.cs 5 namespace NamespaceA.NamespaceB
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/templates/
ar_eventhandler_h.template 34 namespace ArchRast
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeLayoutParamsMapAttributes.java 41 public String getAttributeValue(String namespace, String name) {
42 if (BridgeConstants.NS_RESOURCES.equals(namespace)) {
84 public int getAttributeListValue(String namespace, String attribute,
90 public boolean getAttributeBooleanValue(String namespace, String attribute,
96 public int getAttributeResourceValue(String namespace, String attribute,
102 public int getAttributeIntValue(String namespace, String attribute,
108 public int getAttributeUnsignedIntValue(String namespace, String attribute,
114 public float getAttributeFloatValue(String namespace, String attribute,
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
csignal 41 namespace std
46 } // namespace std
utility 33 #define __STL_BEGIN_NAMESPACE namespace std {
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
rlcompleter.py 4 completes keywords, built-ins and globals in a selectable namespace (which
48 def __init__(self, namespace = None):
51 Completer([namespace]) -> completer instance.
53 If unspecified, the default namespace where completions are performed
63 if namespace and not isinstance(namespace, dict):
64 raise TypeError,'namespace must be a dictionary'
66 # Don't bind to namespace quite yet, but flag whether the user wants a
67 # specific namespace or to use __main__.__dict__. This will allow us
69 if namespace is None:
    [all...]
  /external/python/cpython2/Lib/
rlcompleter.py 4 namespace (which defaults to __main__); when completing NAME.NAME..., it
44 def __init__(self, namespace = None):
47 Completer([namespace]) -> completer instance.
49 If unspecified, the default namespace where completions are performed
59 if namespace and not isinstance(namespace, dict):
60 raise TypeError,'namespace must be a dictionary'
62 # Don't bind to namespace quite yet, but flag whether the user wants a
63 # specific namespace or to use __main__.__dict__. This will allow us
65 if namespace is None
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
rlcompleter.py 4 namespace (which defaults to __main__); when completing NAME.NAME..., it
44 def __init__(self, namespace = None):
47 Completer([namespace]) -> completer instance.
49 If unspecified, the default namespace where completions are performed
59 if namespace and not isinstance(namespace, dict):
60 raise TypeError,'namespace must be a dictionary'
62 # Don't bind to namespace quite yet, but flag whether the user wants a
63 # specific namespace or to use __main__.__dict__. This will allow us
65 if namespace is None
    [all...]

Completed in 830 milliseconds

1 23 4 5 6 7 8 91011>>