OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RefVal
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountChecker.h
51
class
RefVal
{
91
/// See the
RefVal
::Kind enum for possible values.
110
RefVal
(Kind k, ObjKind o, unsigned cnt, unsigned acnt, QualType t,
172
static
RefVal
makeOwned(ObjKind o, QualType t) {
173
return
RefVal
(Owned, o, /*Count=*/1, 0, t, IvarAccessHistory::None);
180
static
RefVal
makeNotOwned(ObjKind o, QualType t) {
181
return
RefVal
(NotOwned, o, /*Count=*/0, 0, t, IvarAccessHistory::None);
184
RefVal
operator-(size_t i) const {
185
return
RefVal
(getKind(), getObjKind(), getCount() - i,
189
RefVal
operator+(size_t i) const
[
all
...]
RetainCountChecker.cpp
22
REGISTER_MAP_WITH_PROGRAMSTATE(RefBindings, SymbolRef,
RefVal
)
28
const
RefVal
*getRefBinding(ProgramStateRef State, SymbolRef Sym) {
37
RefVal
Val) {
46
void
RefVal
::print(raw_ostream &Out) const {
51
default: llvm_unreachable("Invalid
RefVal
kind");
104
case
RefVal
::ErrorOverAutorelease:
108
case
RefVal
::ErrorReturnedNotOwned:
214
const
RefVal
* T = getRefBinding(state, Sym);
218
RefVal
::Kind hasErr = (
RefVal
::Kind) 0
[
all
...]
RetainCountDiagnostics.cpp
97
const
RefVal
*PrevT,
98
const
RefVal
&CurrV,
101
RefVal
PrevV = *PrevT;
109
if (CurrV.getKind() ==
RefVal
::Released) {
119
case
RefVal
::Owned:
120
case
RefVal
::NotOwned:
141
case
RefVal
::Released:
143
RefVal
::IvarAccessHistory::ReleasedAfterDirectAccess &&
150
case
RefVal
::ReturnedOwned:
159
case
RefVal
::ReturnedNotOwned
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFVerifier.cpp
602
Optional<uint64_t>
RefVal
= AttrValue.Value.getAsReference();
603
assert(
RefVal
);
604
if (
RefVal
) {
618
ReferenceToDIEOffsets[*
RefVal
].insert(Die.getOffset());
626
Optional<uint64_t>
RefVal
= AttrValue.Value.getAsReference();
627
assert(
RefVal
);
628
if (
RefVal
) {
629
if (*
RefVal
>= DieCU->getInfoSection().Data.size()) {
637
ReferenceToDIEOffsets[*
RefVal
].insert(Die.getOffset());
Completed in 22 milliseconds
Indexes created Sat Jun 20 00:25:23 UTC 2026