OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:COFFSymbolRef
(Results
1 - 12
of
12
) sorted by null
/external/llvm/include/llvm/Object/
COFF.h
281
class
COFFSymbolRef
{
283
COFFSymbolRef
(const coff_symbol16 *CS) : CS16(CS), CS32(nullptr) {}
284
COFFSymbolRef
(const coff_symbol32 *CS) : CS16(nullptr), CS32(CS) {}
285
COFFSymbolRef
() : CS16(nullptr), CS32(nullptr) {}
297
friend bool operator<(
COFFSymbolRef
A,
COFFSymbolRef
B) {
306
llvm_unreachable("
COFFSymbolRef
points to nothing!");
314
assert(isSet() && "
COFFSymbolRef
points to nothing!");
321
assert(isSet() && "
COFFSymbolRef
points to nothing!");
332
assert(isSet() && "
COFFSymbolRef
points to nothing!")
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
COFF.h
281
class
COFFSymbolRef
{
283
COFFSymbolRef
() = default;
284
COFFSymbolRef
(const coff_symbol16 *CS) : CS16(CS) {}
285
COFFSymbolRef
(const coff_symbol32 *CS) : CS32(CS) {}
297
friend bool operator<(
COFFSymbolRef
A,
COFFSymbolRef
B) {
306
llvm_unreachable("
COFFSymbolRef
points to nothing!");
314
assert(isSet() && "
COFFSymbolRef
points to nothing!");
321
assert(isSet() && "
COFFSymbolRef
points to nothing!");
332
assert(isSet() && "
COFFSymbolRef
points to nothing!")
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
COFFObjectFile.cpp
151
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
165
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
171
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
191
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
214
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
245
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
251
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
263
COFFSymbolRef
Symb = getCOFFSymbol(Sym.getRawDataRefImpl());
[
all
...]
/external/llvm/lib/Object/
COFFObjectFile.cpp
148
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
162
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
182
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
205
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
233
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
239
COFFSymbolRef
Symb = getCOFFSymbol(Ref);
251
COFFSymbolRef
Symb = getCOFFSymbol(Sym.getRawDataRefImpl());
[
all
...]
/external/llvm/tools/obj2yaml/
coff2yaml.cpp
202
object::
COFFSymbolRef
Symbol = Obj.getCOFFSymbol(S);
/external/llvm/tools/llvm-readobj/
COFFDumper.cpp
521
COFFSymbolRef
Symbol,
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
coff2yaml.cpp
265
object::
COFFSymbolRef
Symbol = Obj.getCOFFSymbol(S);
/external/llvm/tools/llvm-objdump/
COFFDump.cpp
622
ErrorOr<
COFFSymbolRef
> Symbol = coff->getSymbol(SI);
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/
COFFDump.cpp
640
Expected<
COFFSymbolRef
> Symbol = coff->getSymbol(SI);
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
COFFDumper.cpp
590
COFFSymbolRef
Symbol,
[
all
...]
/external/llvm/tools/llvm-nm/
llvm-nm.cpp
791
COFFSymbolRef
Symb = Obj.getCOFFSymbol(*I);
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-nm/
llvm-nm.cpp
928
COFFSymbolRef
Symb = Obj.getCOFFSymbol(*I);
[
all
...]
Completed in 86 milliseconds