HomeSort by: relevance | last modified time | path
    Searched defs:Temporary (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExternalASTMerger.h 87 /// True iff the source only exists temporary, i.e., it will be removed from
89 bool Temporary;
96 bool Temporary = false, ExternalASTMerger *Merger = nullptr)
97 : AST(AST), FM(FM), OM(OM), Temporary(Temporary), Merger(Merger) {}
101 bool isTemporary() const { return Temporary; }
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCall.h 241 /// a temporary copy is returned.
273 /// The temporary alloca.
274 Address Temporary;
283 /// The "is active" insertion point. This instruction is temporary and
309 void addWriteback(LValue srcLV, Address temporary, llvm::Value *toUse) {
310 Writeback writeback = {srcLV, temporary, toUse};
CGObjC.cpp 93 Address Temporary = CreateMemTemp(SubExpr->getType());
94 EmitAnyExprToMem(SubExpr, Temporary, Qualifiers(), /*isInit*/ true);
95 Address BitCast = Builder.CreateBitCast(Temporary, ConvertType(ArgQT));
152 // Allocate the temporary array(s).
1771 // The first argument is a temporary of the enumeration-state type.
1775 // The second argument is a temporary array with space for NumItems
1783 // The third argument is the capacity of that temporary array.
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Lookup.h 138 /// A little identifier for flagging temporary lookup results.
140 Temporary
168 /// Creates a temporary lookup result, initializing its core data
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Metadata.h 70 enum StorageType { Uniqued, Distinct, Temporary };
883 /// Metadata nodes can be uniqued, like constants, or distinct. Temporary
889 /// time, if any operand is a temporary node (or an unresolved uniqued node,
890 /// which indicates a transitive temporary operand), the node itself will be
895 /// to be called on some member of the cycle once all temporary nodes have been
948 /// Create a (temporary) clone of this.
977 bool isTemporary() const { return Storage == Temporary; }
979 /// RAUW a temporary.
983 assert(isTemporary() && "Expected temporary node");
999 /// Replace a temporary node with a permanent one
    [all...]

Completed in 63 milliseconds