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

<<21222324252627282930>>

  /external/llvm/include/llvm/MC/MCParser/
AsmLexer.h 57 AsmToken ReturnError(const char *Loc, const std::string &Msg);
  /external/llvm/lib/DebugInfo/
DWARFDebugLoc.h 29 SmallVector<unsigned char, 4> Loc;
  /external/llvm/test/DebugInfo/X86/
prologue-stack.ll 13 ; CHECK: .loc 1 5 3 prologue_end
  /external/mesa3d/src/glsl/
ir_function_detect_recursion.cpp 291 YYLTYPE loc; local
299 memset(&loc, 0, sizeof(loc));
300 _mesa_glsl_error(&loc, state,
  /external/openssl/crypto/x509/
x509_req.c 275 X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc)
277 return X509at_get_attr(req->req_info->attributes, loc);
280 X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc)
282 return X509at_delete_attr(req->req_info->attributes, loc);
  /external/skia/include/effects/
Sk2DPathEffect.h 32 virtual void next(const SkPoint& loc, int u, int v, SkPath* dst) const;
  /external/skia/src/animator/
SkDrawExtraPathEffect.cpp 238 virtual void next(const SkPoint& loc, int u, int v, SkPath* dst) const SK_OVERRIDE {
239 const_cast<SkShape2DPathEffect*>(this)->addPath(loc, u, v, dst);
248 void addPath(const SkPoint& loc, int u, int v, SkPath* dst) {
249 fLoc = loc;
  /external/skia/src/effects/
SkBitmapSource.cpp 65 // Subtract off the integer component of the translation (will be applied in loc, below).
  /system/core/libcorkscrew/arch-x86/
dwarf.h 122 uintptr_t loc; // location (ip) member in struct:__anon60900
  /external/clang/lib/Sema/
SemaExprCXX.cpp 536 Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) {
537 return Owned(new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc));
733 QualType ThisTy, SourceLocation Loc) {
735 = FieldDecl::Create(Context, RD, Loc, Loc, 0, ThisTy,
736 Context.getTrivialTypeSourceInfo(ThisTy, Loc),
741 return new (Context) CXXThisExpr(Loc, ThisTy, /*isImplicit*/true);
744 void Sema::CheckCXXThisCapture(SourceLocation Loc, bool Explicit) {
770 Diag(Loc, diag::err_this_capture) << Explicit;
786 ThisExpr = captureThis(Context, LSI->Lambda, ThisTy, Loc);
    [all...]
SemaExprMember.cpp 202 SourceLocation Loc = nameInfo.getLoc();
203 SourceRange Range(Loc);
216 SemaRef.Diag(Loc, diag::err_invalid_member_use_in_static_method)
222 SemaRef.Diag(Loc, diag::err_nested_non_static_member_use)
225 SemaRef.Diag(Loc, diag::err_invalid_non_static_member_use)
228 SemaRef.Diag(Loc, diag::err_member_call_without_object)
723 SourceLocation loc,
746 DeclarationNameInfo baseNameInfo(DeclarationName(), loc); local
780 Diag(loc, diag::err_invalid_member_use_in_static_method)
786 CheckCXXThisCapture(loc);
1705 SourceLocation loc = R.getNameLoc(); local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
numfmt.cpp 719 virtual UObject* handleCreate(const Locale& loc, int32_t kind, const ICUService* /* service */, UErrorCode& status) const {
721 return NumberFormat::makeInstance(loc, (NumberFormat::EStyles)kind, status);
750 Locale loc; local
751 lkey.canonicalLocale(loc);
754 UObject* result = _delegate->createFormat(loc, (UNumberFormatStyle)(kind+1));
804 Locale loc; local
805 lkey.currentLocale(loc);
806 return NumberFormat::makeInstance(loc, (NumberFormat::EStyles)kind, status);
887 NumberFormat::createInstance(const Locale& loc, EStyles kind, UErrorCode& status)
893 return (NumberFormat*)gService->get(loc, kind, status)
1034 const char* loc = getLocaleID(ULOC_VALID_LOCALE, ec); local
    [all...]
  /external/icu4c/i18n/
numfmt.cpp 801 virtual UObject* handleCreate(const Locale& loc, int32_t kind, const ICUService* /* service */, UErrorCode& status) const {
802 return NumberFormat::makeInstance(loc, (UNumberFormatStyle)kind, status);
829 Locale loc; local
830 lkey.canonicalLocale(loc);
833 UObject* result = _delegate->createFormat(loc, (UNumberFormatStyle)kind);
891 Locale loc; local
892 lkey.currentLocale(loc);
893 return NumberFormat::makeInstance(loc, (UNumberFormatStyle)kind, status);
976 NumberFormat::createInstance(const Locale& loc, UNumberFormatStyle kind, UErrorCode& status)
982 return (NumberFormat*)gService->get(loc, kind, status)
1123 const char* loc = getLocaleID(ULOC_VALID_LOCALE, ec); local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
VideoModule.java 398 Location loc = mLocationManager.getCurrentLocation(); local
399 CameraUtil.setGpsParameters(mParameters, loc);
404 null, null, null, new JpegPictureCallback(loc));
1044 Location loc = mLocationManager.getCurrentLocation(); local
1080 Location loc = mLocationManager.getCurrentLocation(); local
    [all...]
  /external/bison/data/
lalr1.java 67 * @@param loc The position at which the range is anchored. */
68 public ]b4_location_type[ (]b4_position_type[ loc) {
69 this.begin = this.end = loc;
140 * ]b4_locations_if([[@@param loc The location of the element to which the
143 void yyerror (]b4_locations_if([b4_location_type[ loc, ]])[String s);]
206 protected final void yyerror (]b4_locations_if([b4_location_type[ loc, ]])[String s) {
207 yylexer.yyerror (]b4_locations_if([loc, ])[s);
214 protected final void yyerror (]b4_position_type[ loc, String s) {
215 yylexer.yyerror (new ]b4_location_type[ (loc), s);
232 b4_locations_if([, ]b4_location_type[ loc])[) {
    [all...]
  /external/bison/src/
tables.c 681 int loc = 0; local
697 loc = j + state_number_as_int (from[k]);
698 if (table_size <= loc)
699 table_grow (loc);
701 if (table[loc] != 0)
713 loc = j + from[k];
714 table[loc] = to[k];
716 conflict_table[loc] = conflict_to[k];
717 check[loc] = from[k];
723 if (loc > high
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnmdptst.c 894 const char *loc = NULL; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
dtptngts.cpp 473 Locale loc("ja");
475 DateTimePatternGenerator *patGen=DateTimePatternGenerator::createInstance(loc, status);
482 SimpleDateFormat sdf(bPattern, loc, status);
497 Locale loc("zh");
500 DateTimePatternGenerator *patGen=DateTimePatternGenerator::createInstance(loc, status);
507 SimpleDateFormat sdf(bPattern, loc, status);
525 Locale loc("en");
526 DateTimePatternGenerator *patGen=DateTimePatternGenerator::createInstance(loc, status);
556 Locale loc(testLocale[localeIndex][0], testLocale[localeIndex][1], testLocale[localeIndex][2], testLocale[localeIndex][3]);
558 DateTimePatternGenerator *patGen=DateTimePatternGenerator::createInstance(loc, status)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_state_derived.c 318 int i, col_count = 0, tex_count = 0, fp_offset = 0, count, loc = 0, tex_ptr = 0; local
348 stream_loc_notcl[loc++] = 0;
353 stream_loc_notcl[loc++] = 1;
364 stream_loc_notcl[loc++] = 2 + i;
400 stream_loc_notcl[loc++] = 4 + i;
409 stream_loc_notcl[loc++] = 6 + tex_count;
452 stream_loc_notcl[loc++] = 6 + tex_count;
501 stream_loc_notcl[loc++] = 6 + tex_count;
539 stream_loc_notcl[loc++] = 6 + tex_count;
561 for (; loc < 16;)
    [all...]
  /external/icu4c/test/cintltst/
cnmdptst.c 894 const char *loc = NULL; local
    [all...]
  /external/icu4c/test/intltest/
dtptngts.cpp 531 Locale loc("ja");
533 DateTimePatternGenerator *patGen=DateTimePatternGenerator::createInstance(loc, status);
540 SimpleDateFormat sdf(bPattern, loc, status);
555 Locale loc("zh");
558 DateTimePatternGenerator *patGen=DateTimePatternGenerator::createInstance(loc, status);
565 SimpleDateFormat sdf(bPattern, loc, status);
583 Locale loc("en")
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_state_derived.c 318 int i, col_count = 0, tex_count = 0, fp_offset = 0, count, loc = 0, tex_ptr = 0; local
348 stream_loc_notcl[loc++] = 0;
353 stream_loc_notcl[loc++] = 1;
364 stream_loc_notcl[loc++] = 2 + i;
400 stream_loc_notcl[loc++] = 4 + i;
409 stream_loc_notcl[loc++] = 6 + tex_count;
452 stream_loc_notcl[loc++] = 6 + tex_count;
501 stream_loc_notcl[loc++] = 6 + tex_count;
539 stream_loc_notcl[loc++] = 6 + tex_count;
561 for (; loc < 16;)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-flow-inline.h 184 location_t loc; local
189 loc = gimple_location (stmt);
190 if (loc == UNKNOWN_LOCATION)
193 return LOCATION_LINE (loc);
257 linknode->loc.stmt = stmt;
287 linknode->loc.stmt = stmt;
400 *stmt = ptr->next->loc.stmt;
496 /* Set the source location of gimple argument I of phi node GS to LOC. */
499 gimple_phi_arg_set_location (gimple gs, size_t i, source_location loc)
501 gimple_phi_arg (gs, i)->locus = loc;
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-flow-inline.h 184 location_t loc; local
189 loc = gimple_location (stmt);
190 if (loc == UNKNOWN_LOCATION)
193 return LOCATION_LINE (loc);
257 linknode->loc.stmt = stmt;
287 linknode->loc.stmt = stmt;
400 *stmt = ptr->next->loc.stmt;
496 /* Set the source location of gimple argument I of phi node GS to LOC. */
499 gimple_phi_arg_set_location (gimple gs, size_t i, source_location loc)
501 gimple_phi_arg (gs, i)->locus = loc;
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-flow-inline.h 184 location_t loc; local
189 loc = gimple_location (stmt);
190 if (loc == UNKNOWN_LOCATION)
193 return LOCATION_LINE (loc);
257 linknode->loc.stmt = stmt;
287 linknode->loc.stmt = stmt;
400 *stmt = ptr->next->loc.stmt;
496 /* Set the source location of gimple argument I of phi node GS to LOC. */
499 gimple_phi_arg_set_location (gimple gs, size_t i, source_location loc)
501 gimple_phi_arg (gs, i)->locus = loc;
    [all...]

Completed in 419 milliseconds

<<21222324252627282930>>