/prebuilts/gdb/linux-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...] |
/prebuilts/python/darwin-x86/2.7.5/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...] |
/prebuilts/python/linux-x86/2.7.5/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...] |
/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/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...] |
/cts/tests/autofillservice/src/android/autofillservice/cts/common/ |
SettingsStateChangerRule.java | 47 * @param namespace settings namespace. 51 public SettingsStateChangerRule(@NonNull Context context, @NonNull String namespace, 53 super(new SettingsStateManager(context, namespace, key), value);
|
/external/flatbuffers/tests/MyGame/Example/ |
Any.cs | 5 namespace MyGame.Example
|
Color.cs | 5 namespace MyGame.Example
|
/external/swiftshader/third_party/stlport-cpp11-extension/ |
string | 32 namespace std { 41 } // namespace std
|
/external/webrtc/webrtc/base/ |
maccocoathreadhelper.mm | 17 namespace rtc { 40 } // namespace rtc
|
/external/webrtc/webrtc/modules/video_coding/codecs/h264/ |
h264_objc.mm | 18 namespace webrtc { 33 } // namespace webrtc
|
/frameworks/base/tools/aapt2/integration-tests/NamespaceTest/App/src/com/android/aapt/namespace/app/ |
MainActivity.java | 16 package com.android.aapt.namespace.app; 28 com.android.aapt.namespace.libtwo.TextView tv = findViewById(R.id.textview);
|
/libcore/luni/src/test/java/libcore/xml/ |
NamespacedAttributesLookupTest.java | 33 * names for different combinations of namespaces and namespace prefixes. 40 "http://xml.org/sax/features/namespace-prefixes"; 67 boolean namespace = true; 69 assertEquals(expected, getStartElements(xml, namespace, namespacePrefixes)); 94 boolean namespace = false; 96 assertEquals(expected, getStartElements(xml, namespace, namespacePrefixes)); 99 public List<String> getStartElements(String xml, final boolean namespace, boolean namespacePrefixes) 103 reader.setFeature(SAX_PROPERTY_NS, namespace); 113 if (namespace) { 121 if (namespace) { [all...] |
/prebuilts/ndk/r16/sources/cxx-stl/system/include/ |
csetjmp | 45 namespace std 49 } // namespace std
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/util/ |
TestAttributeSet.java | 54 public boolean getAttributeBooleanValue(String namespace, String attribute, boolean defaultValue) { 55 String value = getAttributeValueInMap(namespace, attribute); 60 public String getAttributeValue(String namespace, String attribute) { 61 return getAttributeValueInMap(namespace, attribute); 65 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) { 66 String value = getAttributeValueInMap(namespace, attribute); 101 public int getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) { 106 public int getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) { 111 public float getAttributeFloatValue(String namespace, String attribute, float defaultValue) { 112 String value = getAttributeValueInMap(namespace, attribute) [all...] |
/libcore/xml/src/main/java/org/kxml2/io/ |
KXmlSerializer.java | 107 throw new IllegalStateException("Cannot set default namespace for elements in no namespace"); 223 public String getPrefix(String namespace, boolean create) { 225 return getPrefix(namespace, false, create); 233 String namespace, 241 if (nspStack[i + 1].equals(namespace) 262 if (namespace.isEmpty()) 281 setPrefix(prefix, namespace); 309 public void setPrefix(String prefix, String namespace) 315 if (namespace == null [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_code.py | 119 namespace = {}
120 exec "def f(): pass" in globals(), namespace
121 f = namespace["f"]
122 del namespace
|
/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
|