OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DynamicTypeInfo
(Results
1 - 8
of
8
) sorted by null
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeInfo.h
1
//==
DynamicTypeInfo
.h - Runtime type information ----------------*- C++ -*--=//
19
class
DynamicTypeInfo
{
26
DynamicTypeInfo
() : T(QualType()) {}
27
DynamicTypeInfo
(QualType WithType, bool CanBeSub = true)
44
bool operator==(const
DynamicTypeInfo
&X) const {
ProgramState.h
19
#include "clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeInfo
.h"
340
DynamicTypeInfo
getDynamicTypeInfo(const MemRegion *Reg) const;
344
DynamicTypeInfo
NewTy) const;
350
return setDynamicTypeInfo(Reg,
DynamicTypeInfo
(NewTy, CanBeSubClassed));
/external/compiler-rt/lib/ubsan/
ubsan_type_hash.h
24
class
DynamicTypeInfo
{
30
DynamicTypeInfo
(const char *MDTN, sptr Offset, const char *STN)
44
DynamicTypeInfo
getDynamicTypeInfo(void *Object);
ubsan_type_hash.cc
241
__ubsan::
DynamicTypeInfo
__ubsan::getDynamicTypeInfo(void *Object) {
244
return
DynamicTypeInfo
(0, 0, 0);
248
return
DynamicTypeInfo
(Vtable->TypeInfo->__type_name, -Vtable->Offset,
ubsan_handlers_cxx.cc
45
DynamicTypeInfo
DTI = getDynamicTypeInfo((void*)Pointer);
/external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp
759
DynamicTypeInfo
))
761
DynamicTypeInfo
ProgramState::getDynamicTypeInfo(const MemRegion *Reg) const {
765
const
DynamicTypeInfo
*GDMType = get<DynamicTypeMap>(Reg);
771
return
DynamicTypeInfo
(TR->getLocationType(), /*CanBeSubclass=*/false);
775
return
DynamicTypeInfo
(Sym->getType());
778
return
DynamicTypeInfo
();
782
DynamicTypeInfo
NewTy) const {
CallEvent.cpp
438
DynamicTypeInfo
DynType = getState()->getDynamicTypeInfo(R);
444
assert(!RegionType.isNull() && "
DynamicTypeInfo
should always be a pointer.");
459
// FIXME: This is checking that our
DynamicTypeInfo
is at least as good as
461
//
DynamicTypeInfo
when an object is cast, we can't actually be sure the
462
//
DynamicTypeInfo
is up to date. This assert should be re-enabled once
464
//assert(!MD->getParent()->isDerivedFrom(RD) && "Bad
DynamicTypeInfo
");
803
DynamicTypeInfo
DTI = getState()->getDynamicTypeInfo(Receiver);
[
all
...]
/external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp
143
DynamicTypeInfo
RecDynType = State->getDynamicTypeInfo(RecReg);
Completed in 1340 milliseconds