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

  /external/clang/lib/AST/
ExprObjC.cpp 28 ExprBits.ValueDependent = true;
30 ExprBits.InstantiationDependent = true;
32 ExprBits.ContainsUnexpandedParameterPack = true;
68 ExprBits.ValueDependent = true;
71 ExprBits.InstantiationDependent = true;
75 ExprBits.ContainsUnexpandedParameterPack = true;
199 ExprBits.TypeDependent = true;
201 ExprBits.ValueDependent = true;
203 ExprBits.InstantiationDependent = true;
205 ExprBits.ContainsUnexpandedParameterPack = true
    [all...]
ExprCXX.cpp 161 ExprBits.InstantiationDependent = true;
164 ExprBits.ContainsUnexpandedParameterPack = true;
171 ExprBits.InstantiationDependent = true;
174 ExprBits.ContainsUnexpandedParameterPack = true;
181 ExprBits.InstantiationDependent = true;
183 ExprBits.ContainsUnexpandedParameterPack = true;
351 ExprBits.TypeDependent = true;
352 ExprBits.ValueDependent = true;
353 ExprBits.InstantiationDependent = true;
376 ExprBits.TypeDependent = true
    [all...]
Expr.cpp 313 ExprBits.TypeDependent |= TypeDependent;
314 ExprBits.ValueDependent |= ValueDependent;
315 ExprBits.InstantiationDependent |= InstantiationDependent;
319 ExprBits.ContainsUnexpandedParameterPack = true;
337 ExprBits.InstantiationDependent = true;
339 ExprBits.ContainsUnexpandedParameterPack = true;
357 ExprBits.InstantiationDependent |= InstantiationDependent;
358 ExprBits.ContainsUnexpandedParameterPack |= ContainsUnexpandedParameterPack;
    [all...]
  /external/clang/include/clang/AST/
Expr.h 112 ExprBits.TypeDependent = TD;
113 ExprBits.ValueDependent = VD;
114 ExprBits.InstantiationDependent = ID;
115 ExprBits.ValueKind = VK;
116 ExprBits.ObjectKind = OK;
117 ExprBits.ContainsUnexpandedParameterPack = ContainsUnexpandedParameterPack;
146 bool isValueDependent() const { return ExprBits.ValueDependent; }
150 ExprBits.ValueDependent = VD;
164 bool isTypeDependent() const { return ExprBits.TypeDependent; }
168 ExprBits.TypeDependent = TD
    [all...]
Stmt.h 247 ExprBitfields ExprBits;
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 436 E->ExprBits.ContainsUnexpandedParameterPack = Record[Idx++];
    [all...]

Completed in 366 milliseconds