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

  /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/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/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 96 if (GS.StoredType != GlobalStatus::Stored) {
103 // The stored value changes between threads; don't track it.
122 GS.StoredType = GlobalStatus::Stored;
125 GS.StoredType = GlobalStatus::Stored;
149 GS.StoredType = GlobalStatus::Stored;
156 GS.StoredType = GlobalStatus::Stored;
  /external/clang/include/clang/Sema/
Template.h 46 /// \brief The template argument lists, stored from the innermost template
208 /// set of instantiated parameters. This is stored as a DeclArgumentPack
296 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored =
299 Stored = I->second.get<Decl *>();
303 Stored = NewPack;
439 // will be stored in LA.
  /external/clang/include/clang/Serialization/
ASTWriter.h 99 /// stored in the stream, the ID number is shifted by 2 bits to
143 /// offset table where information about that input file is stored.
149 DeclOrType(Decl *D) : Stored(D), IsType(false) { }
150 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) { }
157 return QualType::getFromOpaquePtr(Stored);
162 return static_cast<Decl *>(Stored);
166 void *Stored;
219 /// stored in the stream, the ID number is shifted by 2 bits to
363 /// headers. The declarations themselves are stored as declaration
    [all...]
  /external/clang/lib/AST/
Stmt.cpp     [all...]
ExprCXX.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
client.py 57 # Expiry is stored in RFC3339 UTC format
479 if a token hasn't been requested yet. Stored because some providers
565 # A stored token may expire between the time it is retrieved and the time
837 """Revokes this credential and deletes the stored copy (if it exists).
846 """Revokes this credential and deletes the stored copy (if it exists).
    [all...]

Completed in 82 milliseconds