Searched refs:loc2 (Results 1 - 25 of 34) sorted by relevance

12

/external/libcxx/test/std/localization/locales/locale.global.templates/
H A Dhas_facet.pass.cpp30 std::locale loc2(loc, new my_facet);
31 assert(std::has_facet<my_facet>(loc2));
/external/libunwind/tests/
H A Dia64-test-readonly-asm.S39 mov loc2 = gp
45 mov gp = loc2
H A Dia64-test-nat-asm.S68 .spillreg r4, loc2
69 mov loc2 = r4
83 mov r4 = loc2
118 CALL_NEXT(loc2)
144 .save pr, loc2
145 mov loc2 = pr // save predicates
167 mov pr = loc2, -1
183 .save ar.unat, loc2
184 mov loc2 = ar.unat
205 mov ar.unat = loc2 // restor
[all...]
/external/bison/examples/calc++/
H A Dlocation.hh141 operator== (const location& loc1, const location& loc2) argument
143 return loc1.begin == loc2.begin && loc1.end == loc2.end;
148 operator!= (const location& loc1, const location& loc2) argument
150 return !(loc1 == loc2);
/external/libcxx/test/std/localization/locales/locale/locale.cons/
H A Dlocale_facetptr.pass.cpp88 std::locale loc2(loc, new my_facet);
89 check(loc2);
90 assert((std::has_facet<my_facet>(loc2)));
91 const my_facet& f = std::use_facet<my_facet>(loc2);
100 std::locale loc2(loc, (std::ctype<char>*)0);
101 check(loc2);
102 assert(loc == loc2);
H A Dassign.pass.cpp76 std::locale loc2; local
77 loc2 = loc;
78 assert(loc == loc2);
80 check(loc2);
H A Dcopy.pass.cpp76 std::locale loc2 = loc; local
77 assert(loc == loc2);
79 check(loc2);
H A Dstring.pass.cpp78 std::locale loc2(std::string(LOCALE_ru_RU_UTF_8));
79 check(loc2);
80 assert(loc == loc2);
H A Dchar_pointer.pass.cpp78 std::locale loc2(LOCALE_ru_RU_UTF_8);
79 check(loc2);
80 assert(loc == loc2);
H A Ddefault.pass.cpp67 std::locale loc2; local
69 check(loc2);
71 assert(loc2 == std::locale(LOCALE_en_US_UTF_8));
H A Dlocale_char_pointer_cat.pass.cpp78 std::locale loc2(loc, LOCALE_en_US_UTF_8, std::locale::monetary);
79 check(loc2);
H A Dlocale_locale_cat.pass.cpp78 std::locale loc2(loc, std::locale(LOCALE_en_US_UTF_8), std::locale::monetary);
79 check(loc2);
H A Dlocale_string_cat.pass.cpp77 std::locale loc2(loc, std::string(LOCALE_en_US_UTF_8), std::locale::monetary);
78 check(loc2);
/external/libunwind/src/ia64/
H A Dsiglongjmp.S54 mov loc2 = r16 // value to return in r8
63 mov r8 = loc2
H A Dsigsetjmp.S49 mov loc2 = ar.bsp
61 st8 [in0] = loc2 // sigjmp_buf[JB_BSP] = bsp
/external/llvm/test/MC/Mips/
H A Dmips64eb-fixups.s9 $diff1 = ($loc2)-($loc0)
21 $loc2:
/external/libcxx/test/std/localization/locales/locale/locale.statics/
H A Dglobal.pass.cpp60 std::locale loc2; local
61 check(loc2);
62 assert(loc2 == std::locale(LOCALE_en_US_UTF_8));
/external/libcxx/test/std/localization/locales/locale/locale.members/
H A Dcombine.pass.cpp69 std::locale loc2(loc, new my_facet);
70 std::locale loc3 = loc.combine<my_facet>(loc2);
82 std::locale loc2; local
85 std::locale loc3 = loc.combine<my_facet>(loc2);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DLocaleBuilderTest.java208 ULocale loc2 = bld.build();
209 if (!loc.equals(loc2)) {
210 errln("FAIL: Locale loc2 " + loc2 + " was returned by the builder. Expected " + loc);
/external/bison/data/
H A Dlocation.cc261 operator== (const location& loc1, const location& loc2)
263 return loc1.begin == loc2.begin && loc1.end == loc2.end;
268 operator!= (const location& loc1, const location& loc2)
270 return !(loc1 == loc2);
/external/clang/tools/libclang/
H A DCXSourceLocation.cpp48 unsigned clang_equalLocations(CXSourceLocation loc1, CXSourceLocation loc2) { argument
49 return (loc1.ptr_data[0] == loc2.ptr_data[0] &&
50 loc1.ptr_data[1] == loc2.ptr_data[1] &&
51 loc1.int_data == loc2.int_data);
/external/clang/unittests/Basic/
H A DSourceManagerTest.cpp226 SourceLocation loc2 = SourceMgr.translateLineCol(mainFileID, 4, 4); local
231 loc2 = SourceMgr.getMacroArgExpandedLocation(loc2);
237 EXPECT_TRUE(SourceMgr.isMacroArgExpansion(loc2));
239 EXPECT_EQ(loc2, toks[1].getLocation());
/external/v8/tools/push-to-trunk/
H A Dgit_recipes.py231 def GitDiff(self, loc1, loc2, **kwargs):
232 return self.Git(MakeArgs(["diff", loc1, loc2]), **kwargs)
/external/icu/icu4c/source/test/intltest/
H A Dloctest.cpp1778 Locale loc2("en-US");
1779 if (strcmp("en_US", loc2.getBaseName())) {
1780 errln("%s:%d Expected \"en_US\", got \"%s\"", __FILE__, __LINE__, loc2.getBaseName());
1782 loc2.setKeywordValue("key", "value", status);
1783 if (strcmp("en_US@key=value", loc2.getName())) {
1784 errln("%s:%d Expected \"en_US@key=value\", got \"%s\"", __FILE__, __LINE__, loc2.getName());
1786 if (strcmp("en_US", loc2.getBaseName())) {
1787 errln("%s:%d Expected \"en_US\", got \"%s\"", __FILE__, __LINE__, loc2.getBaseName());
2194 Locale loc2("en","","FOUR");
2195 if (0 != strcmp(loc2
[all...]
H A Dapicoll.cpp2250 Locale loc2 = Locale::getFrance(); local
2251 col1.setLocales(loc1, loc2, loc2); // default implementation has no effect
2254 col1.getDisplayName(loc1, loc2, displayName); // de_DE collator in fr_FR locale

Completed in 1298 milliseconds

12