/external/clang/lib/Rewrite/Frontend/ |
FixItRewriter.cpp | 65 virtual void insert(SourceLocation loc, StringRef text) { 66 Rewrite.InsertText(loc, text); 188 void FixItRewriter::Diag(SourceLocation Loc, unsigned DiagID) { 195 Diags.Report(Loc, DiagID);
|
/external/clang/test/Index/ |
boxed-exprs.m | 11 // CHECK-INDEX: [indexEntityReference]: kind: variable | name: glob_str | {{.*}} | loc: 7:19
|
/external/clang/unittests/AST/ |
MatchVerifier.h | 142 SourceLocation Loc = getLocation(Node); 143 unsigned Line = Result.SourceManager->getSpellingLineNumber(Loc); 144 unsigned Column = Result.SourceManager->getSpellingColumnNumber(Loc); 150 Loc.print(Msg, *Result.SourceManager);
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_suppressions.h | 24 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
|
/external/icu4c/i18n/ |
casetrn.h | 39 * @param loc the given locale.
|
titletrn.h | 35 * @param loc the given locale.
|
ucurrimp.h | 26 uprv_getStaticCurrencyName(const UChar* iso, const char* loc,
|
/external/libvpx/libvpx/ |
webmenc.h | 30 uint64_t loc; member in struct:cue_entry
|
/external/llvm/lib/Transforms/Scalar/ |
DeadStoreElimination.cpp | 198 AliasAnalysis::Location Loc = AA.getLocationForDest(MI); 202 if (Loc.Size == AliasAnalysis::UnknownSize && AA.getDataLayout() == 0) 204 return Loc; 465 // If the read and written loc obviously don't alias, it isn't a read. 542 AliasAnalysis::Location Loc = getLocForWrite(Inst, *AA); 545 if (Loc.Ptr == 0) 550 // skip any instructions that 'Loc' clearly doesn't interact with. If we 563 // completely obliterated by the store to 'Loc', and c) which we know that 566 !isPossibleSelfRead(Inst, Loc, DepWrite, *AA)) { 568 OverwriteResult OR = isOverwrite(Loc, DepLoc, *AA [all...] |
/external/openfst/src/include/fst/extensions/ngram/ |
ngram-fst.h | 566 const Label *loc = lower_bound(children, children + root_num_children_, local 568 if (loc == children + root_num_children_ || *loc != future) { 571 size_t node = root_first_child_ + loc - children; 580 loc = lower_bound(children, children + last_child - first_child + 1, 582 if (loc == children + last_child - first_child + 1 || 583 *loc != context[word]) { 586 node = first_child + loc - children; 603 const Label *loc = lower_bound(children, children + root_num_children_, *cit); local 604 if (loc == children + root_num_children_ || *loc != *cit) return [all...] |
/frameworks/base/core/java/android/widget/ |
Chronometer.java | 233 Locale loc = Locale.getDefault(); local 234 if (mFormatter == null || !loc.equals(mFormatterLocale)) { 235 mFormatterLocale = loc; 236 mFormatter = new Formatter(mFormatBuilder, loc);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.locales/ |
locales.pass.cpp | 15 // locale pubimbue(const locale& loc);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.stdcvt/ |
codecvt_utf16.pass.cpp | 53 std::locale loc(std::locale::classic(), new C);
|
codecvt_utf8.pass.cpp | 53 std::locale loc(std::locale::classic(), new C);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/classification/ |
isalnum.pass.cpp | 12 // template <class charT> bool isalnum (charT c, const locale& loc);
|
isalpha.pass.cpp | 12 // template <class charT> bool isalpha (charT c, const locale& loc);
|
iscntrl.pass.cpp | 12 // template <class charT> bool iscntrl (charT c, const locale& loc);
|
isdigit.pass.cpp | 12 // template <class charT> bool isdigit (charT c, const locale& loc);
|
isgraph.pass.cpp | 12 // template <class charT> bool isgraph (charT c, const locale& loc);
|
islower.pass.cpp | 12 // template <class charT> bool islower (charT c, const locale& loc);
|
isprint.pass.cpp | 12 // template <class charT> bool isprint (charT c, const locale& loc);
|
ispunct.pass.cpp | 12 // template <class charT> bool ispunct (charT c, const locale& loc);
|
isspace.pass.cpp | 12 // template <class charT> bool isspace (charT c, const locale& loc);
|
isupper.pass.cpp | 12 // template <class charT> bool isupper (charT c, const locale& loc);
|
isxdigit.pass.cpp | 12 // template <class charT> bool isxdigit (charT c, const locale& loc);
|