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

<<21222324252627282930>>

  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 113 /// location, fill in Loc with the details, otherwise set Loc.Ptr to null.
118 AliasAnalysis::Location &Loc,
122 Loc = AA->getLocation(LI);
126 Loc = AA->getLocation(LI);
129 Loc = AliasAnalysis::Location();
135 Loc = AA->getLocation(SI);
139 Loc = AA->getLocation(SI);
142 Loc = AliasAnalysis::Location();
147 Loc = AA->getLocation(V)
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp 168 /// spelling loc that indicates the bytes to be lexed for the token and an
299 StringRef Lexer::getSpelling(SourceLocation loc,
305 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
420 unsigned Lexer::MeasureTokenLength(SourceLocation Loc,
424 if (getRawToken(Loc, TheTok, SM, LangOpts))
431 bool Lexer::getRawToken(SourceLocation Loc, Token &Result,
442 Loc = SM.getExpansionLoc(Loc);
443 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
462 static SourceLocation getBeginningOfFileToken(SourceLocation Loc,
    [all...]
LiteralSupport.cpp 80 FullSourceLoc Loc, unsigned CharWidth,
105 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
111 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
134 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
159 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
182 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
193 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
202 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
206 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
220 FullSourceLoc Loc, DiagnosticsEngine *Diags,
    [all...]
  /external/bison/src/
symtab.c 62 symbol_new (uniqstr tag, location loc)
71 yacc_at (loc, _("POSIX Yacc forbids dashes in symbol names: %s"),
75 res->location = loc;
177 symbol_type_set (symbol *sym, uniqstr type_name, location loc)
182 symbol_redeclaration (sym, "%type", sym->type_location, loc);
185 sym->type_location = loc;
306 symbol_precedence_set (symbol *sym, int prec, assoc a, location loc)
312 loc);
315 sym->prec_location = loc;
319 symbol_class_set (sym, token_sym, loc, false)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Clipboard.cpp 230 void Clipboard::setDragImageResource(ImageResource* img, const IntPoint& loc)
232 setDragImage(img, 0, loc);
235 void Clipboard::setDragImageElement(Node* node, const IntPoint& loc)
237 setDragImage(0, node, loc);
240 PassOwnPtr<DragImage> Clipboard::createDragImage(IntPoint& loc, Frame* frame) const
243 loc = m_dragLoc;
247 loc = m_dragLoc;
466 void Clipboard::setDragImage(ImageResource* image, Node* node, const IntPoint& loc)
472 m_dragLoc = loc;
  /external/clang/lib/Sema/
SemaAttr.cpp 320 SourceLocation Loc = PP.getPragmaARCCFCodeAuditedLoc();
321 if (!Loc.isValid()) return;
328 D->addAttr(::new (Context) CFAuditedTransferAttr(Loc, Context));
348 SourceLocation loc = Stack->back().second; local
350 D->addAttr(::new (Context) VisibilityAttr(loc, Context, type));
359 static void PushPragmaVisibility(Sema &S, unsigned type, SourceLocation loc) {
365 Stack->push_back(std::make_pair(type, loc));
407 SourceLocation Loc) {
412 PushPragmaVisibility(*this, NoVisibility, Loc);
SemaExprObjC.cpp 145 static bool validateBoxingMethod(Sema &S, SourceLocation Loc,
150 S.Diag(Loc, diag::err_undeclared_boxing_method) << Sel << Class->getName();
157 S.Diag(Loc, diag::err_objc_literal_method_sig)
169 static ObjCMethodDecl *getNSNumberFactoryMethod(Sema &S, SourceLocation Loc,
178 S.Diag(Loc, diag::err_invalid_nsnumber_type)
199 Loc, Sema::LookupOrdinaryName);
210 S.Diag(Loc, diag::err_undeclared_nsnumber);
214 S.Diag(Loc, diag::err_undeclared_nsnumber);
245 if (!validateBoxingMethod(S, Loc, S.NSNumberDecl, Sel, Method))
1148 SourceLocation loc; local
3044 SourceLocation loc = local
3191 SourceLocation loc = local
    [all...]
SemaStmt.cpp 122 SourceLocation Loc;
129 Loc = Op->getOperatorLoc();
137 Loc = Op->getOperatorLoc();
147 if (S.SourceMgr.isMacroBodyExpansion(Loc))
150 S.Diag(Loc, diag::warn_unused_comparison)
157 S.Diag(Loc, diag::note_inequality_comparison_to_or_assign)
158 << FixItHint::CreateReplacement(Loc, "|=");
160 S.Diag(Loc, diag::note_equality_comparison_to_assign)
161 << FixItHint::CreateReplacement(Loc, "=");
185 SourceLocation Loc;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 65 if (Optional<Loc> L = V.getAs<Loc>())
145 Loc ThisPtr = getSValBuilder().getCXXThis(CurCtor,
199 Loc ThisPtr = getSValBuilder().getCXXThis(CurCtor,
247 State = State->bindDefault(loc::MemRegionVal(Target), ZeroVal);
293 SVal DestVal = loc::MemRegionVal(Dest);
386 const MemRegion *NewReg = symVal.castAs<loc::MemRegionVal>().getRegion();
391 loc::MemRegionVal(EleReg));
464 SVal V = state->getSVal(loc::MemRegionVal(R));
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 47 CXSourceLocation Loc;
51 Message(Msg), Loc(L) {}
60 return Loc;
113 virtual void emitDiagnosticMessage(SourceLocation Loc, PresumedLoc PLoc,
124 L = translateSourceLocation(*SM, LangOpts, Loc);
131 virtual void emitDiagnosticLoc(SourceLocation Loc, PresumedLoc PLoc,
136 virtual void emitCodeContext(SourceLocation Loc,
142 virtual void emitNote(SourceLocation Loc, StringRef Message,
146 L = translateSourceLocation(*SM, LangOpts, Loc);
  /external/grub/stage2/
fsys_minix.c 316 int loc; /* location within a directory */ local
448 loc = 0;
453 printf ("dirname=`%s', rest=`%s', loc=%d\n", dirname, rest, loc);
458 if (loc >= INODE->i_size)
475 blk = loc >> BLOCK_SIZE_BITS;
491 off = loc & (BLOCK_SIZE - 1);
493 /* advance loc prematurely to next on-disk directory entry */
494 loc += sizeof (dp->inode) + namelen;
  /external/ipsec-tools/src/racoon/
admin.c 278 char *loc, *rem; local
287 loc = racoon_strdup(saddrwop2str(src));
289 STRDUP_FATAL(loc);
294 "phase 1 for %s -> %s not found\n", loc, rem);
301 racoon_free(loc);
333 char *loc, *rem; local
346 loc = racoon_strdup(saddrwop2str(iph1->local));
347 STRDUP_FATAL(loc);
353 racoon_free(loc);
  /external/llvm/include/llvm/MC/
MCDwarf.h 11 // .file directive and the .loc directive.
74 /// dwarf .loc directive.
152 /// the last .loc directive seen as stored in the context.
161 // Constructor to create an MCLineEntry given a symbol and the dwarf loc.
162 MCLineEntry(MCSymbol *label, const MCDwarfLoc loc) : MCDwarfLoc(loc),
168 // section and if there is information from the last .loc directive that
175 /// .loc directives. This is the information used to build the dwarf line
274 SMLoc &Loc);
  /external/clang/include/clang/Analysis/
ProgramPoint.h 379 /// \param Loc can be used to store the information about the location
381 PostStore(const Stmt *S, const LocationContext *L, const void *Loc,
385 setData2(Loc);
478 /// \param Loc The location of the field being initialized.
480 const void *Loc,
482 : ProgramPoint(I, Loc, PostInitializerKind, L) {}
506 ImplicitCallPoint(const Decl *D, SourceLocation Loc, Kind K,
508 : ProgramPoint(Loc.getPtrEncoding(), D, K, L, Tag) {}
530 PreImplicitCall(const Decl *D, SourceLocation Loc,
532 : ImplicitCallPoint(D, Loc, PreImplicitCallKind, L, Tag) {
    [all...]
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 63 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason,
66 Verify.UpdateParsedFileStatus(SM, SM.getFileID(Loc),
126 SourceLocation Loc = Info.getLocation();
127 if (Loc.isValid()) {
130 Loc = SrcManager->getExpansionLoc(Loc);
131 FileID FID = SrcManager->getFileID(Loc);
498 size_t loc = C.find('\\');
499 if (loc == StringRef::npos) {
507 for (size_t last = 0;; loc = C.find('\\', last))
    [all...]
  /external/dnsmasq/contrib/dns-loc/
dnsmasq2-loc-rfc1876.patch 21 + char *name, loc[16];
33 + struct loc_record *loc;
59 + {"loc-record", 1, 0, LOPT_LOC },
67 + { " --loc-record=name,lat lon alt", gettext_noop("Specify LOC DNS record."), NULL },
86 + problem = _("bad LOC record");
91 + new->next = daemon->loc;
92 + daemon->loc = new;
94 + if (!comma || loc_aton(comma,new->loc)!=16)
97 + problem = _("bad LOC record")
    [all...]
  /external/stlport/src/
locale_impl.cpp 695 _STLP_DECLSPEC _Locale_impl* _STLP_CALL _get_Locale_impl(_Locale_impl *loc)
697 _STLP_ASSERT( loc != 0 );
698 loc->_M_incr();
699 return loc;
702 void _STLP_CALL _release_Locale_impl(_Locale_impl *& loc)
704 _STLP_ASSERT( loc != 0 );
705 if (loc->_M_decr() == 0) {
706 if (*loc != *_Stl_classic_locale)
707 delete loc;
709 loc->~_Locale_impl()
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
locale_impl.cpp 695 _STLP_DECLSPEC _Locale_impl* _STLP_CALL _get_Locale_impl(_Locale_impl *loc)
697 _STLP_ASSERT( loc != 0 );
698 loc->_M_incr();
699 return loc;
702 void _STLP_CALL _release_Locale_impl(_Locale_impl *& loc)
704 _STLP_ASSERT( loc != 0 );
705 if (loc->_M_decr() == 0) {
706 if (*loc != *_Stl_classic_locale)
707 delete loc;
709 loc->~_Locale_impl()
    [all...]
  /system/core/libcorkscrew/arch-x86/
backtrace-x86.c 340 dstate->loc += op * cie_info->code_align;
341 ALOGV("DW_CFA_advance_loc: %d to 0x%x", op, dstate->loc);
358 if (offset < dstate->loc) {
362 dstate->loc = offset * cie_info->code_align;
363 ALOGV("DW_CFA_set_loc: %d to 0x%x", offset * cie_info->code_align, dstate->loc);
367 dstate->loc += (uint8_t)offset * cie_info->code_align;
368 ALOGV("DW_CFA_advance_loc1: %d to 0x%x", (uint8_t)offset * cie_info->code_align, dstate->loc);
372 dstate->loc += (uint16_t)offset * cie_info->code_align;
373 ALOGV("DW_CFA_advance_loc2: %d to 0x%x", (uint16_t)offset * cie_info->code_align, dstate->loc);
377 dstate->loc += offset * cie_info->code_align
    [all...]
  /external/chromium_org/tools/clang/plugins/
ChromeClassTester.cpp 99 void ChromeClassTester::emitWarning(SourceLocation loc,
101 FullSourceLoc full(loc, instance().getSourceManager());
240 bool ChromeClassTester::InBannedDirectory(SourceLocation loc) {
242 if (!GetFilename(loc, &filename)) {
294 bool ChromeClassTester::GetFilename(SourceLocation loc,
297 SourceLocation spelling_location = source_manager.getSpellingLoc(loc);
  /external/chromium_org/tools/gn/
label.cc 66 const std::string& loc = computed_location.value(); local
69 if (loc.size() <= 1) {
74 size_t next_to_last_slash = loc.rfind('/', loc.size() - 2);
76 result->assign(&loc[next_to_last_slash + 1],
77 loc.size() - next_to_last_slash - 2);
  /external/e2fsprogs/lib/ext2fs/
dosio.c 376 ext2_loff_t loc; local
383 loc = (ext2_loff_t) block * channel->block_size;
385 lba2chs(loc, &chs, part);
413 ext2_loff_t loc; local
429 loc = (ext2_loff_t)block * channel->block_size;
430 lba2chs(loc, &chs, part);
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
LwjglRenderer.java 764 int loc = glGetUniformLocation(shader.getId(), nameBuf); local
765 if (loc < 0) {
770 uniform.setLocation(loc);
794 int loc = uniform.getLocation(); local
795 if (loc == -1) {
799 if (loc == -2) {
807 loc = uniform.getLocation();
820 glUniform1f(loc, f.floatValue());
824 glUniform2f(loc, v2.getX(), v2.getY());
828 glUniform3f(loc, v3.getX(), v3.getY(), v3.getZ());
2154 int loc = attrib.getLocation(); local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol_res.cpp 172 ucol_open_internal(const char *loc,
184 UResourceBundle *b = ures_open(U_ICUDATA_COLL, loc, status);
191 if(!uloc_getKeywordValue(loc, "collation", keyBuffer, 256, status) ||
300 if(loc == NULL) {
301 loc = ures_getLocaleByType(b, ULOC_ACTUAL_LOCALE, status);
303 result->requestedLocale = uprv_strdup(loc);
309 loc = ures_getLocaleByType(collElem, ULOC_ACTUAL_LOCALE, status);
310 result->actualLocale = uprv_strdup(loc);
316 loc = ures_getLocaleByType(b, ULOC_ACTUAL_LOCALE, status);
317 result->validLocale = uprv_strdup(loc);
724 const Locale *loc = Collator::getAvailableLocales(count); local
    [all...]
  /art/compiler/dex/
mir_graph.h 451 bool IsConst(RegLocation loc) const {
452 return (IsConst(loc.orig_sreg));
455 int32_t ConstantValue(RegLocation loc) const {
456 DCHECK(IsConst(loc));
457 return constant_values_[loc.orig_sreg];
465 int64_t ConstantValueWide(RegLocation loc) const {
466 DCHECK(IsConst(loc));
467 return (static_cast<int64_t>(constant_values_[loc.orig_sreg + 1]) << 32) |
468 Low32Bits(static_cast<int64_t>(constant_values_[loc.orig_sreg]));
471 bool IsConstantNullRef(RegLocation loc) const
    [all...]

Completed in 519 milliseconds

<<21222324252627282930>>