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

  /external/llvm/include/llvm/Analysis/
LibCallSemantics.h 22 /// LibCallLocationInfo - This struct describes a set of memory locations that
33 /// Locations can also be defined in a constant-sensitive way. For example,
58 /// potentially against a set of abstract locations defined by the optimizer.
109 /// locations. For example, if this libcall is known to only modify
130 mutable const LibCallLocationInfo *Locations;
133 LibCallInfo() : Impl(0), Locations(0), NumLocations(0) {}
153 /// getLocationInfo - Return descriptors for the locations referenced by
  /external/llvm/lib/Analysis/
LibCallSemantics.cpp 34 NumLocations = getLocationInfo(Locations);
37 return Locations[LocID];
  /external/clang/include/clang/Sema/
Initialization.h 392 /// \brief The source locations involved in the initialization.
393 SourceLocation Locations[3];
399 Locations[0] = Loc1;
400 Locations[1] = Loc2;
401 Locations[2] = Loc3;
498 SourceLocation getLocation() const { return Locations[0]; }
502 return SourceRange(Locations[0], Locations[2]);
509 return Locations[1];
524 /// \brief Retrieve the source range containing the locations of the ope
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 172 SmallVector<SourceLocation, 4> Locations;
188 Locations.push_back(Unexpanded[I].second);
201 for (unsigned I = 0, N = Locations.size(); I != N; ++I)
202 DB << SourceRange(Locations[I]);
SemaExprCXX.cpp     [all...]
  /external/bison/data/
location.cc 138 b4_copyright([Locations for Bison parsers in C++],
glr.c 119 ## Locations. ##
512 we won't break user code: when these are the locations we know. */
    [all...]
yacc.c 111 ## Locations. ##
619 we won't break user code: when these are the locations we know. */
1015 `yyls': related to locations.
1035 /* The locations where the error started and ended. */
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 75 /// locations at which they were referenced.
77 SourceLocation *Locations;
82 ObjCProtocolList() : ObjCList<ObjCProtocolDecl>(), Locations(0) { }
85 loc_iterator loc_begin() const { return Locations; }
86 loc_iterator loc_end() const { return Locations + size(); }
149 /// \brief Whether the locations of the selector identifiers are in a
160 /// and optionally followed by selector locations.
185 /// \brief Get a pointer to the stored selector identifiers locations array.
186 /// No locations will be stored if HasStandardSelLocs is true.
194 /// \brief Get a pointer to the stored selector identifiers locations array
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 40 Locations = new (Ctx) SourceLocation[Elts];
41 memcpy(Locations, Locs, sizeof(SourceLocation) * Elts);
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 203 milliseconds