Home
last modified time | relevance | path

Searched full:exports (Results 1 – 25 of 896) sorted by relevance

12345678910>>...36

/external/libxml2/doc/
Dlibxml2-api.xml9 <exports symbol='docbParserInputPtr' type='typedef'/>
10 <exports symbol='docbParserCtxt' type='typedef'/>
11 <exports symbol='docbParserCtxtPtr' type='typedef'/>
12 <exports symbol='docbParserInput' type='typedef'/>
13 <exports symbol='docbDocPtr' type='typedef'/>
14 <exports symbol='docbSAXHandler' type='typedef'/>
15 <exports symbol='docbSAXHandlerPtr' type='typedef'/>
16 <exports symbol='docbFreeParserCtxt' type='function'/>
17 <exports symbol='docbParseDoc' type='function'/>
18 <exports symbol='docbCreateFileParserCtxt' type='function'/>
[all …]
Dwiki.xsl455 <xsl:template match="exports" mode="toc">
459 <xsl:template match="exports">
474 <xsl:apply-templates select="exports[@type='macro']" mode="$mode">
477 <xsl:apply-templates select="exports[@type='enum']" mode="$mode">
480 <xsl:apply-templates select="exports[@type='typedef']" mode="$mode">
483 <xsl:apply-templates select="exports[@type='struct']" mode="$mode">
486 <xsl:apply-templates select="exports[@type='function']" mode="$mode">
507 <xsl:apply-templates select="exports" mode="toc"/>
511 <xsl:apply-templates select="exports"/>
516 <xsl:apply-templates select="exports[@type='macro']" mode="toc">
[all …]
/external/opencensus-java/examples/
Dopencensus_workspace.bzl763 exports = ["@com_google_code_findbugs_jsr305//jar"],
770 exports = ["@io_grpc_grpc_protobuf_lite//jar"],
781 exports = ["@io_opencensus_opencensus_exporter_stats_prometheus//jar"],
793 exports = ["@com_google_auth_google_auth_library_oauth2_http//jar"],
805 exports = ["@io_netty_netty_transport//jar"],
817 exports = ["@io_netty_netty_handler_proxy//jar"],
830 exports = ["@io_grpc_grpc_protobuf_nano//jar"],
842 exports = ["@com_google_cloud_google_cloud_trace//jar"],
861 exports = ["@commons_codec_commons_codec//jar"],
868 exports = ["@io_opencensus_opencensus_impl_core//jar"],
[all …]
/external/v8/src/objects/
Dmodule.cc128 Handle<ObjectHashTable> exports(module->exports(), isolate); in CreateIndirectExport() local
129 DCHECK(exports->Lookup(name)->IsTheHole(isolate)); in CreateIndirectExport()
130 exports = ObjectHashTable::Put(exports, name, entry); in CreateIndirectExport()
131 module->set_exports(*exports); in CreateIndirectExport()
141 Handle<ObjectHashTable> exports(module->exports(), isolate); in CreateExport() local
144 DCHECK(exports->Lookup(name)->IsTheHole(isolate)); in CreateExport()
145 exports = ObjectHashTable::Put(exports, name, cell); in CreateExport()
147 module->set_exports(*exports); in CreateExport()
231 Handle<ObjectHashTable> exports = in Reset() local
247 module->set_exports(*exports); in Reset()
[all …]
/external/mesa3d/src/egl/main/
Degldispatchstubs.c8 static const __EGLapiExports *exports; variable
38 exports = exportsTable; in __eglInitDispatchStubs()
62 func = exports->fetchDispatchEntry(vendor, __EGL_DISPATCH_FUNC_INDICES[index]); in FetchVendorFunc()
71 if (!exports->setLastVendor(vendor)) { in FetchVendorFunc()
88 exports->threadInit(); in __eglDispatchFetchByCurrent()
89 vendor = exports->getCurrentVendor(); in __eglDispatchFetchByCurrent()
97 exports->threadInit(); in __eglDispatchFetchByDisplay()
98 vendor = exports->getVendorFromDisplay(dpy); in __eglDispatchFetchByDisplay()
106 exports->threadInit(); in __eglDispatchFetchByDevice()
107 vendor = exports->getVendorFromDevice(dev); in __eglDispatchFetchByDevice()
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objdump/
Dmacho-bad-trie.test1 RUN: not llvm-objdump -macho -exports-trie %p/Inputs/macho-trie-bad-kind 2>&1 | FileCheck -check-pr…
4 RUN: not llvm-objdump -macho -exports-trie %p/Inputs/macho-trie-bad-export-info-malformed-uleb128 2…
7 RUN: not llvm-objdump -macho -exports-trie %p/Inputs/macho-trie-bad-export-info-malformed-uleb128_t…
10 RUN: not llvm-objdump -macho -exports-trie %p/Inputs/macho-trie-export-info-size-too-big 2>&1 | Fil…
13 RUN: not llvm-objdump -macho -exports-trie %p/Inputs/macho-trie-children-count-byte 2>&1 | FileChec…
16 RUN: not llvm-objdump -macho -exports-trie %p/Inputs/macho-trie-import-name-start 2>&1 | FileCheck …
19 RUN: not llvm-objdump -macho -exports-trie %p/Inputs/macho-trie-import-name-end 2>&1 | FileCheck -c…
22 RUN: not llvm-objdump -macho -exports-trie %p/Inputs/macho-trie-edge-string-end 2>&1 | FileCheck -c…
25 RUN: not llvm-objdump -macho -exports-trie %p/Inputs/macho-trie-not-export-node 2>&1 | FileCheck -c…
28 RUN: not llvm-objdump -macho -exports-trie %p/Inputs/macho-trie-node-loop 2>&1 | FileCheck -check-p…
[all …]
Dmacho-exports-trie.test1 # RUN: llvm-objdump -macho -exports-trie -arch x86_64 \
2 # RUN: %p/Inputs/exports-trie.macho-x86_64 2>/dev/null | FileCheck %s
3 # RUN: llvm-objdump -macho -exports-trie -arch x86_64 \
/external/icu/icu4c/source/test/depstest/
Ddepstest.py83 _obj_files[lib_obj_name] = {"imports": obj_imports, "exports": obj_exports}
98 exports = item.get("exports")
99 if exports != None: return item
103 exports = set()
111 exports |= obj_file["exports"]
112 imports -= exports | _ignored_symbols
120 dep_exports = dep_item["exports"]
124 # We always include the dependency's exports, even if we do not need them
126 exports |= dep_exports
128 item["exports"] = exports
[all …]
/external/protobuf/js/commonjs/
Dexport.js14 exports.Message = jspb.Message;
15 exports.BinaryReader = jspb.BinaryReader;
16 exports.BinaryWriter = jspb.BinaryWriter;
17 exports.ExtensionFieldInfo = jspb.ExtensionFieldInfo;
20 exports.exportSymbol = goog.exportSymbol;
21 exports.inherits = goog.inherits;
22 exports.object = {extend: goog.object.extend};
Dexport_asserts.js2 * @fileoverview Exports symbols needed only by tests.
4 * This file exports several Closure Library symbols that are only
29 exports[key] = global[key];
34 // JavaScript, so in practice this is equivalent to "exports.COMPILED = true".
37 exports.COMPILED = COMPILED
/external/python/cpython2/Include/
Dpymactoolbox.h106 /* macfs exports */
115 /* AE exports */
120 /* Cm exports */
126 /* Ctl exports */
132 /* Dlg exports */
139 /* Drag exports */
145 /* List exports */
151 /* Menu exports */
157 /* Qd exports */
167 /* Qdoffs exports */
[all …]
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/
Dmodule_definition.tmpl29 exports.{{constant.name}} = {{constant.name}};
32 exports.{{enum.name}} = {{enum.name}};
35 exports.{{struct.name}} = {{struct.name}};
38 exports.{{union.name}} = {{union.name}};
41 exports.{{interface.name}} = {{interface.name}};
42 exports.{{interface.name}}Ptr = {{interface.name}}Ptr;
43 exports.{{interface.name}}AssociatedPtr = {{interface.name}}AssociatedPtr;
/external/javaparser/javaparser-testing/src/test/resources/com/github/javaparser/bulk_test_results/
Dopenjdk_src_repo_test_results.txt56 …@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" …
59 (line 12,col 35) Parse error. Found ")", expected one of "enum" "exports" "module" "open" "opens" …
77 …@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" …
98 …@" "abstract" "boolean" "byte" "char" "class" "default" "double" "enum" "exports" "final" "float" …
104 (line 12,col 15) Parse error. Found "@", expected one of "!" "(" "enum" "exports" "false" "module"…
105 (line 13,col 8) Parse error. Found "@", expected one of "!" "(" "enum" "exports" "false" "module" …
106 (line 17,col 8) Parse error. Found "@", expected one of "!" "(" "enum" "exports" "false" "module" …
107 (line 18,col 8) Parse error. Found "@", expected one of "!" "(" "enum" "exports" "false" "module" …
113 (line 12,col 16) Parse error. Found "@", expected one of "!" "(" ")" "enum" "exports" "false" "mod…
116 (line 11,col 11) Parse error. Found "@", expected one of "enum" "exports" "module" "open" "opens" …
[all …]
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/modules/
DModuleDeclarationTest.java58 " exports P.Q;" + in jlsExample1()
59 " exports R.S to T1.U1, T2.U2;" + in jlsExample1()
118 " exports P.Q;" + in testPrettyPrinting()
119 " exports R.S to T1.U1, T2.U2;" + in testPrettyPrinting()
135 " exports P.Q;" + EOL + in testPrettyPrinting()
136 " exports R.S to T1.U1, T2.U2;" + EOL + in testPrettyPrinting()
155 " exports P.Q;" + in testCsmPrinting()
156 " exports R.S to T1.U1, T2.U2;" + in testCsmPrinting()
172 " exports P.Q;" + EOL + in testCsmPrinting()
173 " exports R.S to T1.U1, T2.U2;" + EOL + in testCsmPrinting()
/external/turbine/java/com/google/turbine/binder/bound/
DModuleInfo.java32 private final ImmutableList<ExportInfo> exports; field in ModuleInfo
43 ImmutableList<ExportInfo> exports, in ModuleInfo() argument
52 this.exports = exports; in ModuleInfo()
79 public ImmutableList<ExportInfo> exports() { in exports() method in ModuleInfo
80 return exports; in exports()
121 /** A JLS §7.7.2 exports directive. */
/external/swiftshader/third_party/llvm-7.0/llvm/cmake/modules/
DCMakeLists.txt56 # We need to use the full path to the LLVM Exports file to make sure we get the
115 COMPONENT cmake-exports)
123 COMPONENT cmake-exports)
127 COMPONENT cmake-exports
137 add_custom_target(cmake-exports)
138 add_llvm_install_targets(install-cmake-exports
139 COMPONENT cmake-exports)
/external/libchrome/mojo/public/tools/bindings/generators/
Dmojom_java_generator.py460 exports = self._GetJinjaExports()
461 exports.update({'interface': interface})
462 return exports
466 exports = self._GetJinjaExports()
467 exports.update({'enum': enum})
468 return exports
472 exports = self._GetJinjaExports()
473 exports.update({'struct': struct})
474 return exports
478 exports = self._GetJinjaExports()
[all …]
/external/llvm/test/Object/
Dobjdump-export-list.test1 RUN: llvm-objdump -exports-trie %p/Inputs/macho-no-exports.dylib | FileCheck %s
4 CHECK: macho-no-exports.dylib: file format Mach-O 64-bit x86-64
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/
Dobjdump-export-list.test1 RUN: llvm-objdump -exports-trie %p/Inputs/macho-no-exports.dylib | FileCheck %s
4 CHECK: macho-no-exports.dylib: file format Mach-O 64-bit x86-64
/external/v8/src/ast/
Dmodules.h76 // Also canonicalize indirect exports.
151 // Star exports and explicitly indirect exports.
156 // All the remaining exports, indexed by local name.
157 // After canonicalization (see Validate), these are exactly the local exports.
208 // Find any implicitly indirect exports and make them explicit.
227 // Assign a cell_index of +1,+2,... to regular (local) exports.
/external/python/cpython3/Include/
Dmemoryobject.h45 Py_ssize_t exports; /* number of direct memoryview exports */ member
62 Py_ssize_t exports; /* number of buffer re-exports */ member
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-readobj/
Dcoff-exports.test1 RUN: llvm-readobj -coff-exports %p/Inputs/export-x86.dll | FileCheck %s -check-prefix CHECK -check-…
2 RUN: llvm-readobj -coff-exports %p/Inputs/export-x64.dll | FileCheck %s -check-prefix CHECK -check-…
3 RUN: llvm-readobj -coff-exports %p/Inputs/export-arm.dll | FileCheck %s -check-prefix CHECK -check-…
/external/llvm/test/tools/llvm-readobj/
Dcoff-exports.test1 RUN: llvm-readobj -coff-exports %p/Inputs/export-x86.dll | FileCheck %s -check-prefix CHECK -check-…
2 RUN: llvm-readobj -coff-exports %p/Inputs/export-x64.dll | FileCheck %s -check-prefix CHECK -check-…
3 RUN: llvm-readobj -coff-exports %p/Inputs/export-arm.dll | FileCheck %s -check-prefix CHECK -check-…
/external/turbine/javatests/com/google/turbine/parse/testdata/
Dmodule-info.input12 exports com.google.p1;
13 exports com.google.p2 to
15 exports com.google.p3 to
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-dlltool/
Dcoff-exports.def2 ; RUN: llvm-readobj -coff-exports %t.a | FileCheck %s
4 ; RUN: llvm-readobj -coff-exports %t.a | FileCheck %s
7 EXPORTS

12345678910>>...36