OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InsertResult
(Results
1 - 7
of
7
) sorted by null
/external/clang/lib/Rewrite/
DeltaTree.cpp
55
struct
InsertResult
{
106
bool DoInsertion(unsigned FileIndex, int Delta,
InsertResult
*InsertRes);
108
void DoSplit(
InsertResult
&InsertRes);
132
DeltaTreeInteriorNode(const
InsertResult
&IR)
180
InsertResult
*InsertRes) {
293
void DeltaTreeNode::DoSplit(
InsertResult
&InsertRes) {
455
DeltaTreeNode::
InsertResult
InsertRes;
/external/llvm/tools/dsymutil/
DebugMap.cpp
29
auto
InsertResult
= Symbols.insert(
32
if (
InsertResult
.second)
33
AddressToMapping[ObjectAddress] = &*
InsertResult
.first;
34
return
InsertResult
.second;
DwarfLinker.cpp
[
all
...]
/external/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp
378
auto
InsertResult
=
380
assert(
InsertResult
.second);
381
if (auto EC =
InsertResult
.first->second.getError())
383
return
InsertResult
.first->second->get();
/external/clang/lib/CodeGen/
CodeGenTypes.cpp
675
bool
InsertResult
= RecordsBeingLaidOut.insert(Key).second;
676
(void)
InsertResult
;
677
assert(
InsertResult
&& "Recursively compiling a struct?");
/external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp
525
bool
InsertResult
= getContext().addGenDwarfSection(ELFSection);
526
if (
InsertResult
) {
AsmParser.cpp
647
bool
InsertResult
= getContext().addGenDwarfSection(Sec);
648
assert(
InsertResult
&& ".text section should not have debug info yet");
649
(void)
InsertResult
;
[
all
...]
Completed in 425 milliseconds