HomeSort by relevance Sort by last modified time
    Searched refs:imported (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /external/clang/test/Modules/
cxx-decls.cpp 10 @import cxx_decls.imported;
35 // CHECK: VarDecl [[mergeUsedFlag:0x[0-9a-f]*]] {{.*}} in cxx_decls.imported used mergeUsedFlag
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode11.java 40 * node. Verify if the node has been imported correctly by its nodeName atttribute and
77 Node imported; local
83 imported = doc.importNode(docElement, false);
84 success = imported.hasChildNodes();
86 nodeNameImported = imported.getNodeName();
documentimportnode14.java 35 * Document. Verify if the node has been imported correctly by checking
36 * if the default attribute present on this node has not been imported
37 * and an explicit attribute has been imported.
79 Node imported; local
90 imported = newDoc.importNode(employeeElem, true);
91 attrNode = ((Element) /*Node */imported).getAttributeNodeNS(nullNS, "defaultAttr");
93 attrValue = ((Element) /*Node */imported).getAttributeNS("http://www.w3.org/2000/xmlns/", "emp");
documentimportnode12.java 40 * Document. Verify if the node has been imported correctly by checking the length of the
77 Node imported; local
86 imported = doc.importNode(addressElem, true);
88 importedChildren = imported.getChildNodes();
documentimportnode13.java 40 * Document. Verify if the node has been imported correctly by checking the length of the
77 Node imported; local
84 imported = doc.importNode(employeeElem, false);
85 importedList = imported.getChildNodes();
documentimportnode07.java 35 * A NOT_SUPPORTED_ERR is raised if the type of node being imported is
39 * DocumentType object. Since DocumentType nodes cannot be imported, a
75 Node imported; local
83 imported = doc.importNode(docType, true);
documentimportnode08.java 35 * A NOT_SUPPORTED_ERR is raised if the type of node being imported is
39 * node. Since DocumentType nodes cannot be imported, a NOT_SUPPORTED_ERR should be raised.
75 Node imported; local
87 imported = doc.importNode(docType, true);
  /ndk/tests/build/import-install/path1/
Android.mk 1 # This is a trivial shared library that will be imported
  /ndk/tests/build/import-install/path2/
Android.mk 1 # This is a trivial shared library that will be imported
  /external/elfutils/0.153/libdw/
libdw_visit_scopes.c 56 enum die_class { ignore, match, match_inline, walk, imported }; enumerator in enum:die_class
89 return imported;
143 case imported:
  /external/chromium_org/mojo/public/cpp/bindings/tests/
handle_passing_unittest.cc 30 : public InterfaceImpl<imported::ImportedInterface> {
114 // methods are generated with the correct argument types for imported
117 InterfaceRequest<imported::ImportedInterface> imported,
118 const mojo::Callback<void(InterfaceRequest<imported::ImportedInterface>)>&
121 imported::ImportedInterfacePtr imported,
122 const mojo::Callback<void(imported::ImportedInterfacePtr)>& callback)
206 imported::ImportedInterfacePtr imported; local
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentImportNode.java 25 * parentNode, nodeName, nodeType and nodeValue of the imported node to verify
26 * if it has been imported correctly.
282 Node imported; local
288 imported = doc.importNode(docElement, false);
289 success = imported.hasChildNodes();
291 nodeNameImported = imported.getNodeName();
299 Node imported; local
308 imported = doc.importNode(addressElem, true);
310 importedChildren = imported.getChildNodes();
318 Node imported; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_site.py 20 # command-line. Detect this by just making sure 'site' has not been imported
79 self.assertIn(pth_file.imported, sys.modules,
80 "%s not in sys.modules" % pth_file.imported)
260 def __init__(self, filename_base=TESTFN, imported="time",
266 self.imported = imported
274 <self.imported>``, a line with self.good_dirname, and a line with
287 print>>FILE, "import %s" % self.imported
295 """Make sure that the .pth file is deleted, self.imported is not in
301 self.imported_module = sys.modules.get(self.imported)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_site.py 20 # command-line. Detect this by just making sure 'site' has not been imported
79 self.assertIn(pth_file.imported, sys.modules,
80 "%s not in sys.modules" % pth_file.imported)
260 def __init__(self, filename_base=TESTFN, imported="time",
266 self.imported = imported
274 <self.imported>``, a line with self.good_dirname, and a line with
287 print>>FILE, "import %s" % self.imported
295 """Make sure that the .pth file is deleted, self.imported is not in
301 self.imported_module = sys.modules.get(self.imported)
    [all...]
  /external/chromium_org/mojo/examples/wm_flow/app/
app.cc 93 scoped_ptr<mojo::ServiceProvider> imported = variable
95 mojo::ConnectToService(imported.get(), &embeddee_);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
rdtmain.asm 15 [EXTERN _strcmp] ; strcmp is an imported function
16 [EXTERN _message] ; imported data
  /ndk/build/core/
import-locals.mk 53 # The imported compiler flags are prepended to their LOCAL_XXXX value
64 # The imported include directories are appended to their LOCAL_XXX value
69 # Similarly, you want the imported flags to appear _after_ the LOCAL_LDLIBS
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemExtensionCall.java 120 Stylesheet imported = stylesheet.getGlobalImport(i); local
122 for (ElemTemplateElement child = imported.getFirstChildElem();
StylesheetRoot.java 230 * the combination of imported and included stylesheets. This
231 * method determines the proper import precedence of all imported
277 StylesheetComposed imported = getGlobalImport(i); local
278 imported.recompose(recomposableElements);
336 StylesheetComposed imported = this.getGlobalImport(i); local
337 int includedCount = imported.getIncludeCountComposed();
340 Stylesheet included = imported.getIncludeComposed(j);
410 Stylesheet imported = stylesheet.getImport(i); local
412 addImports(imported, true, importList);
449 * @return The total number of imported stylesheets, includin
    [all...]
  /external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
MessageHeaderTest.java 11 import org.chromium.mojo.bindings.test.mojom.imported.Point;
BindingsTest.java 12 import org.chromium.mojo.bindings.test.mojom.imported.Color;
13 import org.chromium.mojo.bindings.test.mojom.imported.Point;
14 import org.chromium.mojo.bindings.test.mojom.imported.Shape;
15 import org.chromium.mojo.bindings.test.mojom.imported.Thing;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
Dbg.stg 56 <else> <! imported grammar !>
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
module.pxd 20 # loaded.) Return a new reference to the imported module, or NULL
30 # The return value is a new reference to the imported module or
81 # imported. See PyImport_ReloadModule() for the intended way to
103 # initialization failed. To access the imported module on a
106 # imported.)
  /device/generic/goldfish/opengl/
Android.mk 44 # be imported by module B when it is declared.
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
Dbg.stg 62 <else><! imported grammar !>

Completed in 1404 milliseconds

1 2 3 4 5