HomeSort by relevance Sort by last modified time
    Searched full:loc (Results 301 - 325 of 1931) sorted by null

<<11121314151617181920>>

  /external/chromium_org/tools/clang/rewrite_scoped_array/
RewriteScopedArray.cpp 24 using clang::ast_matchers::loc;
45 *result.Nodes.getNodeAs<clang::TypeLoc>("loc");
77 id("loc",
78 loc(qualType(hasDeclaration(recordDecl(hasName("::scoped_array")))))),
  /external/clang/bindings/python/tests/cindex/
test_location.py 10 def assert_location(loc, line, column, offset):
11 assert loc.line == line
12 assert loc.column == column
13 assert loc.offset == offset
  /external/clang/lib/AST/
SelectorLocationsKind.cpp 57 SourceLocation Loc = Arg->getLocStart();
58 if (Loc.isInvalid())
59 return Loc;
61 return Loc.getLocWithOffset(-1);
  /external/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 91 StringRef CheckerContext::getMacroNameOrSpelling(SourceLocation &Loc) {
92 if (Loc.isMacroID())
93 return Lexer::getImmediateMacroName(Loc, getSourceManager(),
96 return Lexer::getSpelling(Loc, buf, getSourceManager(), getLangOpts());
  /external/compiler-rt/lib/ubsan/
ubsan_handlers_cxx.cc 36 SourceLocation Loc = Data->Loc.acquire();
37 if (Loc.isDisabled())
40 Diag(Loc, DL_Error,
  /external/icu4c/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);
228 virtual UObject* handleCreate(const Locale& loc, int32_t kind, const ICUService* /*service*/, UErrorCode& status) const {
229 return BreakIterator::makeInstance(loc, kind, status);
255 Locale loc; local
256 lkey.currentLocale(loc);
257 return BreakIterator::makeInstance(loc, kind, status);
364 BreakIterator::createInstance(const Locale& loc, int32_t kind, UErrorCode& status)
373 BreakIterator *result = (BreakIterator*)gService->get(loc, kind, &actualLoc, status);
393 return makeInstance(loc, kind, status)
    [all...]
  /external/icu4c/i18n/
tolowtrn.h 33 * @param loc the given locale.
toupptrn.h 33 * @param loc the given locale.
  /external/icu4c/test/intltest/
incaltst.h 42 void simpleTest(const Locale& loc, const UnicodeString& expect, UDate expectDate, UErrorCode& status);
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
DebugKeysAppState.java 105 Vector3f loc = cam.getLocation(); local
108 + loc.x + ", " + loc.y + ", " + loc.z + ")");
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 142 /// getLocation - Fill in Loc with information about the memory reference by
216 virtual bool pointsToConstantMemory(const Location &Loc,
354 const Location &Loc) {
356 case Instruction::VAArg: return getModRefInfo((const VAArgInst*)I, Loc);
357 case Instruction::Load: return getModRefInfo((const LoadInst*)I, Loc);
358 case Instruction::Store: return getModRefInfo((const StoreInst*)I, Loc);
359 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc);
361 return getModRefInfo((const AtomicCmpXchgInst*)I, Loc);
363 return getModRefInfo((const AtomicRMWInst*)I, Loc);
364 case Instruction::Call: return getModRefInfo((const CallInst*)I, Loc);
    [all...]
  /external/skia/include/effects/
SkColorFilterImageFilter.h 29 SkBitmap* result, SkIPoint* loc) SK_OVERRIDE;
SkDropShadowImageFilter.h 21 virtual bool onFilterImage(Proxy*, const SkBitmap& source, const SkMatrix&, SkBitmap* result, SkIPoint* loc) SK_OVERRIDE;
  /external/skia/src/effects/
Sk2DPathEffect.cpp 65 void Sk2DPathEffect::next(const SkPoint& loc, int u, int v, SkPath* dst) const {}
129 void SkPath2DPathEffect::next(const SkPoint& loc, int u, int v,
131 dst->addPath(fPath, loc.fX, loc.fY);
SkColorFilterImageFilter.cpp 103 SkIPoint* loc) {
105 if (getInput(0) && !getInput(0)->filterImage(proxy, source, matrix, &src, loc)) {
127 loc->fX += bounds.fLeft;
128 loc->fY += bounds.fTop;
  /development/tools/recovery_l10n/src/com/android/recovery_l10n/
Main.java 174 for (Locale loc : locales) {
175 head = new TextCapture(loc, prev, head);
176 prev = loc;
213 for (Locale loc : locales) {
214 Bitmap b = savedBitmaps.get(loc);
221 String lang = loc.getLanguage();
235 for (Locale loc : locales) {
236 Bitmap bm = savedBitmaps.get(loc);
281 String lang = loc.getLanguage();
284 lang = loc.toString()
    [all...]
  /external/clang/include/clang/AST/
CommentLexer.h 62 SourceLocation Loc;
82 SourceLocation getLocation() const LLVM_READONLY { return Loc; }
83 void setLocation(SourceLocation SL) { Loc = SL; }
87 return Loc;
88 return Loc.getLocWithOffset(Length - 1);
314 SourceLocation getSourceLocation(const char *Loc) const {
315 assert(Loc >= BufferStart && Loc <= BufferEnd &&
318 const unsigned CharNo = Loc - BufferStart;
322 DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID)
    [all...]
  /external/clang/lib/Edit/
EditedSource.cpp 270 SourceLocation Loc, FileOffset offs,
273 SourceLocation BeginTokLoc = Lexer::GetBeginningOfToken(Loc, SM, LangOpts);
274 if (BeginTokLoc != Loc)
310 SourceLocation Loc = SM.getLocForStartOfFile(offs.getFID());
311 Loc = Loc.getLocWithOffset(offs.getOffset());
312 assert(Loc.isFileID());
315 adjustRemoval(SM, LangOpts, Loc, offs, len, text);
317 CharSourceRange range = CharSourceRange::getCharRange(Loc,
318 Loc.getLocWithOffset(len))
    [all...]
  /external/clang/lib/Parse/
ParseOpenMP.cpp 35 SourceLocation Loc = ConsumeToken();
54 return Actions.ActOnOpenMPThreadprivateDirective(Loc,
88 SourceLocation Loc = ConsumeToken(), EndLoc;
106 Actions.ActOnOpenMPThreadprivateDirective(Loc,
108 Directive = Actions.ActOnDeclStmt(Res, Loc, Tok.getLocation());
141 Actions.ActOnCapturedRegionStart(Loc, getCurScope(), CR_Default, 1);
157 Loc, EndLoc);
297 SourceLocation Loc = Tok.getLocation();
316 return Actions.ActOnOpenMPSimpleClause(Kind, Type, TypeLoc, LOpen, Loc,
327 SourceLocation Loc = Tok.getLocation()
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
opts.h 240 unsigned int lang_mask, int kind, location_t loc,
314 location_t loc,
322 location_t loc, diagnostic_context *dc);
327 unsigned int lang_mask, int kind, location_t loc,
338 location_t loc,
343 bool imply, location_t loc,
360 location_t loc,
367 location_t loc,
372 location_t loc);
377 location_t loc,
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
opts.h 240 unsigned int lang_mask, int kind, location_t loc,
314 location_t loc,
322 location_t loc, diagnostic_context *dc);
327 unsigned int lang_mask, int kind, location_t loc,
338 location_t loc,
343 bool imply, location_t loc,
360 location_t loc,
367 location_t loc,
372 location_t loc);
377 location_t loc,
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
opts.h 240 unsigned int lang_mask, int kind, location_t loc,
314 location_t loc,
322 location_t loc, diagnostic_context *dc);
327 unsigned int lang_mask, int kind, location_t loc,
338 location_t loc,
343 bool imply, location_t loc,
360 location_t loc,
367 location_t loc,
372 location_t loc);
377 location_t loc,
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
opts.h 240 unsigned int lang_mask, int kind, location_t loc,
314 location_t loc,
322 location_t loc, diagnostic_context *dc);
327 unsigned int lang_mask, int kind, location_t loc,
338 location_t loc,
343 bool imply, location_t loc,
360 location_t loc,
367 location_t loc,
372 location_t loc);
377 location_t loc,
    [all...]
  /external/bison/data/
location.cc 275 ** \param loc a reference to the location to redirect
281 operator<< (std::basic_ostream<YYChar>& ostr, const location& loc)
283 position last = loc.end - 1;
284 ostr << loc.begin;
286 && (!loc.begin.filename
287 || *loc.begin.filename != *last.filename))
289 else if (loc.begin.line != last.line)
291 else if (loc.begin.column != last.column)
  /external/bison/src/
scan-skel.l 232 location loc;
242 boundary_set_from_string (&loc.start, at_directive_argv[1]);
243 boundary_set_from_string (&loc.end, at_directive_argv[2]);
247 func (loc, _(at_directive_argv[3]));
250 func (loc, _(at_directive_argv[3]), at_directive_argv[4]);
253 func (loc, _(at_directive_argv[3]), at_directive_argv[4],
257 func (loc, _(at_directive_argv[3]), at_directive_argv[4],
261 func (loc, _(at_directive_argv[3]), at_directive_argv[4],

Completed in 480 milliseconds

<<11121314151617181920>>