/external/skia/src/core/ |
SkDrawProcs.h | 50 void operator()(const SkPoint& loc, const SkGlyph& glyph, SkPoint* dst) { 52 dst->set(loc.fX, loc.fY); 54 dst->set(loc.fX - SkFloatToScalar(glyph.fAdvanceX) / 2, 55 loc.fY - SkFloatToScalar(glyph.fAdvanceY) / 2); 58 dst->set(loc.fX - SkFloatToScalar(glyph.fAdvanceX), 59 loc.fY - SkFloatToScalar(glyph.fAdvanceY));
|
/frameworks/base/core/java/android/transition/ |
VisibilityPropagation.java | 50 int[] loc = new int[2]; local 51 view.getLocationOnScreen(loc); 52 loc[0] += Math.round(view.getTranslationX()); 53 loc[0] += view.getWidth() / 2; 54 loc[1] += Math.round(view.getTranslationY()); 55 loc[1] += view.getHeight() / 2; 56 values.values.put(PROPNAME_VIEW_CENTER, loc);
|
/frameworks/support/transition/src/android/support/transition/ |
VisibilityPropagation.java | 51 int[] loc = new int[2]; local 52 view.getLocationOnScreen(loc); 53 loc[0] += Math.round(view.getTranslationX()); 54 loc[0] += view.getWidth() / 2; 55 loc[1] += Math.round(view.getTranslationY()); 56 loc[1] += view.getHeight() / 2; 57 values.values.put(PROPNAME_VIEW_CENTER, loc);
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/support/ibm/ |
locale_mgmt_aix.h | 41 _LC_locale_t *newloc, *loc; local 42 if ((loc = (_LC_locale_t *)__xopen_locale(locale)) == NULL) 56 newloc->lc_collate = loc->lc_collate; 58 newloc->lc_ctype = loc->lc_ctype; 60 // newloc->lc_messages = loc->lc_messages; 62 newloc->lc_monetary = loc->lc_monetary; 64 newloc->lc_time = loc->lc_time; 66 newloc->lc_numeric = loc->lc_numeric;
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
pcrel.s | 11 loc: label 17 jmp loc 28 jmp loc - abs 39 jmp loc - abs2 46 jmp loc2 - loc 47 jmp glob - loc 49 jmp glob2 - loc
|
/external/libunwind/src/ia64/ |
Gstep.c | 46 if (!IA64_IS_REG_LOC (c->loc[IA64_REG_IP]) 47 && IA64_GET_ADDR (c->loc[IA64_REG_IP]) == sc_addr + LINUX_SC_BR_OFF + 8) 51 c->loc[IA64_REG_IP] = IA64_LOC_ADDR (sc_addr + LINUX_SC_IP_OFF, 0); 56 c->loc[IA64_REG_PFS] = IA64_LOC_ADDR (sc_addr + LINUX_SC_AR_PFS_OFF, 0); 85 c->loc[IA64_REG_PFS] = pfs_loc; 114 c->loc[IA64_REG_PRI_UNAT_MEM] = IA64_NULL_LOC; 115 c->loc[IA64_REG_PSP] = IA64_LOC_UC_REG (UNW_IA64_GR + 12, sc_addr); 116 c->loc[IA64_REG_BSP] = IA64_LOC_UC_REG (UNW_IA64_AR_BSP, sc_addr); 117 c->loc[IA64_REG_BSPSTORE] = IA64_LOC_UC_REG (UNW_IA64_AR_BSPSTORE, sc_addr); 118 c->loc[IA64_REG_PFS] = IA64_LOC_UC_REG (UNW_IA64_AR_PFS, sc_addr) [all...] |
Gregs.c | 214 return c->loc[IA64_REG_PRI_UNAT_MEM]; 363 ia64_loc_t loc, reg_loc, nat_loc; local 393 loc = c->loc[IA64_REG_IP]; 399 loc = c->loc[IA64_REG_R4 + (reg - (UNW_IA64_GR + 4))]; 403 loc = c->loc[IA64_REG_NAT4 + (reg - (UNW_IA64_NAT + 4))]; 404 reg_loc = c->loc[IA64_REG_R4 + (reg - (UNW_IA64_NAT + 4))]; 406 return access_nat (c, loc, reg_loc, nat_bitnr, valp, write) 565 ia64_loc_t loc; local [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
NumberFormatTestCases.txt | 95 loc= "en" 104 loc= "fr" 111 loc= "ar" 120 loc= "en" 122 loc= "fr" 124 loc= "ar"
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
NumberFormatTestCases.txt | 95 loc= "en" 104 loc= "fr" 111 loc= "ar" 120 loc= "en" 122 loc= "fr" 124 loc= "ar"
|
/external/protobuf/src/google/protobuf/util/internal/ |
mock_error_listener.h | 49 MOCK_METHOD3(InvalidName, void(const LocationTrackerInterface& loc, 52 MOCK_METHOD3(InvalidValue, void(const LocationTrackerInterface& loc, 54 MOCK_METHOD2(MissingField, void(const LocationTrackerInterface& loc,
|
/frameworks/base/location/tests/locationtests/src/android/location/ |
LocationTest.java | 180 Location loc = new Location(""); local 182 loc.setAltitude(1); 184 assertEquals(message, loc.getAltitude(), 1, 0); 186 assertTrue(message, loc.hasAltitude()); 188 loc.removeAltitude(); 190 assertFalse(message, loc.hasAltitude()); 192 assertEquals(message, loc.getAltitude(), 0, 0); 197 Location loc = new Location(""); local 199 loc.setSpeed(1); 201 assertEquals(message, loc.getSpeed(), 1, 0) 214 Location loc = new Location(""); local 234 Location loc = new Location("test"); local [all...] |
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/ |
ParseHelper.cpp | 183 void TParseContext::handlePragma(const TSourceLoc& loc, const TVector<TString>& tokens) 186 pragmaCallback(loc.line, tokens); 193 error(loc, "optimize pragma syntax is incorrect", "#pragma", ""); 198 error(loc, "\"(\" expected after 'optimize' keyword", "#pragma", ""); 207 error(loc, "\"on\" or \"off\" expected after '(' for 'optimize' pragma", "#pragma", ""); 212 error(loc, "\")\" expected to end 'optimize' pragma", "#pragma", ""); 217 error(loc, "debug pragma syntax is incorrect", "#pragma", ""); 222 error(loc, "\"(\" expected after 'debug' keyword", "#pragma", ""); 231 error(loc, "\"on\" or \"off\" expected after '(' for 'debug' pragma", "#pragma", ""); 236 error(loc, "\")\" expected to end 'debug' pragma", "#pragma", "") [all...] |
Versions.cpp | 92 // requireProfile(loc, 103 // profileRequires(loc, 326 void TParseVersions::requireProfile(const TSourceLoc& loc, int profileMask, const char* featureDesc) 329 error(loc, "not supported with this profile:", featureDesc, ProfileName(profile)); 365 void TParseVersions::profileRequires(const TSourceLoc& loc, int profileMask, int minVersion, int numExtensions, const char* const extensions[], const char* featureDesc) 374 infoSink.info.message(EPrefixWarning, ("extension " + TString(extensions[i]) + " is being used for " + featureDesc).c_str(), loc); 385 error(loc, "not supported for this version or the enabled extensions", featureDesc, ""); 390 void TParseVersions::profileRequires(const TSourceLoc& loc, int profileMask, int minVersion, const char* extension, const char* featureDesc) 392 profileRequires(loc, profileMask, minVersion, extension ? 1 : 0, &extension, featureDesc); 402 void TParseVersions::requireStage(const TSourceLoc& loc, EShLanguageMask languageMask, const char* featureDesc [all...] |
/external/libunwind/include/tdep-x86/ |
libunwind_i.h | 111 dwarf_getfp (struct dwarf_cursor *c, dwarf_loc_t loc, unw_fpreg_t *val) 113 if (!DWARF_GET_LOC (loc)) 115 *val = *(unw_fpreg_t *) DWARF_GET_LOC (loc); 120 dwarf_putfp (struct dwarf_cursor *c, dwarf_loc_t loc, unw_fpreg_t val) 122 if (!DWARF_GET_LOC (loc)) 124 *(unw_fpreg_t *) DWARF_GET_LOC (loc) = val; 129 dwarf_get (struct dwarf_cursor *c, dwarf_loc_t loc, unw_word_t *val) 131 if (!DWARF_GET_LOC (loc)) 133 return (*c->as->acc.access_mem) (c->as, DWARF_GET_LOC (loc), val, 138 dwarf_put (struct dwarf_cursor *c, dwarf_loc_t loc, unw_word_t val [all...] |
/build/kati/ |
rule.h | 22 #include "loc.h" 36 Loc cmd_loc() const { return Loc(loc.filename, cmd_lineno); } 47 Loc loc; member in class:Rule 52 ERROR_LOC(loc, "%s", msg.c_str()); 67 void ParseRule(Loc& loc, StringPiece line, char term,
|
/development/apps/CustomLocale/src/com/android/customlocale2/ |
ChangeLocale.java | 51 Locale loc = null; local 55 loc = new Locale(langCountry[0], langCountry[1]); 57 loc = new Locale(locale); 60 config.locale = loc;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
Location.java | 74 Location loc = (Location )obj; 75 return classID == loc.classID && methodID == loc.methodID 76 && index == loc.index;
|
/external/bison/src/ |
scan-gram.h | 35 # define GRAM_LEX_DECL int gram_lex (GRAM_STYPE *val, location *loc)
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/ |
IMETest.java | 22 Rectangle loc = new Rectangle(100, 100, 300, 300); local 30 jf.setBounds(loc); 34 loc.x += 50; 35 loc.y += 50;
|
/external/libcxx/include/support/win32/ |
locale_win32.h | 25 lconv *localeconv_l( locale_t loc ); 27 mbstate_t *__restrict ps, locale_t loc); 29 size_t len, mbstate_t *__restrict ps, locale_t loc ); 31 locale_t loc); 33 size_t n, mbstate_t *__restrict ps, locale_t loc); 35 size_t nms, size_t len, mbstate_t *__restrict ps, locale_t loc); 37 size_t nwc, size_t len, mbstate_t *__restrict ps, locale_t loc); 38 wint_t btowc_l( int c, locale_t loc ); 39 int wctob_l( wint_t c, locale_t loc ); 56 islower_l(int c, _locale_t loc) [all...] |
/external/libunwind/src/hppa/ |
init.h | 33 c->dwarf.loc[UNW_HPPA_IP] = DWARF_REG_LOC (&c->dwarf, UNW_HPPA_IP); 34 c->dwarf.loc[UNW_HPPA_SP] = DWARF_REG_LOC (&c->dwarf, UNW_HPPA_SP); 36 ret = dwarf_get (&c->dwarf, c->dwarf.loc[UNW_HPPA_IP], &c->dwarf.ip); 40 ret = dwarf_get (&c->dwarf, c->dwarf.loc[UNW_HPPA_SP], &c->dwarf.cfa);
|
/external/skia/samplecode/ |
OverView.cpp | 79 SkPoint loc = this->start(); variable 82 if (this->bounds(loc).intersects(crect)) { 88 this->next(&loc); 104 SkRect bounds(const SkPoint& loc) const { 105 return SkRect::MakeXYWH(loc.x(), loc.y() + fNameMetrics.fAscent, fNameW, fNameH); 112 void next(SkPoint* loc) const { 113 loc->fY += fNameH; 114 if (loc->fY > this->height() - fNameMetrics.fBottom) { 115 loc->fY = -fNameMetrics.fTop 166 SkPoint loc = this->start(); local [all...] |
/external/swiftshader/src/OpenGL/compiler/ |
DirectiveHandler.h | 35 virtual void handleError(const pp::SourceLocation& loc, 38 virtual void handlePragma(const pp::SourceLocation& loc, 42 virtual void handleExtension(const pp::SourceLocation& loc, 46 virtual void handleVersion(const pp::SourceLocation& loc,
|
/prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
locale_win32.h | 38 lconv *localeconv_l( locale_t loc ); 40 mbstate_t *__restrict ps, locale_t loc); 42 size_t len, mbstate_t *__restrict ps, locale_t loc ); 44 locale_t loc); 46 size_t n, mbstate_t *__restrict ps, locale_t loc); 48 size_t nms, size_t len, mbstate_t *__restrict ps, locale_t loc); 50 size_t nwc, size_t len, mbstate_t *__restrict ps, locale_t loc); 51 wint_t btowc_l( int c, locale_t loc ); 52 int wctob_l( wint_t c, locale_t loc ); 71 islower_l(int c, _locale_t loc) [all...] |
/prebuilts/ndk/r11/sources/android/support/src/musl-locale/ |
strncasecmp_l.c | 4 int strncasecmp_l(const char *l, const char *r, size_t n, locale_t loc)
|