HomeSort by: relevance | last modified time | path
    Searched refs:VarRef (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/proto-to-cxx/
loop_proto_to_cxx.cpp 49 std::ostream &operator<<(std::ostream &os, const VarRef &x) {
52 case VarRef::ARR_A:
54 case VarRef::ARR_B:
56 case VarRef::ARR_C:
66 return os << x.varref();
112 return os << x.varref() << "=" << x.rvalue() << ";\n";
proto_to_cxx.cpp 29 std::ostream &operator<<(std::ostream &os, const VarRef &x) {
33 return os << x.varref();
36 if (x.has_varref()) return os << x.varref();
  /src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/proto-to-llvm/
loop_proto_to_llvm.cpp 54 std::string VarRefToString(std::ostream &os, const VarRef &x) {
58 case VarRef::ARR_A:
61 case VarRef::ARR_B:
64 case VarRef::ARR_C:
79 std::string var_ref = VarRefToString(os, x.varref());
126 std::string var_ref = VarRefToString(os, x.varref());
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 7215 const Expr *VarRef = nullptr;
7225 const ValueDecl *Mapper = nullptr, const Expr *VarRef = nullptr,
7230 Mapper(Mapper), VarRef(VarRef), ForDeviceAddr(ForDeviceAddr) {}
8341 const Expr *VarRef = nullptr, bool ForDeviceAddr = false) {
8352 IsImplicit, Mapper, VarRef, ForDeviceAddr);
8598 L.IsImplicit, L.Mapper, L.ForDeviceAddr, VD, L.VarRef);
8966 const Expr *VarRef;
8967 std::tie(Components, MapType, MapModifiers, IsImplicit, Mapper, VarRef) =
8973 VarRef) = L1
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
Sema.cpp 1949 Expr *VarRef =
1953 VarRef, /*AllowNRVO=*/true);
SemaOpenMP.cpp 4497 for (Stmt *VarRef : Clause->children()) {
4498 if (auto *E = cast_or_null<Expr>(VarRef)) {
8725 /// Build 'VarRef = Start.
8727 buildCounterInit(Sema &SemaRef, Scope *S, SourceLocation Loc, ExprResult VarRef,
8730 // Build 'VarRef = Start.
8737 VarRef.get()->getType())) {
8739 NewStart.get(), VarRef.get()->getType(), Sema::AA_Converting,
8746 SemaRef.BuildBinOp(S, Loc, BO_Assign, VarRef.get(), NewStart.get());
8750 /// Build 'VarRef = Start + Iter * Step'.
8752 Sema &SemaRef, Scope *S, SourceLocation Loc, ExprResult VarRef,
    [all...]
SemaExpr.cpp 13467 auto* VarRef = dyn_cast<DeclRefExpr>(op);
13468 if (VarRef && VarRef->refersToEnclosingVariableOrCapture()) {

Completed in 78 milliseconds