/system/core/sh/ |
expand.c | 486 char *loc = NULL; local 509 *loc = c; 523 for (loc = startp; loc < str; loc++) { 524 c = *loc; 525 *loc = '\0'; 528 *loc = c; 529 if ((varflags & VSQUOTE) && *loc == CTLESC) 530 loc++ [all...] |
/art/compiler/dex/quick/arm/ |
call_arm.cc | 38 RegLocation ArmMir2Lir::ArgLoc(RegLocation loc) { 39 int arg_num = InPosition(loc.s_reg_low); 40 if (loc.wide) { 43 loc.location = kLocInvalid; 45 loc.low_reg = rARM_ARG1 + arg_num; 46 loc.high_reg = loc.low_reg + 1; 47 loc.location = kLocPhysReg; 49 loc.location = kLocDalvikFrame; 53 loc.low_reg = rARM_ARG1 + arg_num [all...] |
/external/llvm/lib/Analysis/ |
AliasAnalysis.cpp | 57 bool AliasAnalysis::pointsToConstantMemory(const Location &Loc, 60 return AA->pointsToConstantMemory(Loc, OrLocal); 81 const Location &Loc) { 102 if (!isNoAlias(CSLoc, Loc)) { 112 // If Loc is a constant memory location, the call definitely could not 114 if ((Mask & Mod) && pointsToConstantMemory(Loc)) 122 return ModRefResult(AA->getModRefInfo(CS, Loc) & Mask); 288 AliasAnalysis::getModRefInfo(const LoadInst *L, const Location &Loc) { 295 if (!alias(getLocation(L), Loc)) 303 AliasAnalysis::getModRefInfo(const StoreInst *S, const Location &Loc) { [all...] |
/system/core/libpixelflinger/codeflinger/ |
disassem.c | 295 u_int loc); 297 u_int loc); 299 u_int loc); 304 disasm(const disasm_interface_t *di, u_int loc, int altfmt) 316 insn = di->di_readword(loc); 318 /* di->di_printf("loc=%08x insn=%08x : ", loc, insn);*/ 330 return(loc + INSN_SIZE); 389 disasm_insn_ldrstr(di, insn, loc); 393 disasm_insn_ldrhstrh(di, insn, loc); [all...] |
/external/clang/tools/libclang/ |
CXCursor.cpp | 519 SourceLocation Loc, 522 void *RawLoc = Loc.getPtrEncoding(); 535 SourceLocation Loc, 538 void *RawLoc = Loc.getPtrEncoding(); 551 SourceLocation Loc, 557 void *RawLoc = Loc.getPtrEncoding(); 569 CXCursor cxcursor::MakeCursorTypeRef(const TypeDecl *Type, SourceLocation Loc, 572 void *RawLoc = Loc.getPtrEncoding(); 585 SourceLocation Loc, 588 void *RawLoc = Loc.getPtrEncoding() [all...] |
CXCursor.h | 63 SourceLocation Loc, 73 SourceLocation Loc, 83 SourceLocation Loc, 92 CXCursor MakeCursorTypeRef(const TypeDecl *Type, SourceLocation Loc, 100 CXCursor MakeCursorTemplateRef(const TemplateDecl *Template, SourceLocation Loc, 110 CXCursor MakeCursorNamespaceRef(const NamedDecl *NS, SourceLocation Loc, 118 CXCursor MakeCursorVariableRef(const VarDecl *Var, SourceLocation Loc, 126 CXCursor MakeCursorMemberRef(const FieldDecl *Field, SourceLocation Loc, 161 CXCursor MakeMacroExpansionCursor(MacroDefinition *, SourceLocation Loc, 214 CXCursor MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc, [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
plurfmt.cpp | 40 PluralFormat::PluralFormat(const Locale& loc, UErrorCode& status) { 41 init(NULL, loc, status); 48 PluralFormat::PluralFormat(const Locale& loc, const PluralRules& rules, UErrorCode& status) { 49 init(&rules, loc, status); 57 PluralFormat::PluralFormat(const Locale& loc, const UnicodeString& pat, UErrorCode& status) { 58 init(NULL, loc, status); 67 PluralFormat::PluralFormat(const Locale& loc, const PluralRules& rules, const UnicodeString& pat, UErrorCode& status) { 68 init(&rules, loc, status); 378 PluralFormat::setLocale(const Locale& loc, UErrorCode& status) { 395 init(NULL, loc, status) [all...] |
/external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/ |
DateFmtPerf.h | 152 DateFmtFunction(int a, const char* loc) 155 strcpy(locale, loc); 172 Locale loc(locale); 175 DateFormat::kShort, DateFormat::kFull, loc); 246 NumFmtFunction(int a, const char* loc) 249 strcpy(locale, loc); 254 Locale loc(locale); 258 NumberFormat *fmt = NumberFormat::createInstance(loc, status); 390 CollationFunction(int a, const char* loc) 393 strcpy(locale, loc); [all...] |
/external/clang/include/clang/Basic/ |
Diagnostic.h | 228 /// 'Loc' can be null if the point represents the diagnostic state 232 FullSourceLoc Loc; 233 DiagStatePoint(DiagState *State, FullSourceLoc Loc) 234 : State(State), Loc(Loc) { } 237 // If Loc is invalid it means it came from <command-line>, in which case 239 if (RHS.Loc.isInvalid()) 241 if (Loc.isInvalid()) 243 return Loc.isBeforeInTranslationUnitThan(RHS.Loc); [all...] |
SourceLocation.h | 197 SourceRange(SourceLocation loc) : B(loc), E(loc) {} 273 explicit FullSourceLoc(SourceLocation Loc, const SourceManager &SM) 274 : SourceLocation(Loc), SrcMgr(&SM) {} 311 /// \returns true if this source location comes before 'Loc', false otherwise. 312 bool isBeforeInTranslationUnitThan(SourceLocation Loc) const; 316 /// \returns true if this source location comes before 'Loc', false otherwise. 317 bool isBeforeInTranslationUnitThan(FullSourceLoc Loc) const { 318 assert(Loc.isValid()) [all...] |
/external/opencv/cxcore/src/ |
cxminmaxloc.cpp | 51 int x, loc = 0, width = size.width*(cn); \ 68 for( x = 0; x < width; x += (cn), loc++ ) \ 76 min_loc = loc; \ 81 max_loc = loc; \ 168 int x = 0, y, loc = 0, width = size.width; \ 180 for( x = 0; x < width; x++, loc++ ) \ 183 min_loc = max_loc = loc; \ 194 for( ; x < width; x++, loc++ ) \ 203 min_loc = loc; \ 208 max_loc = loc; \ [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
PathDiagnostic.h | 134 FullSourceLoc Loc; 140 Loc(genLocation(L)), Range(genRange()) { 162 Loc(genLocation(SourceLocation(), lac)), 165 assert(K == SingleLocK || Loc.isValid()); 172 Loc(genLocation()), Range(genRange()) { 174 assert(Loc.isValid()); 181 PathDiagnosticLocation(SourceLocation loc, const SourceManager &sm) 182 : K(SingleLocK), S(0), D(0), SM(&sm), Loc(loc, sm), Range(genRange()) { 183 assert(Loc.isValid()) [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
SVals.h | 10 // This file defines SVal, Loc, and NonLoc, classes that represent 50 LocKind = 2, // for subclass Loc (an L-value) 282 class Loc : public DefinedSVal { 284 Loc() {} 285 explicit Loc(unsigned SubKind, const void *D) 373 assert (data.first.getAs<Loc>()); 378 Loc getLoc() const { 381 return D->first.castAs<Loc>(); 384 Loc getPersistentLoc() const { 388 return V.castAs<Loc>(); 466 namespace loc { namespace in namespace:clang::ento [all...] |
/external/clang/include/clang/AST/ |
StmtOpenMP.h | 50 void setLocStart(SourceLocation Loc) { StartLoc = Loc; } 52 void setLocEnd(SourceLocation Loc) { EndLoc = Loc; } 112 void setLParenLoc(SourceLocation Loc) { LParenLoc = Loc; } 175 void setLParenLoc(SourceLocation Loc) { LParenLoc = Loc; } 311 /// \param Loc New starting location of directive. 313 void setLocStart(SourceLocation Loc) { StartLoc = Loc; [all...] |
/external/icu4c/i18n/ |
plurfmt.cpp | 43 PluralFormat::PluralFormat(const Locale& loc, UErrorCode& status) 44 : locale(loc), 59 PluralFormat::PluralFormat(const Locale& loc, 62 : locale(loc), 69 PluralFormat::PluralFormat(const Locale& loc, 72 : locale(loc), 89 PluralFormat::PluralFormat(const Locale& loc, 92 : locale(loc), 111 PluralFormat::PluralFormat(const Locale& loc, 115 : locale(loc), [all...] |
/external/clang/include/clang/Sema/ |
ParsedTemplate.h | 43 /// \param Loc the location of the type. 44 ParsedTemplateArgument(KindType Kind, void *Arg, SourceLocation Loc) 45 : Kind(Kind), Arg(Arg), Loc(Loc) { } 61 SS(SS), Loc(TemplateLoc), EllipsisLoc() { } 88 SourceLocation getLocation() const { return Loc; } 126 SourceLocation Loc;
|
/system/extras/tests/framebuffer/ |
fb_test.c | 211 uint16_t *loc = _loc; local 217 loc[i + j*(stride)] = red; 222 loc[i + j*(stride)] = green; 230 loc[i + j*(stride)] = blue; 235 loc[i + j*(stride)] = white; 246 uint16_t *loc = _loc; local 252 loc[i + j*(stride)] = black;
|
/external/clang/lib/Sema/ |
SemaExpr.cpp | 74 static void DiagnoseUnusedOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc) { 79 S.Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName(); 84 NamedDecl *D, SourceLocation Loc, 113 S.EmitDeprecationWarning(D, Message, Loc, UnknownObjCClass, ObjCPDecl); 120 S.Diag(Loc, diag::err_unavailable) << D->getDeclName(); 126 S.Diag(Loc, diag::warn_unavailable_fwdclass_message) 130 S.Diag(Loc, diag::err_unavailable_message) 204 SourceLocation Loc) { 232 bool DowngradeWarning = S.getSourceManager().isFromMainFile(Loc); 236 S.Diag(Loc, DowngradeWarning ? diag::ext_internal_in_extern_inlin 5189 SourceLocation loc = NullExpr->getExprLoc(); local 12666 SourceLocation loc; local [all...] |
SemaType.cpp | 80 SourceLocation loc = attr.getLoc(); local 84 if (useExpansionLoc && loc.isMacroID() && attr.getParameterName()) { 86 if (S.findMacroSpelling(loc, "__strong")) name = "__strong"; 88 if (S.findMacroSpelling(loc, "__weak")) name = "__weak"; 92 S.Diag(loc, diag::warn_type_attribute_wrong_type) << name << WhichType 676 SourceLocation loc = declarator.getLocStart(); 700 loc, loc, declarator)); [all...] |
/external/bison/src/ |
parse-gram.y | 41 #define YY_LOCATION_PRINT(File, Loc) \ 42 location_print (File, Loc) 44 static void version_check (location const *loc, char const *version); 59 * \param loc the location in the source. 61 static void add_param (char const *type, char *decl, location loc); 76 current_lhs(symbol *sym, location loc, named_ref *ref) 79 current_lhs_location = loc; 694 YYLTYPE loc; 696 /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;" [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/ |
rewrite.rb | 322 loc = args.shift 324 if loc.is_a?( Range ) 325 first, last = loc.first.to_i, loc.last.to_i 326 loc.exclude_end? and last -= 1 329 loc = loc.to_i 330 return cast_range( args.unshift( loc, loc ), extra )
|
/external/arduino/hardware/arduino/cores/arduino/ |
WString.cpp | 97 char String::charAt( unsigned int loc ) const 99 return operator[]( loc ); 102 void String::setCharAt( unsigned int loc, const char aChar ) 105 if(_length > loc) { 106 _buffer[loc] = aChar; 252 int loc; local 253 while ( (loc = temp.indexOf( match )) != -1 ) 255 newString += temp.substring( 0, loc ); 257 temp = temp.substring( loc + match._length );
|
/external/bison/lib/ |
strtol.c | 182 # define LOCALE_PARAM , loc 183 # define LOCALE_PARAM_PROTO , __locale_t loc 196 # define ISSPACE(Ch) __iswspace_l ((Ch), loc) 197 # define ISALPHA(Ch) __iswalpha_l ((Ch), loc) 198 # define TOUPPER(Ch) __towupper_l ((Ch), loc) 209 # define ISSPACE(Ch) __isspace_l ((Ch), loc) 210 # define ISALPHA(Ch) __isalpha_l ((Ch), loc) 211 # define TOUPPER(Ch) __toupper_l ((Ch), loc) 252 struct locale_data *current = loc->__locales[LC_NUMERIC];
|
/external/chromium/chrome/browser/ui/views/bookmarks/ |
bookmark_bar_view_test.cc | 570 gfx::Point loc(1, target_menu->height() - 1); 571 views::View::ConvertPointToScreen(target_menu, &loc); 574 ui_controls::SendMouseMoveNotifyWhenDone(loc.x() + 10, loc.y(), 578 ScheduleMouseMoveInBackground(loc.x(), loc.y()); 585 gfx::Point loc(1, target_menu->height() - 1); 586 views::View::ConvertPointToScreen(target_menu, &loc); 587 ui_controls::SendMouseMove(loc.x(), loc.y()) [all...] |
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/ |
BinaryImporter.java | 216 int loc = ByteUtils.readInt(bis); local 217 locationTable.put(id, loc); 313 int loc = locationTable.get(id); local 315 String alias = readString(aliasWidth, loc); 316 loc+=aliasWidth; 325 int dataLength = ByteUtils.convertIntFromBytes(dataArray, loc); 326 loc+=4; 336 cap.setContent(dataArray, loc, loc+dataLength);
|