OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Export
(Results
1 - 10
of
10
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/
IPO.h
241
Export
, ///<
Export
information to summary.
248
/// - If ExportSummary is non-null, this pass will
export
type identifiers to
260
/// This pass
export
CFI checks for use by external modules.
267
/// - If ExportSummary is non-null, this pass will
export
type identifiers to
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.cpp
65
// If this is a COFF object and we didn't find any symbols, try the
export
111
// Get all
export
names and offsets.
132
OffsetNamePair &
Export
= *I;
133
// FIXME: The last
export
has a one byte size now.
134
uint32_t NextOffset = I != E ? I->Offset :
Export
.Offset + 1;
135
uint64_t SymbolStart = ImageBase +
Export
.Offset;
136
uint64_t SymbolSize = NextOffset -
Export
.Offset;
137
Symbols.push_back({SymbolStart, SymbolSize,
Export
.Name, 0});
/src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CoverageExporterJson.cpp
1
//===- CoverageExporterJson.cpp - Code coverage
export
--------------------===//
9
// This file implements
export
of code coverage data to JSON.
15
// The json code coverage
export
follows the following format
17
// -- Data: array => Homogeneous array of one or more
export
objects
18
// --
Export
: dict => Json representation of one CoverageMapping
64
/// Unique type identifier for JSON coverage
export
.
65
#define LLVM_COVERAGE_EXPORT_JSON_TYPE_STR "llvm.coverage.json.
export
"
298
auto
Export
= json::Object(
302
Export
["functions"] = renderFunctions(Coverage.getCoveredFunctions());
304
auto ExportArray = json::Array({std::move(
Export
)});
[
all
...]
CodeCoverage.cpp
62
/// The
export
command.
63
Export
735
cl::desc("
Export
only summary information for each source file"));
891
case
Export
:
955
error("Lcov format should be used with 'llvm-cov
export
'.");
1095
error("Lcov format should be used with 'llvm-cov
export
'.");
1127
cl::desc("Don't
export
expanded source regions"),
1131
cl::desc("Don't
export
per-function data"),
1164
llvm_unreachable("
Export
in HTML is not supported!");
1191
return Tool.run(CodeCoverageTool::
Export
, argc, argv)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Lex/
DependencyDirectivesSourceMinimizer.cpp
638
bool
Export
= false;
639
if (Id.Name == "
export
") {
640
Export
= true;
672
if (
Export
) {
674
append("
export
");
ModuleMap.cpp
113
assert(Unresolved.Wildcard && "Invalid unresolved
export
");
634
// If inferred submodules
export
everything they import, add a
650
// If inferred submodules
export
everything they import, add a
897
// Header modules are implicitly '
export
*'.
1050
//
export
*
1053
// module * {
export
* }
1305
Module::ExportDecl
Export
= resolveExport(Mod, UE, Complain);
1306
if (
Export
.getPointer() ||
Export
.getInt())
1307
Mod->Exports.push_back(
Export
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h
59
struct
Export
{
346
std::vector<
Export
> Exports;
412
LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::
Export
)
449
template <> struct MappingTraits<WasmYAML::
Export
> {
450
static void mapping(IO &IO, WasmYAML::
Export
&
Export
);
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h
283
Export
,
/src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp
921
for (const wasm::WasmExport &
Export
: Exports) {
922
writeString(
Export
.Name);
923
W->OS << char(
Export
.Kind);
924
encodeULEB128(
Export
.Index, W->OS);
1546
wasm::WasmExport
Export
;
1547
Export
.Name = WS.getExportName();
1548
Export
.Kind = wasm::WASM_EXTERNAL_FUNCTION;
1549
Export
.Index = Index;
1550
Exports.push_back(
Export
);
1582
// For each data symbol,
export
it in the symtab as a reference to th
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ASTReader.h
682
/// A module import,
export
, or conflict that hasn't yet been resolved.
691
enum { Import,
Export
, Conflict } Kind;
696
/// Whether this is a wildcard
export
.
Completed in 30 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026