HomeSort by relevance Sort by last modified time
    Searched full:loc (Results 276 - 300 of 1917) sorted by null

<<11121314151617181920>>

  /external/clang/test/Index/skip-parsed-bodies/
compile_commands.json 25 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: some_val | {{.*}} | loc: ./t.h:9:27
30 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: some_val | {{.*}} | loc: ./t.h:15:5
32 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: some_val | {{.*}} | loc: ./t.h:19:5
47 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: some_val | {{.*}} | loc: ./t.h:25:5
49 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: some_val | {{.*}} | loc: ./pragma_once.h:8:7
51 // CHECK-NEXT: [indexEntityReference]: kind: variable | name: some_val | {{.*}} | loc: ./imported.h:4:5
66 // CHECK-NEXT: [indexDeclaration]: kind: variable | {{.*}} | loc: ./pragma_once.h:3:12
  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.cc 117 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp) {
119 if (!g_ctx->SuppressionCount() || loc == 0 ||
120 loc->type != ReportLocationGlobal)
126 if (g_ctx->Match(loc->name, stype, &s) ||
127 g_ctx->Match(loc->file, stype, &s) ||
128 g_ctx->Match(loc->module, stype, &s)) {
132 return loc->addr;
  /external/icu4c/common/
servls.cpp 98 Locale loc; local
99 LocaleUtility::initLocaleFromName(locale, loc);
100 return registerInstance(objToAdopt, loc, LocaleKey::KIND_ANY,
264 const Locale& loc = Locale::getDefault(); local
268 if (loc != fallbackLocale) {
269 ncThis->fallbackLocale = loc;
270 LocaleUtility::initNameFromLocale(loc, ncThis->fallbackLocaleName);
  /external/llvm/lib/Analysis/
AliasAnalysisCounter.cpp 101 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) {
102 return getAnalysis<AliasAnalysis>().pointsToConstantMemory(Loc, OrLocal);
110 const Location &Loc);
153 const Location &Loc) {
154 ModRefResult R = getAnalysis<AliasAnalysis>().getModRefInfo(CS, Loc);
166 errs() << "[" << Loc.Size << "B] ";
167 WriteAsOperand(errs(), Loc.Ptr, true, M);
  /external/chromium_org/third_party/icu/source/i18n/
currpinf.cpp 208 CurrencyPluralInfo::setLocale(const Locale& loc, UErrorCode& status) {
209 initialize(loc, status);
214 CurrencyPluralInfo::initialize(const Locale& loc, UErrorCode& status) {
219 fLocale = loc.clone();
223 fPluralRules = PluralRules::forLocale(loc, status);
224 setupCurrencyPluralPattern(loc, status);
229 CurrencyPluralInfo::setupCurrencyPluralPattern(const Locale& loc, UErrorCode& status) {
243 UResourceBundle *rb = ures_open(NULL, loc.getName(), &ec);
272 UResourceBundle *currRb = ures_open(U_ICUDATA_CURR, loc.getName(), &ec);
tolowtrn.h 33 * @param loc the given locale.
toupptrn.h 33 * @param loc the given locale.
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 120 SourceLocation Loc;
124 static DelayedDiagnostic makeDeprecation(SourceLocation Loc,
130 static DelayedDiagnostic makeAccess(SourceLocation Loc,
135 DD.Loc = Loc;
140 static DelayedDiagnostic makeForbiddenType(SourceLocation loc,
147 DD.Loc = loc;
175 /// Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 62 MarkupTag(StringRef n, StringRef m, SMLoc Loc)
63 : Name(n), Modifiers(m), StartLoc(Loc) {}
81 void FatalError(SMLoc Loc, StringRef Msg);
84 void MarkupParser::FatalError(SMLoc Loc, StringRef Msg) {
85 SM.PrintMessage(Loc, SourceMgr::DK_Error, Msg);
127 SMLoc Loc = SMLoc::getFromPointer(Start - 1);
135 return MarkupTag(SplitTag.first, SplitTag.second, Loc);
175 SMLoc Loc = SMLoc::getFromPointer(Lex.getPosition() - 1);
183 Parser.FatalError(Loc, "'>' without matching '<'");
  /cts/suite/cts/deviceTests/ui/src/com/android/cts/ui/
ScrollingActivity.java 63 private boolean doScroll(final int loc) {
65 mTargetLoc = loc;
70 view.smoothScrollToPositionFromTop(loc, 0, SCROLL_TIME_IN_MS);
  /external/chromium_org/third_party/skia/src/gpu/
GrRectanizer.cpp 27 virtual bool addRect(int w, int h, GrIPoint16* loc);
68 bool GrRectanizerPow2::addRect(int width, int height, GrIPoint16* loc) {
107 *loc = row->fLoc;
GrRectanizer_fifo.cpp 27 virtual bool addRect(int w, int h, GrIPoint16* loc);
68 bool GrRectanizerFIFO::addRect(int width, int height, GrIPoint16* loc) {
107 *loc = row->fLoc;
  /external/clang/lib/Sema/
DelayedDiagnostic.cpp 22 DelayedDiagnostic DelayedDiagnostic::makeDeprecation(SourceLocation Loc,
30 DD.Loc = Loc;
SemaLambda.cpp 437 FieldDecl *Sema::checkInitCapture(SourceLocation Loc, bool ByRef,
446 TLB.pushTypeSpec(DeductType).setNameLoc(Loc);
448 DeductType = BuildReferenceType(DeductType, true, Loc, Id);
450 TLB.push<ReferenceTypeLoc>(DeductType).setSigilLoc(Loc);
454 InitializationKind InitKind = InitializationKind::CreateDefault(Loc);
460 Loc, Parens->getLParenLoc(), Parens->getRParenLoc());
480 InitKind = InitializationKind::CreateDirectList(Loc);
482 InitKind = InitializationKind::CreateCopy(Loc, Loc);
486 Diag(Loc, diag::err_init_capture_deduction_failure_from_init_list
    [all...]
  /external/llvm/include/llvm/Support/
SourceMgr.h 129 int FindBufferContainingLoc(SMLoc Loc) const;
133 unsigned FindLineNumber(SMLoc Loc, int BufferID = -1) const {
134 return getLineAndColumn(Loc, BufferID).first;
140 getLineAndColumn(SMLoc Loc, int BufferID = -1) const;
147 void PrintMessage(SMLoc Loc, DiagKind Kind, const Twine &Msg,
158 SMDiagnostic GetMessage(SMLoc Loc, DiagKind Kind, const Twine &Msg,
180 SMFixIt(SMLoc Loc, const Twine &Insertion)
181 : Range(Loc, Loc), Text(Insertion.str()) {
182 assert(Loc.isValid())
    [all...]
  /external/llvm/utils/
countloc.sh 35 BEGIN { loc=0; } \
36 { loc += $1; } \
37 END { print loc; }'
  /external/skia/src/gpu/
GrRectanizer.cpp 27 virtual bool addRect(int w, int h, GrIPoint16* loc);
68 bool GrRectanizerPow2::addRect(int width, int height, GrIPoint16* loc) {
107 *loc = row->fLoc;
GrRectanizer_fifo.cpp 27 virtual bool addRect(int w, int h, GrIPoint16* loc);
68 bool GrRectanizerFIFO::addRect(int width, int height, GrIPoint16* loc) {
107 *loc = row->fLoc;
  /ndk/sources/android/support/src/musl-locale/
strfmon.c 8 static ssize_t vstrfmon_l(char *s, size_t n, locale_t loc, const char *fmt, va_list ap)
78 ssize_t strfmon_l(char *restrict s, size_t n, locale_t loc, const char *restrict fmt, ...)
84 ret = vstrfmon_l(s, n, loc, fmt, ap);
  /external/chromium_org/third_party/icu/source/test/intltest/
incaltst.cpp 455 Locale loc("th_TH_TRADITIONAL"); // legacy
457 simpleTest(loc, expect, expectDate, status);
464 Locale loc("th_TH@calendar=buddhist");
466 simpleTest(loc, expect, expectDate, status);
473 Locale loc("th_TH@calendar=gregorian");
475 simpleTest(loc, expect, expectDate, status);
482 Locale loc("th_TH_TRADITIONAL@calendar=gregorian");
484 simpleTest(loc, expect, expectDate, status);
573 Locale loc("ja_JP@calendar=japanese");
576 simpleTest(loc, expect, expectDate, status)
    [all...]
dtifmtts.h 59 void stress(const char** data, int32_t data_length, const Locale& loc,
incaltst.h 42 void simpleTest(const Locale& loc, const UnicodeString& expect, UDate expectDate, UErrorCode& status);
  /external/chromium_org/third_party/icu/source/common/
brkiter.cpp 51 BreakIterator::buildInstance(const Locale& loc, const char *type, int32_t kind, UErrorCode &status)
71 UResourceBundle *b = ures_open(U_ICUDATA_BRKITR, loc.getName(), &status);
226 virtual UObject* handleCreate(const Locale& loc, int32_t kind, const ICUService* /*service*/, UErrorCode& status) const {
227 return BreakIterator::makeInstance(loc, kind, status);
249 Locale loc; local
250 lkey.currentLocale(loc);
251 return BreakIterator::makeInstance(loc, kind, status);
356 BreakIterator::createInstance(const Locale& loc, int32_t kind, UErrorCode& status)
365 BreakIterator *result = (BreakIterator*)gService->get(loc, kind, &actualLoc, status);
385 return makeInstance(loc, kind, status)
    [all...]
  /external/chromium_org/third_party/skia/include/effects/
SkColorFilterImageFilter.h 29 SkBitmap* result, SkIPoint* loc) SK_OVERRIDE;
SkRectShaderImageFilter.h 33 SkBitmap* result, SkIPoint* loc) SK_OVERRIDE;

Completed in 2176 milliseconds

<<11121314151617181920>>