/external/clang/include/clang/Lex/ |
MacroInfo.h | 31 /// Location - This is the place the macro is defined. 32 SourceLocation Location; 33 /// EndLocation - The location of the last token in the macro. 111 /// getDefinitionLoc - Return the location that the macro was defined at. 113 SourceLocation getDefinitionLoc() const { return Location; } 115 /// setDefinitionEndLoc - Set the location of the last token in the macro. 119 /// getDefinitionEndLoc - Return the location of the last token in the macro. 265 /// \brief Encapsulates changes to the "macros namespace" (the location where 266 /// the macro name became active, the location where it was undefined, etc.). 275 /// location. Module "A" itself will contain another MacroDirective in its macr [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
CheckerContext.h | 78 /// The tagged location, which is used to generate all new nodes. 79 const ProgramPoint Location; 95 Location(loc), 182 /// the location region as it was uttered in the code. 273 /// \brief Depending on wither the location corresponds to a macro, return 293 const ProgramPoint &LocalLoc = (Tag ? Location.withTag(Tag) : Location);
|
CallEvent.h | 114 /// Use the "Data" and "Location" fields instead. 133 SourceLocation Location; 154 Data(Original.Data), Location(Original.Location), RefCount(0) {} 678 /// \param LCtx The location context at this point in the program. 684 Location = Trigger->getLocEnd(); 691 virtual SourceRange getSourceRange() const { return Location; } 724 /// \param LCtx The location context at this point in the program. [all...] |
CoreEngine.h | 62 /// G - The simulation graph. Each node is a (location,state) pair. 75 /// The locations where we stopped doing work because we visited a location 131 /// Dispatch the work list item based on the given location information. 314 ProgramPoint &Location; 319 : NodeBuilder(Pred, DstSet, Ctx), Location(L) {} 324 const ProgramPoint &LocalLoc = (Tag ? Location.withTag(Tag) : Location); 330 const ProgramPoint &LocalLoc = (Tag ? Location.withTag(Tag) : Location);
|
ExplodedGraph.h | 110 /// Location - The program location (within a function body) associated 112 const ProgramPoint Location; 127 : Location(loc), State(state), Succs(IsSink) { 134 ProgramPoint getLocation() const { return Location; } 159 return Location.getAs<T>(); 173 Profile(ID, Location, State, isSink()); 255 /// different roots reach the same state at the same program location. 288 /// \brief Retrieve the node associated with a (Location,State) pair, 289 /// where the 'Location' is a ProgramPoint in the CFG. If no node fo [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngineCXX.cpp | 77 // If the value being copied is not unknown, load from its location to get 325 // Non-array placement new should always return the placement location. 341 SVal Location = State->getSVal(CNE, LCtx); 342 if (Optional<Loc> LV = Location.getAs<Loc>())
|
/external/compiler-rt/lib/ubsan/ |
ubsan_diag.h | 20 /// \brief A location within a loaded module in the program. These are used when 21 /// the location can't be resolved to a SourceLocation. 34 /// A location of some data within the program's address space. 37 /// \brief Location at which a diagnostic can be emitted. Either a 39 class Location { 51 Location() : Kind(LK_Null) {} 52 Location(SourceLocation Loc) : 54 Location(ModuleLocation Loc) : 56 Location(MemoryLocation Loc) : 79 /// Try to obtain a location for the caller. This might fail, and produce eithe [all...] |
/external/llvm/include/llvm/Analysis/ |
AliasAnalysis.h | 19 // This API identifies memory regions with the Location class. The pointer 105 /// Location - A description of a memory location. 106 struct Location { 107 /// Ptr - The address of the start of the location. 109 /// Size - The maximum size of the location, in address-units, or 116 /// the location, or null if there is no known unique tag. 119 explicit Location(const Value *P = 0, uint64_t S = UnknownSize, 123 Location getWithNewPtr(const Value *NewPtr) const { 124 Location Copy(*this) [all...] |
/external/llvm/lib/Target/X86/ |
X86AsmPrinter.cpp | 707 MachineLocation Location; 712 Location.set(MI->getOperand(0).getReg(), MI->getOperand(3).getImm()); 716 return Location; 723 // probably portable to other targets; frame pointer location is not.
|
/external/v8/src/ |
variables.h | 50 enum Location { 51 // Before and during variable allocation, a variable whose location is 153 Location location() const { return location_; } function in class:v8::internal::Variable 160 void AllocateTo(Location location, int index) { 161 location_ = location; 172 Location location_;
|
scanner.h | 301 struct Location { 302 Location(int b, int e) : beg_pos(b), end_pos(e) { } 303 Location() : beg_pos(0), end_pos(0) { } 309 static Location invalid() { return Location(-1, -1); } 328 // Returns the location information for the current token 330 Location location() const { return current_.location; } function in class:v8::internal::Scanner 355 Location location = current_.location local 443 Location location; member in struct:v8::internal::Scanner::TokenDesc [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/ |
Checker.h | 183 class Location { 186 const SVal &location, bool isLoad, const Stmt *S, 188 ((const CHECKER *)checker)->checkLocation(location, isLoad, S, C); 202 const SVal &location, const SVal &val, const Stmt *S, 204 ((const CHECKER *)checker)->checkBind(location, val, S, C); 466 /// \brief We dereferenced a location that may be null. 468 SVal Location;
|
/external/clang/lib/Lex/ |
Preprocessor.cpp | 317 SourceLocation Location = I->second->getInfo()->getDefinitionLoc(); 320 (Location.isValid() && 321 SourceMgr.isBeforeInTranslationUnit(BestLocation, Location))) { 322 BestLocation = Location; 420 /// location for it. If specified, the source location provides a source 421 /// location for the token.
|
ModuleMap.cpp | 160 // to be symlinked from the top-level location to the embedded location, 161 // and we need to resolve lookups as if we had found the embedded location. 610 // Use the expansion location to determine which module we're in. 666 unsigned Location; 672 Location = 0; 680 return SourceLocation::getFromRawEncoding(Location); 727 /// \brief Consume the current token and return its location. 773 Tok.Location = LToken.getLocation().getRawEncoding(); [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCAsmPrinter.cpp | 90 MachineLocation Location; 94 Location.set(MI->getOperand(0).getReg(), MI->getOperand(2).getImm()); 98 return Location; [all...] |
/cts/tests/tests/location/src/android/location/cts/ |
LocationTest.java | 17 package android.location.cts; 20 import android.location.Location; 45 new Location("LocationProvider"); 47 Location l = createTestLocation(); 48 Location location = new Location(l); local 49 assertTestLocation(location); 52 new Location((Location) null) 62 Location location = new Location("LocationProvider"); local 68 Location location = new Location(""); local 203 Location location = new Location(""); local 252 Location location = new Location(""); local 265 Location location = new Location(""); local 278 Location location = new Location(""); local 299 Location location = createTestLocation(); local 308 Location location = new Location(""); local 321 Location location = new Location(""); local 334 Location location = new Location(""); local 345 Location location = new Location(""); local 358 Location location = new Location(""); local 371 Location location = new Location(""); local 395 Location location = createTestLocation(); local 401 Location location = createTestLocation(); local [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
Profiler.cs | 150 public override void Location(int line, int pos) { 592 buf.Append("location");
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
Profiler.cs | 159 public override void Location(int line, int pos) 644 buf.Append("location");
|
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
BugReporter.h | 76 PathDiagnosticLocation Location; 101 /// A set of location contexts that correspoind to call sites which should be 155 : BT(bt), DeclWithIssue(0), Description(desc), Location(l), ErrorNode(0), 159 /// \brief Create a BugReport with a custom uniqueing location. 161 /// The reports that have the same report location, description, bug type, and 163 /// to the user. This method allows to rest the location which should be used 165 /// the allocation site, rather then the location where the bug is reported. 259 /// \brief Return the "definitive" location of the reported bug. 262 /// location that can be used to identify where the key issue occurred. 263 /// This location is used by clients rendering diagnostics [all...] |
/external/compiler-rt/lib/asan/ |
asan_report.cc | 63 const char *Location() { return Green(); } 199 Printf("%s", d.Location()); 258 Printf("%s", d.Location()); 297 Printf("%s", d.Location());
|
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
ReverseGeocoder.java | 20 import android.location.Address; 21 import android.location.Geocoder; 22 import android.location.Location; 23 import android.location.LocationManager; 111 // Get current location, we decide the granularity of the string based 115 Location location = null; local 119 location = (provider != null) ? locationManager.getLastKnownLocation(provider) : null; 120 if (location != null [all...] |
/external/llvm/include/llvm/Support/ |
CommandLine.h | 299 // location - Allow the user to specify which external variable they want to 313 LocationClass<Ty> location(Ty &L) { return LocationClass<Ty>(L); } function in namespace:llvm::cl [all...] |
/external/llvm/lib/Target/ARM/ |
ARMAsmPrinter.cpp | 218 MachineLocation Location; 222 Location.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm()); 226 return Location; [all...] |
/frameworks/base/location/java/android/location/ |
Location.java | 17 package android.location; 30 * A data class representing a geographic location. 32 * <p>A location can consist of a latitude, longitude, timestamp, 40 public class Location implements Parcelable { 63 * Bundle key for a version of the location that has been fed through 64 * LocationFudger. Allows location providers to flag locations as being 72 * Bundle key for a version of the location containing no GPS data. 73 * Allows location providers to flag locations as being safe to 108 * Construct a new Location with a named provider. 110 * <p>By default time, latitude and longitude are 0, and the location [all...] |
/external/chromium/chrome/common/extensions/ |
extension.h | 47 enum Location { 211 // Extension::ShouldDoStrictErrorChecking(location) returns true. 221 Location location, 232 static Location GetHigherPriorityLocation(Location loc1, Location loc2); 348 // Whether the |location| is external or not. 349 static inline bool IsExternalLocation(Location location) { 573 Location location() const { return location_; } function in class:Extension [all...] |