/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_univnewlines2k.py | 82 namespace = {} 84 execfile(test_support.TESTFN, namespace) 85 func = namespace['line3'] 87 self.assertEqual(namespace['line4'], FATX)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_univnewlines2k.py | 82 namespace = {} 84 execfile(test_support.TESTFN, namespace) 85 func = namespace['line3'] 87 self.assertEqual(namespace['line4'], FATX)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_univnewlines2k.py | 82 namespace = {} 84 execfile(test_support.TESTFN, namespace) 85 func = namespace['line3'] 87 self.assertEqual(namespace['line4'], FATX)
|
/frameworks/base/core/java/com/android/internal/util/ |
FastXmlSerializer.java | 184 public XmlSerializer attribute(String namespace, String name, String value) throws IOException, 187 if (namespace != null) { 188 append(namespace); 219 public XmlSerializer endTag(String namespace, String name) throws IOException, 229 if (namespace != null) { 230 append(namespace); 297 public String getPrefix(String namespace, boolean generatePrefix) 355 public void setPrefix(String prefix, String namespace) throws IOException, 372 public XmlSerializer startTag(String namespace, String name) throws IOException, 382 if (namespace != null) [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
Element.java | 83 Return the namespace name of the element's type. 85 @return The element type namespace name 88 public String namespace() { return theType.namespace(); } method in class:Element
|
/external/webrtc/webrtc/base/ |
sigslottester.h.pump | 41 namespace rtc { 83 } // namespace rtc
|
/external/webrtc/webrtc/modules/video_render/ios/ |
video_render_ios_channel.mm | 17 using namespace webrtc;
|
/libcore/xml/src/main/java/org/xmlpull/v1/ |
XmlPullParser.java | 143 /** This constant represents the default namespace (empty string "") */ 177 * The name of start tag is available from getName(), its namespace and prefix are 200 * namespace and prefix are 346 // namespace related features 361 * This feature determines whether namespace attributes are 370 "http://xmlpull.org/v1/doc/features.html#report-namespace-prefixes"; 409 * such as namespace processing or doctype declaration handling. 413 * to switch on namespace processing. The initial settings correspond 541 * Returns the numbers of elements in the namespace stack for the given 546 * this function with getDepth()+1 argument to retrieve position of namespace [all...] |
/prebuilts/misc/common/swig/include/2.0.11/typemaps/ |
implicit.swg | 66 namespace swig { 102 namespace swig { 140 namespace swig { 181 namespace swig {
|
/build/blueprint/ |
name_interface.go | 37 // The Namespace interface is just a marker interface for usage by the NameInterface, 38 // to allow a NameInterface to specify that a certain parameter should be a Namespace. 42 type Namespace interface { 43 namespace(Namespace) 48 func (m *NamespaceMarker) namespace(Namespace) { func 55 NewModule(ctx NamespaceContext, group ModuleGroup, module Module) (namespace Namespace, err []error) 58 ModuleFromName(moduleName string, namespace Namespace) (group ModuleGroup, found bool [all...] |
/build/soong/cmd/soong_build/ |
main.go | 43 namespacePathsToExport["."] = true // always export the root namespace 45 exportFilter := func(namespace *android.Namespace) bool { 46 return namespacePathsToExport[namespace.Path]
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
DescendantIterator.java | 267 String namespace = getNamespace(); local 273 || NodeTest.WILD.equals(namespace)) 280 m_extendedTypeID = m_cdtm.getExpandedTypeID(namespace, localName, type); 305 String namespace = getNamespace(); local 314 || namespace == NodeTest.WILD) 321 int extendedType = dtm.getExpandedTypeID(namespace, localName, type);
|
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/ |
translate.py | 118 Foo.Bar could refer to the type 'Bar' in the 'Foo' namespace, or an inner 119 type 'Bar' in the struct 'Foo' in the current namespace. 121 |scope| is a tuple that looks like (namespace, struct/interface), referring 178 scope: {Tuple[str, str]} A tuple that looks like (namespace, 227 module's namespace. Only used with Structs, Unions, Interfaces and Enums.""" 240 import_item['namespace'] = import_module.namespace 273 struct.spec = 'x:' + module.namespace + '.' + struct.name 311 union.spec = 'x:' + module.namespace + '.' + union.name 333 (module.namespace, struct.name) [all...] |
/external/python/cpython3/Lib/test/ |
test_subclassinit.py | 232 def __init__(self, name, bases, namespace, otherarg): 233 super().__init__(name, bases, namespace) 240 def __new__(cls, name, bases, namespace, otherarg): 241 return super().__new__(cls, name, bases, namespace) 243 def __init__(self, name, bases, namespace, otherarg): 244 super().__init__(name, bases, namespace) 255 def __new__(cls, name, bases, namespace): 257 dict=namespace) 264 def __new__(cls, name, bases, namespace, otherarg): 265 self = super().__new__(cls, name, bases, namespace) [all...] |
/frameworks/base/services/core/java/com/android/server/timezone/ |
PackageStatusStorage.java | 321 final String namespace = null; local 322 serializer.startTag(namespace, TAG_PACKAGE_STATUS); 324 serializer.attribute(namespace, ATTRIBUTE_CHECK_STATUS, statusAttributeValue); 325 serializer.attribute(namespace, ATTRIBUTE_OPTIMISTIC_LOCK_ID, 329 serializer.attribute(namespace, ATTRIBUTE_UPDATE_APP_VERSION, 333 serializer.attribute(namespace, ATTRIBUTE_DATA_APP_VERSION, 335 serializer.endTag(namespace, TAG_PACKAGE_STATUS);
|
/external/vogar/lib/ |
kxml-libcore-20110123.jar | |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
imputil.py | 33 def install(self, namespace=vars(__builtin__)):
34 "Install this ImportManager into the specified namespace."
36 if isinstance(namespace, _ModuleType):
37 namespace = vars(namespace)
42 self.previous_importer = namespace['__import__']
43 self.namespace = namespace
44 namespace['__import__'] = self._import_hook
47 #namespace['reload'] = self._reload_hook [all...] |
/external/python/cpython2/Lib/ |
imputil.py | 33 def install(self, namespace=vars(__builtin__)): 34 "Install this ImportManager into the specified namespace." 36 if isinstance(namespace, _ModuleType): 37 namespace = vars(namespace) 42 self.previous_importer = namespace['__import__'] 43 self.namespace = namespace 44 namespace['__import__'] = self._import_hook 47 #namespace['reload'] = self._reload_hoo [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
imputil.py | 33 def install(self, namespace=vars(__builtin__)): 34 "Install this ImportManager into the specified namespace." 36 if isinstance(namespace, _ModuleType): 37 namespace = vars(namespace) 42 self.previous_importer = namespace['__import__'] 43 self.namespace = namespace 44 namespace['__import__'] = self._import_hook 47 #namespace['reload'] = self._reload_hoo [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
imputil.py | 33 def install(self, namespace=vars(__builtin__)): 34 "Install this ImportManager into the specified namespace." 36 if isinstance(namespace, _ModuleType): 37 namespace = vars(namespace) 42 self.previous_importer = namespace['__import__'] 43 self.namespace = namespace 44 namespace['__import__'] = self._import_hook 47 #namespace['reload'] = self._reload_hoo [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
imputil.py | 33 def install(self, namespace=vars(__builtin__)): 34 "Install this ImportManager into the specified namespace." 36 if isinstance(namespace, _ModuleType): 37 namespace = vars(namespace) 42 self.previous_importer = namespace['__import__'] 43 self.namespace = namespace 44 namespace['__import__'] = self._import_hook 47 #namespace['reload'] = self._reload_hoo [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
imputil.py | 33 def install(self, namespace=vars(__builtin__)): 34 "Install this ImportManager into the specified namespace." 36 if isinstance(namespace, _ModuleType): 37 namespace = vars(namespace) 42 self.previous_importer = namespace['__import__'] 43 self.namespace = namespace 44 namespace['__import__'] = self._import_hook 47 #namespace['reload'] = self._reload_hoo [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/ |
XMPPathParser.java | 37 * root namespace prefix to the first property component. The schema URI is 76 * schema namespace 96 // namespace prefix and and see if it is an alias. The start must be a "qualName". 328 * Parses the root node of an XMP Path, checks if namespace and prefix fit together 330 * @param schemaNS the root namespace 390 * namespace prefix has not been registered. 412 throw new XMPException("Unknown namespace prefix for qualified name", 441 * processing. If allowUnknownSchemaNS is true and the schema namespace is not registered, false 442 * is returned. If allowUnknownSchemaNS is false and the schema namespace is not registered, an 447 * @param schemaNS schema namespace [all...] |
/build/soong/android/ |
namespace_test.go | 48 t.Errorf("module b does not depend on module a in the same namespace") 70 t.Errorf("module b in root namespace does not depend on module a in the root namespace") 121 t.Errorf("module b does not depend on module a in the same namespace") 156 Module "b" is defined in namespace "dir3" which can read these 2 namespaces: ["dir3" "."] 229 t.Fatalf("Module 2 does not depend on module 1 in its namespace") 232 t.Fatalf("Module 2 depends on module 3 in another namespace") 235 t.Fatalf("Module 4 does not depend on module 3 in its namespace") 238 t.Fatalf("Module 4 depends on module 1 in another namespace") 375 // should complain about the missing namespace and not complain about the unresolvable dependenc [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
abc.py | 86 def __new__(mcls, name, bases, namespace):
87 cls = super(ABCMeta, mcls).__new__(mcls, name, bases, namespace)
90 for name, value in namespace.items()
|