OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getAs
(Results
1 - 10
of
10
) sorted by null
/external/clang/include/clang/Sema/
Ownership.h
113
// FIXME: Doesn't work? return P.
getAs
< void >();
164
template <typename T> T *
getAs
() { return static_cast<T*>(get()); }
206
template <typename T> T *
getAs
() { return static_cast<T*>(get()); }
/external/parameter-framework/upstream/parameter/
ElementHandle.cpp
187
// release if an error need to be reported (and be consistent with all other
getAs
*).
224
bool ElementHandle::
getAs
(T &value, string &error) const
248
return
getAs
(value, error);
258
return
getAs
(value, error);
269
return
getAs
(value, error);
279
return
getAs
(value, error);
290
return
getAs
(value, error);
300
return
getAs
(value, error);
311
return
getAs
(value, error);
321
return
getAs
(value, error)
[
all
...]
/external/clang/include/clang/AST/
CanonicalType.h
94
/// The
getAs
() function is typically used to try to downcast to a
99
/// if (CanQual<PointerType> Ptr = T->
getAs
<PointerType>()) {
108
template<typename U> CanProxy<U>
getAs
() const;
238
/// if (CanQual<PointerType> Ptr = T->
getAs
<PointerType>()) { ... }
244
template<typename U> CanProxy<U>
getAs
() const {
245
return this->Stored.template
getAs
<U>();
326
/// canonical type or as the result of the @c CanQual<T>::
getAs
member
602
if (CanQual<ReferenceType> RefType =
getAs
<ReferenceType>())
629
CanProxy<U> CanQual<T>::
getAs
() const {
TypeLoc.h
38
/// A client should use the TypeLoc subclasses through castAs()/
getAs
()
64
T
getAs
() const {
298
if (QualifiedTypeLoc Loc =
getAs
<QualifiedTypeLoc>())
[
all
...]
Type.h
[
all
...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h
86
Optional<T>
getAs
() const {
373
assert (data.first.
getAs
<Loc>());
MemRegion.h
186
template<typename RegionTy> const RegionTy*
getAs
() const;
511
if (T->
getAs
<ObjCObjectType>())
1017
assert((!Idx.
getAs
<nonloc::ConcreteInt>() ||
[
all
...]
/external/clang/include/clang/Analysis/
ProgramPoint.h
127
Optional<T>
getAs
() const {
CFG.h
98
Optional<T>
getAs
() const {
920
if (Optional<CFGStmt> stmt = BI->
getAs
<CFGStmt>())
[
all
...]
/external/clang/lib/AST/
Type.cpp
53
ND = ty->
getAs
<RecordType>()->getDecl();
55
ND = ty->
getAs
<EnumType>()->getDecl();
57
ND = ty->
getAs
<TypedefType>()->getDecl();
300
while (const ParenType *PT = T->
getAs
<ParenType>())
326
template <> const TypedefType *Type::
getAs
() const {
330
template <> const TemplateSpecializationType *Type::
getAs
() const {
334
template <> const AttributedType *Type::
getAs
() const {
359
if (const RecordType *RT =
getAs
<RecordType>())
364
if (const RecordType *RT =
getAs
<RecordType>())
369
if (const RecordType *RT =
getAs
<RecordType>()
[
all
...]
Completed in 168 milliseconds