HomeSort by relevance Sort by last modified time
    Searched defs:Stored (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
GlobalStatus.h 41 /// This global is stored to, but the only thing stored is the constant it
45 /// This global is stored to, but only its initializer and one other value
46 /// is ever stored to it. If this global isStoredOnce, we track the value
47 /// stored to it in StoredOnceValue below. This is only tracked for scalar
51 /// This global is stored to by multiple values or something else that we
53 Stored
56 /// If only one value (besides the initializer constant) is ever stored to
  /external/clang/include/clang/AST/
CanonicalType.h 39 /// BuiltinType, etc.). The type stored within @c CanQual<T> will be of that
54 QualType Stored;
58 CanQual() : Stored() { }
70 const T *getTypePtr() const { return cast<T>(Stored.getTypePtr()); }
76 return cast_or_null<T>(Stored.getTypePtrOrNull());
80 operator QualType() const { return Stored; }
86 return Stored.isNull();
89 SplitQualType split() const { return Stored.split(); }
117 Qualifiers getQualifiers() const { return Stored.getLocalQualifiers(); }
120 unsigned getCVRQualifiers() const { return Stored.getLocalCVRQualifiers();
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 93 /// stored in the stream, the ID number is shifted by 2 bits to
131 /// offset table where information about that input file is stored.
137 DeclOrType(Decl *D) : Stored(D), IsType(false) { }
138 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) { }
145 return QualType::getFromOpaquePtr(Stored);
150 return static_cast<Decl *>(Stored);
154 void *Stored;
207 /// stored in the stream, the ID number is shifted by 2 bits to
343 /// headers. The declarations themselves are stored as declaration
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp     [all...]
Stmt.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]

Completed in 554 milliseconds