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

1 2 3 4 5 6 78 91011>>

  /external/brotli/csharp/org/brotli/dec/
DictionaryTest.cs 6 namespace Org.Brotli.Dec
  /external/python/cpython2/Lib/test/
test_code.py 166 namespace = {}
167 exec "def f(): pass" in globals(), namespace
168 f = namespace["f"]
169 del namespace
  /external/python/cpython3/Lib/test/
test_super.py 154 def __new__(cls, name, bases, namespace):
156 self = super().__new__(cls, name, bases, namespace)
172 def __new__(cls, name, bases, namespace):
174 test_namespace = namespace
211 def __new__(cls, name, bases, namespace):
213 namespace_snapshot = namespace.copy()
214 return super().__new__(cls, name, bases, namespace)
216 # __classcell__ is injected into the class namespace by the compiler
241 # Some metaclasses may not pass the original namespace to type.__new__
244 def __new__(cls, name, bases, namespace)
    [all...]
ann_module.py 43 def __new__(meta, name, bases, namespace):
44 return super().__new__(meta, name, bases, namespace)
  /external/webrtc/webrtc/test/mac/
run_test.mm 50 namespace webrtc {
51 namespace test {
74 } // namespace test
75 } // namespace webrtc
  /external/webrtc/webrtc/test/testsupport/
iosfileutils.mm 23 namespace webrtc {
24 namespace test {
57 } // namespace test
58 } // namespace webrtc
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/pom/
PomDocument.kt 50 .getChild("properties", document.rootElement.namespace)
58 .getChild("dependencies", document.rootElement.namespace) ?: return
108 .getChild("groupId", document.rootElement.namespace)
110 .getChild("artifactId", document.rootElement.namespace)
112 .getChild("version", document.rootElement.namespace)
119 .getChild("groupId", document.rootElement.namespace)
121 .getChild("artifactId", document.rootElement.namespace)
123 .getChild("version", document.rootElement.namespace)
  /external/python/cpython2/Doc/includes/
mp_synchronize.py 235 def test(namespace=multiprocessing):
238 multiprocessing = namespace
262 namespace = multiprocessing variable
265 namespace = multiprocessing.Manager() variable
266 namespace.Process = multiprocessing.Process
267 namespace.current_process = multiprocessing.current_process
268 namespace.active_children = multiprocessing.active_children
271 import multiprocessing.dummy as namespace
276 test(namespace)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockXmlNode.java 44 // namespace stuff only set in the root node
45 /** map from namespace to prefix. */
51 * @param namespace The namespace of the node or null if none
56 public MockXmlNode(String namespace, String localName, short node_type,
59 mNamespace = namespace;
68 * @param namespace The namespace of the node or null if none
72 public MockXmlNode(String namespace, String localName, String value) {
74 mNamespace = namespace;
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapSerializationEnvelope.java 90 * Map from Java class names to XML name and namespace pairs
191 if ((name.equals(info.name) && info.namespace == null)
193 (name.equals(info.name) && parser.getNamespace().equals(info.namespace))) {
236 String namespace = parser.getNamespace(); local
288 parser.require(XmlPullParser.END_TAG, namespace, name);
303 String namespace = null; local
313 namespace = parser.getNamespace(prefix);
333 v.setElementAt(read(parser, v, position, namespace, name, elementType), position);
345 public Object read(XmlPullParser parser, Object owner, int index, String namespace,
383 namespace = parser.getNamespace(prefix)
605 String namespace; local
    [all...]
  /bionic/libstdc++/include/
new 9 namespace std {
  /compatibility/cdd/3_software/
3_6_api-namespaces.md 3 Android follows the package and class namespace conventions defined by the Java
33 namespace, but the custom APIs:
35 * [C-0-5] MUST NOT be in a namespace owned by or referring to another
37 `com.google.*` or similar namespace: only Google may do so. Similarly,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Simple.py 4 def __init__(self, name, bases, namespace):
8 self.__namespace__ = namespace
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExtensionNamespaceSupport.java 29 * namespace the stylesheet uses. At the beginning of a transformation, TransformerImpl generates
34 // Namespace, ExtensionHandler class name, constructor signature
41 public ExtensionNamespaceSupport(String namespace,
45 m_namespace = namespace;
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPVariableStack.java 59 javax.xml.namespace.QName name =
60 new javax.xml.namespace.QName(
  /external/lzma/CS/7zip/Compress/LZ/
IMatchFinder.cs 5 namespace SevenZip.Compression.LZ
  /external/python/cpython2/Demo/metaclasses/
Simple.py 4 def __init__(self, name, bases, namespace):
8 self.__namespace__ = namespace
  /external/webrtc/webrtc/base/
maccocoasocketserver_unittest.mm 16 namespace rtc {
50 } // namespace rtc
  /external/webrtc/webrtc/modules/video_render/mac/
cocoa_render_view.mm 17 using namespace webrtc;
  /frameworks/ml/nn/runtime/test/specs/
generate_test.sh 51 echo namespace $BASENAME {
58 echo } // namespace $BASENAME
generate_vts_test.sh 32 echo namespace $BASENAME {
39 echo } // namespace $BASENAME
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
director.swg 15 namespace Swig {
  /prebuilts/misc/common/swig/include/2.0.11/d/
director.swg 15 namespace Swig {
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
cmath 42 namespace std
71 } // namespace std
cstring 42 namespace std
66 } // namespace std

Completed in 774 milliseconds

1 2 3 4 5 6 78 91011>>