Searched refs:loc2 (Results 1 - 25 of 43) sorted by path

12

/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/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/chromium_org/extensions/common/
H A Dmanifest.cc96 Location loc1, Location loc2) {
97 if (loc1 == loc2)
101 int loc2_rank = GetLocationRank(loc2);
108 return (loc1_rank > loc2_rank ? loc1 : loc2 );
95 GetHigherPriorityLocation( Location loc1, Location loc2) argument
H A Dmanifest.h75 static Location GetHigherPriorityLocation(Location loc1, Location loc2);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/icu/source/i18n/
H A Dcalendar.cpp512 Locale loc2; local
513 lkey.currentLocale(loc2);
514 fprintf(stderr, "CalSvc:handleDefault for currentLoc %s, canloc %s\n", (const char*)loc.getName(), (const char*)loc2.getName());
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dapicoll.cpp2184 Locale loc2 = Locale::getFrance(); local
2185 col1.setLocales(loc1, loc2, loc2); // default implementation has no effect
2188 col1.getDisplayName(loc1, loc2, displayName); // de_DE collator in fr_FR locale
H A Dcaltest.cpp2170 Locale loc2("en");
2171 cal = Calendar::createInstance(loc2, status);
H A Dloctest.cpp2071 Locale loc2("en","","FOUR");
2072 if (0 != strcmp(loc2.getVariant(), "FOUR")) {
2073 errln("FAIL: en__FOUR didn't get parsed correctly - name is %s - expected %s got %s", loc2.getName(), "FOUR", loc2.getVariant());
/external/chromium_org/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/clang/include/clang-c/
H A DIndex.h393 CXSourceLocation 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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/fio/
H A Doptions.c931 char *loc1, *loc2; local
934 loc2 = strstr(input, "0X");
935 if (loc1 || loc2)
951 j = loc2 - input + 2;
/external/icu/icu4c/source/i18n/
H A Dcalendar.cpp512 Locale loc2; local
513 lkey.currentLocale(loc2);
514 fprintf(stderr, "CalSvc:handleDefault for currentLoc %s, canloc %s\n", (const char*)loc.getName(), (const char*)loc2.getName());
/external/icu/icu4c/source/test/intltest/
H A Dapicoll.cpp2265 Locale loc2 = Locale::getFrance(); local
2266 col1.setLocales(loc1, loc2, loc2); // default implementation has no effect
2269 col1.getDisplayName(loc1, loc2, displayName); // de_DE collator in fr_FR locale
H A Dcaltest.cpp2191 Locale loc2("en");
2192 cal = Calendar::createInstance(loc2, status);
H A Dloctest.cpp2071 Locale loc2("en","","FOUR");
2072 if (0 != strcmp(loc2.getVariant(), "FOUR")) {
2073 errln("FAIL: en__FOUR didn't get parsed correctly - name is %s - expected %s got %s", loc2.getName(), "FOUR", loc2.getVariant());
/external/libcxx/test/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/libcxx/test/localization/locales/locale/locale.cons/
H A Dassign.pass.cpp73 std::locale loc2; local
74 loc2 = loc;
75 assert(loc == loc2);
77 check(loc2);
H A Dchar_pointer.pass.cpp74 std::locale loc2(LOCALE_ru_RU_UTF_8);
75 check(loc2);
76 assert(loc == loc2);
H A Dcopy.pass.cpp73 std::locale loc2 = loc; local
74 assert(loc == loc2);
76 check(loc2);
H A Ddefault.pass.cpp81 std::locale loc2; local
83 check(loc2);
85 assert(loc2 == std::locale(LOCALE_en_US_UTF_8));

Completed in 5187 milliseconds

12