OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isPointer
(Results
1 - 8
of
8
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
InfoByHwMode.h
140
bool
isPointer
() const {
CodeGenDAGPatterns.h
227
bool
isPointer
() const {
228
return getValueTypeByHwMode().
isPointer
();
232
assert(
isPointer
());
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
LowLevelTypeImpl.h
45
return LLT{/*
isPointer
=*/false, /*isVector=*/false, /*NumElements=*/0,
52
return LLT{/*
isPointer
=*/true, /*isVector=*/false, /*NumElements=*/0,
61
return LLT{/*
isPointer
=*/false, /*isVector=*/true, NumElements,
69
return LLT{ScalarTy.
isPointer
(), /*isVector=*/true, NumElements,
71
ScalarTy.
isPointer
() ? ScalarTy.getAddressSpace() : 0};
82
explicit LLT(bool
isPointer
, bool isVector, uint16_t NumElements,
84
init(
isPointer
, isVector, NumElements, SizeInBits, AddressSpace);
86
explicit LLT() :
IsPointer
(false), IsVector(false), RawData(0) {}
92
bool isScalar() const { return isValid() && !
IsPointer
&& !IsVector; }
94
bool
isPointer
() const { return isValid() && IsPointer && !IsVector;
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprCXX.cpp
950
bool
isPointer
= false;
953
isPointer
= true;
955
if (!
isPointer
|| !Ty->isVoidType()) {
957
isPointer
? diag::err_throw_incomplete_ptr
962
if (!
isPointer
&& Ty->isSizelessType()) {
982
if (
isPointer
)
SemaStmt.cpp
4326
unsigned
IsPointer
: 1;
4332
CatchHandlerType(QualType QT, Unique) : QT(QT),
IsPointer
(false) {}
4338
CatchHandlerType(QualType Q) : QT(Q),
IsPointer
(false) {
4340
IsPointer
= true;
4342
if (
IsPointer
|| QT->isReferenceType())
4350
CatchHandlerType(QualType QT, bool
IsPointer
)
4351
: QT(QT),
IsPointer
(
IsPointer
) {}
4354
bool
isPointer
() const { return
IsPointer
; }
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetCallingConv.h
54
unsigned
IsPointer
: 1;
68
IsCopyElisionCandidate(0),
IsPointer
(0), ByValOrByRefSize(0),
141
bool
isPointer
() const { return
IsPointer
; }
142
void setPointer() {
IsPointer
= 1; }
/src/external/apache2/llvm/dist/clang/utils/TableGen/
NeonEmitter.cpp
186
bool
isPointer
() const { return Pointer; }
187
bool isValue() const { return !isVoid() && !
isPointer
(); }
401
if (Type.isImmediate() || Type.
isPointer
() ||
640
if (
isPointer
()) {
668
if (isChar() && !
isPointer
() && isSigned())
1254
if (getParamType(I).
isPointer
())
2053
if (Type.
isPointer
()) {
SveEmitter.cpp
85
bool
isPointer
() const { return Pointer; }
393
if ((isChar() ||
isPointer
()) && !isVoidPointer()) {
Completed in 34 milliseconds
Indexes created Sat Sep 12 00:25:55 UTC 2026