Home
last modified time | relevance | path

Searched refs:ExprBits (Results 1 – 6 of 6) sorted by relevance

/external/clang/lib/AST/
DExprObjC.cpp28 ExprBits.ValueDependent = true; in ObjCArrayLiteral()
30 ExprBits.InstantiationDependent = true; in ObjCArrayLiteral()
32 ExprBits.ContainsUnexpandedParameterPack = true; in ObjCArrayLiteral()
68 ExprBits.ValueDependent = true; in ObjCDictionaryLiteral()
71 ExprBits.InstantiationDependent = true; in ObjCDictionaryLiteral()
75 ExprBits.ContainsUnexpandedParameterPack = true; in ObjCDictionaryLiteral()
199 ExprBits.TypeDependent = true; in initArgsAndSelLocs()
201 ExprBits.ValueDependent = true; in initArgsAndSelLocs()
203 ExprBits.InstantiationDependent = true; in initArgsAndSelLocs()
205 ExprBits.ContainsUnexpandedParameterPack = true; in initArgsAndSelLocs()
DExpr.cpp313 ExprBits.TypeDependent |= TypeDependent; in computeDependence()
314 ExprBits.ValueDependent |= ValueDependent; in computeDependence()
315 ExprBits.InstantiationDependent |= InstantiationDependent; in computeDependence()
319 ExprBits.ContainsUnexpandedParameterPack = true; in computeDependence()
337 ExprBits.InstantiationDependent = true; in DeclRefExpr()
339 ExprBits.ContainsUnexpandedParameterPack = true; in DeclRefExpr()
357 ExprBits.InstantiationDependent |= InstantiationDependent; in DeclRefExpr()
358 ExprBits.ContainsUnexpandedParameterPack |= ContainsUnexpandedParameterPack; in DeclRefExpr()
1166 ExprBits.TypeDependent = true; in CallExpr()
1168 ExprBits.ValueDependent = true; in CallExpr()
[all …]
DExprCXX.cpp161 ExprBits.InstantiationDependent = true; in CXXNewExpr()
164 ExprBits.ContainsUnexpandedParameterPack = true; in CXXNewExpr()
171 ExprBits.InstantiationDependent = true; in CXXNewExpr()
174 ExprBits.ContainsUnexpandedParameterPack = true; in CXXNewExpr()
181 ExprBits.InstantiationDependent = true; in CXXNewExpr()
183 ExprBits.ContainsUnexpandedParameterPack = true; in CXXNewExpr()
351 ExprBits.TypeDependent = true; in OverloadExpr()
352 ExprBits.ValueDependent = true; in OverloadExpr()
353 ExprBits.InstantiationDependent = true; in OverloadExpr()
376 ExprBits.TypeDependent = true; in OverloadExpr()
[all …]
/external/clang/include/clang/AST/
DExpr.h112 ExprBits.TypeDependent = TD; in Expr()
113 ExprBits.ValueDependent = VD; in Expr()
114 ExprBits.InstantiationDependent = ID; in Expr()
115 ExprBits.ValueKind = VK; in Expr()
116 ExprBits.ObjectKind = OK; in Expr()
117 ExprBits.ContainsUnexpandedParameterPack = ContainsUnexpandedParameterPack; in Expr()
146 bool isValueDependent() const { return ExprBits.ValueDependent; } in isValueDependent()
150 ExprBits.ValueDependent = VD; in setValueDependent()
164 bool isTypeDependent() const { return ExprBits.TypeDependent; } in isTypeDependent()
168 ExprBits.TypeDependent = TD; in setTypeDependent()
[all …]
DStmt.h247 ExprBitfields ExprBits; in LLVM_ALIGNAS() member
/external/clang/lib/Serialization/
DASTReaderStmt.cpp436 E->ExprBits.ContainsUnexpandedParameterPack = Record[Idx++]; in VisitExpr()