HomeSort by relevance Sort by last modified time
    Searched full:vardefinition (Results 1 - 1 of 1) sorted by null

  /external/clang/lib/Analysis/
ThreadSafety.cpp 393 /// A VarDefinition consists of an expression, representing the value of the
395 /// interpreted. A reference VarDefinition does not itself contain this
396 /// information, but instead contains a pointer to a previous VarDefinition.
397 struct VarDefinition {
403 unsigned Ref; // Reference to another VarDefinition
410 VarDefinition(NamedDecl *D, Expr *E, Context C)
415 VarDefinition(NamedDecl *D, unsigned R, Context C)
422 std::vector<VarDefinition> VarDefinitions;
429 VarDefinitions.push_back(VarDefinition(0, 0u, getEmptyContext()));
433 const VarDefinition* lookup(NamedDecl *D, Context Ctx)
    [all...]

Completed in 1275 milliseconds