HomeSort by relevance Sort by last modified time
    Searched refs:loc2 (Results 1 - 25 of 38) sorted by null

1 2

  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale.global.templates/
has_facet.pass.cpp 30 std::locale loc2(loc, new my_facet);
31 assert(std::has_facet<my_facet>(loc2));
  /external/stlport/test/unit/
locale_test.cpp 195 locale loc2( loc, new my_facet() );
196 CPPUNIT_ASSERT( has_facet<my_facet>( loc2 ) );
197 os.imbue( loc2 );
264 locale loc1(locale::classic()), loc2;
278 loc2 = loc;
284 ostr << "combining '" << loc2.name() << "' money facets with '" << loc1.name() << "'";
289 //We check that resulting locale has correctly acquire loc2 facets.
290 locale loc = loc1.combine<moneypunct<char, true> >(loc2);
291 loc = loc.combine<moneypunct<char, false> >(loc2);
292 loc = loc.combine<money_put<char> >(loc2);
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
locale_test.cpp 195 locale loc2( loc, new my_facet() );
196 CPPUNIT_ASSERT( has_facet<my_facet>( loc2 ) );
197 os.imbue( loc2 );
264 locale loc1(locale::classic()), loc2;
278 loc2 = loc;
284 ostr << "combining '" << loc2.name() << "' money facets with '" << loc1.name() << "'";
289 //We check that resulting locale has correctly acquire loc2 facets.
290 locale loc = loc1.combine<moneypunct<char, true> >(loc2);
291 loc = loc.combine<moneypunct<char, false> >(loc2);
292 loc = loc.combine<money_put<char> >(loc2);
    [all...]
  /ndk/tests/device/test-stlport/unit/
locale_test.cpp 195 locale loc2( loc, new my_facet() );
196 CPPUNIT_ASSERT( has_facet<my_facet>( loc2 ) );
197 os.imbue( loc2 );
264 locale loc1(locale::classic()), loc2;
278 loc2 = loc;
284 ostr << "combining '" << loc2.name() << "' money facets with '" << loc1.name() << "'";
289 //We check that resulting locale has correctly acquire loc2 facets.
290 locale loc = loc1.combine<moneypunct<char, true> >(loc2);
291 loc = loc.combine<moneypunct<char, false> >(loc2);
292 loc = loc.combine<money_put<char> >(loc2);
    [all...]
  /external/bison/examples/calc++/
location.hh 141 operator== (const location& loc1, const location& loc2)
143 return loc1.begin == loc2.begin && loc1.end == loc2.end;
148 operator!= (const location& loc1, const location& loc2)
150 return !(loc1 == loc2);
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale/locale.cons/
locale_facetptr.pass.cpp 85 std::locale loc2(loc, new my_facet);
86 check(loc2);
87 assert((std::has_facet<my_facet>(loc2)));
88 const my_facet& f = std::use_facet<my_facet>(loc2);
97 std::locale loc2(loc, (std::ctype<char>*)0);
98 check(loc2);
99 assert(loc == loc2);
assign.pass.cpp 73 std::locale loc2; local
74 loc2 = loc;
75 assert(loc == loc2);
77 check(loc2);
copy.pass.cpp 73 std::locale loc2 = loc; local
74 assert(loc == loc2);
76 check(loc2);
char_pointer.pass.cpp 74 std::locale loc2(LOCALE_ru_RU_UTF_8);
75 check(loc2);
76 assert(loc == loc2);
default.pass.cpp 81 std::locale loc2; local
83 check(loc2);
85 assert(loc2 == std::locale(LOCALE_en_US_UTF_8));
string.pass.cpp 74 std::locale loc2(std::string(LOCALE_ru_RU_UTF_8));
75 check(loc2);
76 assert(loc == loc2);
locale_char_pointer_cat.pass.cpp 74 std::locale loc2(loc, LOCALE_en_US_UTF_8, std::locale::monetary);
75 check(loc2);
locale_locale_cat.pass.cpp 74 std::locale loc2(loc, std::locale(LOCALE_en_US_UTF_8), std::locale::monetary);
75 check(loc2);
locale_string_cat.pass.cpp 74 std::locale loc2(loc, std::string(LOCALE_en_US_UTF_8), std::locale::monetary);
75 check(loc2);
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale/locale.statics/
global.pass.cpp 60 std::locale loc2; local
61 check(loc2);
62 assert(loc2 == std::locale(LOCALE_en_US_UTF_8));
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale/locale.members/
combine.pass.cpp 82 std::locale loc2(loc, new my_facet);
83 std::locale loc3 = loc.combine<my_facet>(loc2);
95 std::locale loc2; local
98 std::locale loc3 = loc.combine<my_facet>(loc2);
  /frameworks/base/location/tests/locationtests/src/android/location/
LocationManagerTest.java 96 String loc2 = Location.convert(-80.085, Location.FORMAT_DEGREES); local
97 Log.i(LOG_TAG, "Input = " + (-80.085) + ", output = " + loc2);
98 assertEquals("-80.085", loc2);
  /external/oprofile/module/ia64/
IA64syscallstub.h 92 mov loc2=r15; /* preserve it */ \
109 mov r15=loc2; \
175 mov loc2=r15; /* preserve it */ \
191 mov r15=loc2; \
oprofile_stubs.S 62 mov loc2=gp
97 mov gp=loc2
  /external/bison/data/
location.cc 261 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/unittests/Basic/
SourceManagerTest.cpp 217 SourceLocation loc2 = SourceMgr.translateLineCol(mainFileID, 4, 4); local
222 loc2 = SourceMgr.getMacroArgExpandedLocation(loc2);
228 EXPECT_TRUE(SourceMgr.isMacroArgExpansion(loc2));
230 EXPECT_EQ(loc2, toks[1].getLocation());
  /external/clang/tools/libclang/
CXSourceLocation.cpp 48 unsigned clang_equalLocations(CXSourceLocation loc1, CXSourceLocation loc2) {
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);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
regexp.h 87 extern char *loc2;
208 first character matched and `loc2' points to the next unmatched
214 in EXPBUF. If the match is successful `loc2' will contain the
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
regexp.h 87 extern char *loc2;
208 first character matched and `loc2' points to the next unmatched
214 in EXPBUF. If the match is successful `loc2' will contain the
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
regexp.h 87 extern char *loc2;
208 first character matched and `loc2' points to the next unmatched
214 in EXPBUF. If the match is successful `loc2' will contain the

Completed in 1553 milliseconds

1 2