HomeSort by relevance Sort by last modified time
    Searched refs:getLocation (Results 1 - 25 of 467) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/unittests/Lex/
PPConditionalDirectiveRecordTest.cpp 117 SourceRange(toks[0].getLocation(), toks[1].getLocation())));
119 SourceRange(toks[0].getLocation(), toks[2].getLocation())));
121 SourceRange(toks[3].getLocation(), toks[4].getLocation())));
123 SourceRange(toks[1].getLocation(), toks[5].getLocation())));
125 SourceRange(toks[2].getLocation(), toks[6].getLocation())));
    [all...]
LexerTest.cpp 113 SourceLocation lsqrLoc = toks[0].getLocation();
114 SourceLocation idLoc = toks[1].getLocation();
115 SourceLocation rsqrLoc = toks[2].getLocation();
146 SourceLocation macroLsqrLoc = toks[3].getLocation();
147 SourceLocation macroIdLoc = toks[4].getLocation();
148 SourceLocation macroRsqrLoc = toks[5].getLocation();
177 SourceLocation idLoc1 = toks[6].getLocation();
178 SourceLocation idLoc2 = toks[7].getLocation();
179 SourceLocation idLoc3 = toks[8].getLocation();
180 SourceLocation idLoc4 = toks[9].getLocation();
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
CSVFormatter.java 52 if (entry.getLocation().hasAccuracy()) {
53 rowOutput.append(entry.getLocation().getAccuracy());
56 rowOutput.append(entry.getLocation().getLatitude());
58 rowOutput.append(entry.getLocation().getLongitude());
60 if (entry.getLocation().hasAltitude()) {
61 rowOutput.append(entry.getLocation().getAltitude());
64 if (entry.getLocation().hasSpeed()) {
65 rowOutput.append(entry.getLocation().getSpeed());
68 if (entry.getLocation().hasBearing()) {
69 rowOutput.append(entry.getLocation().getBearing())
    [all...]
  /external/clang/tools/libclang/
CXStoredDiagnostic.cpp 42 CXSourceLocation CXStoredDiagnostic::getLocation() const {
43 if (Diag.getLocation().isInvalid())
46 return translateSourceLocation(Diag.getLocation().getManager(),
47 LangOpts, Diag.getLocation());
82 if (Diag.getLocation().isInvalid())
89 assert(Diag.getLocation().isValid());
90 return translateSourceRange(Diag.getLocation().getManager(),
96 if (Diag.getLocation().isInvalid())
108 *ReplacementRange = translateSourceRange(Diag.getLocation().getManager(),
  /external/clang/unittests/Tooling/
RewriterTest.cpp 18 Context.Rewrite.ReplaceText(Context.getLocation(ID, 2, 1), 5, "replaced");
27 Context.Rewrite.ReplaceText(Context.getLocation(FailingID, 1, 2), 1, "other");
30 Context.Rewrite.ReplaceText(Context.getLocation(WorkingID, 2, 1), 5,
RefactoringTest.cpp 46 SourceLocation Location = Context.getLocation(ID, 1, 1);
54 SourceLocation Location = Context.getLocation(ID, 1, 1);
62 SourceLocation Location = Context.getLocation(ID, 1, 1);
71 SourceLocation Location = Context.getLocation(ID, 2, 3);
80 SourceLocation Location1 = Context.getLocation(ID, 2, 3);
87 SourceLocation Location2 = Context.getLocation(ID, 4, 4);
115 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 2, 1),
117 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 3, 1),
127 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 2, 1),
129 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 2, 1)
    [all...]
  /external/mockito/src/org/mockito/exceptions/
PrintableInvocation.java 20 Location getLocation();
  /external/mockito/src/org/mockito/internal/debugging/
LoggingListener.java 26 "stubbed with those args here " + unused.getLocation(),
27 "BUT called with different args " + unstubbed.getInvocation().getLocation(),
32 logger.log("This stubbing was never used " + unused.getLocation() + "\n");
40 unstubbed.getInvocation().getLocation(),
Localized.java 24 public Location getLocation() {
  /external/mockito/src/org/mockito/invocation/
DescribedInvocation.java 28 Location getLocation();
Invocation.java 37 Location getLocation();
  /libcore/luni/src/main/java/org/w3c/dom/
DOMError.java 85 public DOMLocator getLocation();
  /external/clang/include/clang/Sema/
Weak.h 35 inline SourceLocation getLocation() const { return loc; }
39 return alias == RHS.getAlias() && loc == RHS.getLocation();
  /external/clang/include/clang/AST/
CommentBriefParser.h 39 SourceLocation Loc = Tok.getLocation();
  /external/clang/lib/AST/
CommentParser.cpp 56 Pos.BufferStartLoc = Tok.getLocation();
263 Arg.getLocation(),
269 Arg.getLocation(),
279 Arg.getLocation(),
293 Args[ParsedArgs] = Argument(SourceRange(Arg.getLocation(),
315 PC = S.actOnParamCommandStart(Tok.getLocation(),
321 TPC = S.actOnTParamCommandStart(Tok.getLocation(),
326 BC = S.actOnBlockCommandStart(Tok.getLocation(),
412 IC = S.actOnInlineCommand(CommandTok.getLocation(),
415 ArgTok.getLocation(),
    [all...]
  /frameworks/base/libs/androidfw/
KeyLayoutMap.cpp 165 ALOGD("Parsing %s: '%s'.", mTokenizer->getLocation().string(),
182 ALOGE("%s: Expected keyword, got '%s'.", mTokenizer->getLocation().string(),
190 mTokenizer->getLocation().string(),
213 ALOGE("%s: Expected key %s number, got '%s'.", mTokenizer->getLocation().string(),
220 ALOGE("%s: Duplicate entry for key %s '%s'.", mTokenizer->getLocation().string(),
229 ALOGE("%s: Expected key code label, got '%s'.", mTokenizer->getLocation().string(),
242 ALOGE("%s: Expected key flag label, got '%s'.", mTokenizer->getLocation().string(),
247 ALOGE("%s: Duplicate key flag '%s'.", mTokenizer->getLocation().string(),
270 ALOGE("%s: Expected axis scan code number, got '%s'.", mTokenizer->getLocation().string(),
275 ALOGE("%s: Duplicate entry for axis scan code '%s'.", mTokenizer->getLocation().string()
    [all...]
  /external/clang/lib/Parse/
ParsePragma.cpp 85 Tok.getLocation());
93 SourceLocation WeakNameLoc = Tok.getLocation();
96 SourceLocation AliasNameLoc = Tok.getLocation();
107 SourceLocation RedefNameLoc = Tok.getLocation();
110 SourceLocation AliasNameLoc = Tok.getLocation();
135 SourceLocation NameLoc = Tok.getLocation();
160 SourceLocation VisLoc = VisTok.getLocation();
173 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_lparen)
180 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_identifier)
186 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_rparen
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
DataEntryUrnBox.java 43 public String getLocation() {
67 return "DataEntryUrlBox[name=" + getName() + ";location=" + getLocation() + "]";
  /libcore/dom/src/test/java/org/w3c/domts/
DOMErrorImpl.java 42 this.location = new DOMLocatorImpl(src.getLocation());
65 public final DOMLocator getLocation() {
  /external/mockito/src/org/mockito/internal/invocation/
StubInfoImpl.java 22 return stubbedAt.getLocation();
  /libcore/luni/src/main/java/java/net/
HttpRetryException.java 70 public String getLocation() {
  /libcore/luni/src/main/java/java/security/
CodeSource.java 36 public final URL getLocation() { return null; }
  /external/clang/lib/Rewrite/Frontend/
RewriteMacros.cpp 115 SourceLocation PPLoc = SM.getExpansionLoc(PPTok.getLocation());
134 RB.InsertTextAfter(SM.getFileOffset(RawTok.getLocation()), "//");
140 RB.InsertTextAfter(SM.getFileOffset(RawTok.getLocation()), "//");
155 unsigned RawOffs = SM.getFileOffset(RawTok.getLocation());
177 RawOffs = SM.getFileOffset(RawTok.getLocation());
200 PPLoc = SM.getExpansionLoc(PPTok.getLocation());
  /frameworks/native/libs/utils/
PropertyMap.cpp 166 ALOGD("Parsing %s: '%s'.", mTokenizer->getLocation().string(),
175 ALOGE("%s: Expected non-empty property key.", mTokenizer->getLocation().string());
183 mTokenizer->getLocation().string());
192 mTokenizer->getLocation().string());
199 mTokenizer->getLocation().string(),
206 mTokenizer->getLocation().string(), keyToken.string());
  /external/clang/lib/Frontend/
TextDiagnosticBuffer.cpp 33 Notes.push_back(std::make_pair(Info.getLocation(), Buf.str()));
36 Warnings.push_back(std::make_pair(Info.getLocation(), Buf.str()));
40 Errors.push_back(std::make_pair(Info.getLocation(), Buf.str()));

Completed in 732 milliseconds

1 2 3 4 5 6 7 8 91011>>