f 65 ash/wm/window_animations.cc int64 Round64(float f) { f 66 ash/wm/window_animations.cc return static_cast<int64>(f + 0.5f); f 214 base/android/java/src/org/chromium/base/CommandLine.java File f = new File(fileName); f 215 base/android/java/src/org/chromium/base/CommandLine.java long fileLength = f.length(); f 229 base/android/java/src/org/chromium/base/CommandLine.java reader = new InputStreamReader(new FileInputStream(f), "UTF-8"); f 174 base/bind_unittest.cc int Sum(int a, int b, int c, int d, int e, int f) { f 175 base/bind_unittest.cc return a + b + c + d + e + f; f 398 base/callback.h PolymorphicInvoke f = f 401 base/callback.h return f(bind_state_.get()); f 438 base/callback.h PolymorphicInvoke f = f 441 base/callback.h return f(bind_state_.get(), internal::CallbackForward(a1)); f 480 base/callback.h PolymorphicInvoke f = f 483 base/callback.h return f(bind_state_.get(), internal::CallbackForward(a1), f 525 base/callback.h PolymorphicInvoke f = f 528 base/callback.h return f(bind_state_.get(), internal::CallbackForward(a1), f 573 base/callback.h PolymorphicInvoke f = f 576 base/callback.h return f(bind_state_.get(), internal::CallbackForward(a1), f 625 base/callback.h PolymorphicInvoke f = f 628 base/callback.h return f(bind_state_.get(), internal::CallbackForward(a1), f 680 base/callback.h PolymorphicInvoke f = f 683 base/callback.h return f(bind_state_.get(), internal::CallbackForward(a1), f 738 base/callback.h PolymorphicInvoke f = f 741 base/callback.h return f(bind_state_.get(), internal::CallbackForward(a1), f 90 base/callback_list_unittest.cc void AddSixParam(int a, int b, int c, int d, int e , int f) { f 91 base/callback_list_unittest.cc value_ = a + b + c + d + e + f; f 464 base/containers/small_map.h void insert(InputIterator f, InputIterator l) { f 465 base/containers/small_map.h while (f != l) { f 466 base/containers/small_map.h insert(*f); f 467 base/containers/small_map.h ++f; f 460 base/files/file_path.h size_t operator()(const base::FilePath& f) const { f 461 base/files/file_path.h return hash<base::FilePath::StringType>()(f.value()); f 467 base/files/file_path.h inline size_t hash_value(const base::FilePath& f) { f 468 base/files/file_path.h return hash_value(f.value()); f 136 base/macros.h inline To implicit_cast(From const &f) { f 137 base/macros.h return f; f 58 base/md5.cc #define MD5STEP(f, w, x, y, z, data, s) \ f 59 base/md5.cc ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x ) f 181 base/sha1_portable.cc uint32 TEMP = S(5, A) + f(t, B, C, D) + E + W[t] + K(t); f 149 base/strings/string_piece_unittest.cc BasicStringPiece<TypeParam> f(temp); f 154 base/strings/string_piece_unittest.cc ASSERT_EQ(f[3], static_cast<typename TypeParam::value_type>('\0')); f 155 base/strings/string_piece_unittest.cc ASSERT_EQ(f[5], static_cast<typename TypeParam::value_type>('5')); f 176 base/strings/string_piece_unittest.cc ASSERT_EQ(f.size(), 7U); f 213 base/strings/string_piece_unittest.cc Piece f(temp); f 269 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find('\0'), 3U); f 270 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find('3'), 2U); f 271 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find('5'), 5U); f 318 base/strings/string_piece_unittest.cc ASSERT_EQ(f.rfind('\0'), 3U); f 319 base/strings/string_piece_unittest.cc ASSERT_EQ(f.rfind('\0', 12), 3U); f 320 base/strings/string_piece_unittest.cc ASSERT_EQ(f.rfind('3'), 2U); f 321 base/strings/string_piece_unittest.cc ASSERT_EQ(f.rfind('5'), 5U); f 343 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find_first_of(f), Piece::npos); f 344 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_first_of(a), Piece::npos); f 359 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_first_not_of(a), 0U); f 360 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find_first_not_of(f), 0U); f 377 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_first_not_of('\0'), 0U); f 378 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_first_not_of('\0', 3), 4U); f 379 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_first_not_of('\0', 2), 2U); f 393 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_of(i), 6U); f 402 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_of(i, 5), 5U); f 403 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_of(i, 6), 6U); f 404 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_of(a, 4), Piece::npos); f 406 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_of(d), Piece::npos); f 407 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_of(e), Piece::npos); f 408 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_of(d, 4), Piece::npos); f 409 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_of(e, 4), Piece::npos); f 414 base/strings/string_piece_unittest.cc ASSERT_EQ(d.find_last_of(f), Piece::npos); f 415 base/strings/string_piece_unittest.cc ASSERT_EQ(e.find_last_of(f), Piece::npos); f 420 base/strings/string_piece_unittest.cc ASSERT_EQ(d.find_last_of(f, 4), Piece::npos); f 421 base/strings/string_piece_unittest.cc ASSERT_EQ(e.find_last_of(f, 4), Piece::npos); f 427 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_not_of(i), 4U); f 432 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_not_of(d), f.size()-1); f 433 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_not_of(e), f.size()-1); f 434 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_not_of(d, 4), 4U); f 435 base/strings/string_piece_unittest.cc ASSERT_EQ(f.find_last_not_of(e, 4), 4U); f 440 base/strings/string_piece_unittest.cc ASSERT_EQ(d.find_last_not_of(f), Piece::npos); f 441 base/strings/string_piece_unittest.cc ASSERT_EQ(e.find_last_not_of(f), Piece::npos); f 446 base/strings/string_piece_unittest.cc ASSERT_EQ(d.find_last_not_of(f, 4), Piece::npos); f 447 base/strings/string_piece_unittest.cc ASSERT_EQ(e.find_last_not_of(f, 4), Piece::npos); f 650 base/strings/string_piece_unittest.cc StringPiece16 f(fifth); f 652 base/strings/string_piece_unittest.cc ASSERT_EQ(f[3], '\0'); f 653 base/strings/string_piece_unittest.cc ASSERT_EQ(f[5], static_cast<char16>(0xdffe)); f 655 base/strings/string_piece_unittest.cc ASSERT_EQ(f.size(), 6U); f 61 base/test/android/javatests/src/org/chromium/base/test/util/TestFileUtil.java File f = new File(fileName); f 62 base/test/android/javatests/src/org/chromium/base/test/util/TestFileUtil.java if (f.length() > sizeLimit) { f 63 base/test/android/javatests/src/org/chromium/base/test/util/TestFileUtil.java throw new IOException("File " + fileName + " length " + f.length() + f 66 base/test/android/javatests/src/org/chromium/base/test/util/TestFileUtil.java char[] buffer = new char[(int) f.length()]; f 67 base/test/android/javatests/src/org/chromium/base/test/util/TestFileUtil.java reader = new InputStreamReader(new FileInputStream(f), "UTF-8"); f 92 base/timer/timer_unittest.cc OneShotTimerTester f(&did_run); f 93 base/timer/timer_unittest.cc f.Start(); f 127 base/timer/timer_unittest.cc OneShotSelfDeletingTimerTester f(&did_run); f 128 base/timer/timer_unittest.cc f.Start(); f 140 base/timer/timer_unittest.cc RepeatingTimerTester f(&did_run, delay); f 141 base/timer/timer_unittest.cc f.Start(); f 188 base/tuple.h typename TupleTraits<F>::ParamType f) f 189 base/tuple.h : a(a), b(b), c(c), d(d), e(e), f(f) { f 197 base/tuple.h F f; f 217 base/tuple.h typename TupleTraits<F>::ParamType f, f 219 base/tuple.h : a(a), b(b), c(c), d(d), e(e), f(f), g(g) { f 227 base/tuple.h F f; f 250 base/tuple.h typename TupleTraits<F>::ParamType f, f 253 base/tuple.h : a(a), b(b), c(c), d(d), e(e), f(f), g(g), h(h) { f 261 base/tuple.h F f; f 457 base/tuple.h const D& d, const E& e, const F& f) { f 458 base/tuple.h return Tuple6<A, B, C, D, E, F>(a, b, c, d, e, f); f 463 base/tuple.h const D& d, const E& e, const F& f, f 465 base/tuple.h return Tuple7<A, B, C, D, E, F, G>(a, b, c, d, e, f, g); f 472 base/tuple.h const E& e, const F& f, f 474 base/tuple.h return Tuple8<A, B, C, D, E, F, G, H>(a, b, c, d, e, f, g, h); f 507 base/tuple.h F& f) { f 508 base/tuple.h return Tuple6<A&, B&, C&, D&, E&, F&>(a, b, c, d, e, f); f 513 base/tuple.h E& e, F& f, G& g) { f 514 base/tuple.h return Tuple7<A&, B&, C&, D&, E&, F&, G&>(a, b, c, d, e, f, g); f 520 base/tuple.h D& d, E& e, F& f, f 522 base/tuple.h return Tuple8<A&, B&, C&, D&, E&, F&, G&, H&>(a, b, c, d, e, f, g, h); f 595 base/tuple.h base::internal::UnwrapTraits<F>::Unwrap(arg.f)); f 607 base/tuple.h base::internal::UnwrapTraits<F>::Unwrap(arg.f), f 620 base/tuple.h base::internal::UnwrapTraits<F>::Unwrap(arg.f), f 682 base/tuple.h base::internal::UnwrapTraits<F>::Unwrap(arg.f)); f 694 base/tuple.h base::internal::UnwrapTraits<F>::Unwrap(arg.f), f 707 base/tuple.h base::internal::UnwrapTraits<F>::Unwrap(arg.f), f 777 base/tuple.h base::internal::UnwrapTraits<F>::Unwrap(arg.f)); f 863 base/tuple.h base::internal::UnwrapTraits<InF>::Unwrap(in.f), f 956 base/tuple.h base::internal::UnwrapTraits<InF>::Unwrap(in.f), f 1056 base/tuple.h base::internal::UnwrapTraits<InF>::Unwrap(in.f), f 1166 base/tuple.h base::internal::UnwrapTraits<InF>::Unwrap(in.f), f 1283 base/tuple.h base::internal::UnwrapTraits<InF>::Unwrap(in.f), f 8 build/android/tests/symbolize/b.cc void Baz(float f); f 13 build/android/tests/symbolize/b.cc void B::Baz(float f) {} f 84 cc/base/math_util.h static float Round(float f) { f 85 cc/base/math_util.h return (f > 0.f) ? std::floor(f + 0.5f) : std::ceil(f - 0.5f); f 223 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_6_NEW(Type, a, b, c, d, e, f) \ f 227 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e, f); \ f 231 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_6_ALL(Type, a, b, c, d, e, f) \ f 236 cc/quads/draw_quad_unittest.cc quad_visible_rect, needs_blending, a, b, c, d, e, f); \ f 240 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_7_NEW(Type, a, b, c, d, e, f, g) \ f 244 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e, f, g); \ f 248 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_7_ALL(Type, a, b, c, d, e, f, g) \ f 254 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g); \ f 258 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_7_NEW_1(Type, a, b, c, d, e, f, g, copy_a) \ f 262 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e, f, g); \ f 266 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_7_ALL_1(Type, a, b, c, d, e, f, g, copy_a) \ f 272 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g); \ f 276 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_8_NEW(Type, a, b, c, d, e, f, g, h) \ f 280 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e, f, g, h); \ f 284 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_8_ALL(Type, a, b, c, d, e, f, g, h) \ f 290 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g, h); \ f 294 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_8_NEW_1(Type, a, b, c, d, e, f, g, h, copy_a) \ f 298 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e, f, g, h); \ f 302 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_8_ALL_1(Type, a, b, c, d, e, f, g, h, copy_a) \ f 308 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g, h); \ f 312 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_9_NEW(Type, a, b, c, d, e, f, g, h, i) \ f 317 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g, h, i); \ f 321 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_9_ALL(Type, a, b, c, d, e, f, g, h, i) \ f 327 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g, h, i); \ f 1700 chrome/browser/history/history_backend.cc for (std::map<chrome::IconType, FaviconBitmap>::const_iterator f = f 1701 chrome/browser/history/history_backend.cc largest_favicon_bitmaps.begin(); f != largest_favicon_bitmaps.end(); f 1702 chrome/browser/history/history_backend.cc ++f) { f 1703 chrome/browser/history/history_backend.cc if (f->first & *t && f 1705 chrome/browser/history/history_backend.cc (largest_icon.pixel_size.height() < f->second.pixel_size.height() && f 1706 chrome/browser/history/history_backend.cc largest_icon.pixel_size.width() < f->second.pixel_size.width()))) { f 1707 chrome/browser/history/history_backend.cc largest_icon = f->second; f 47 chrome/browser/history/visit_filter_unittest.cc VisitFilter f; f 48 chrome/browser/history/visit_filter_unittest.cc f.set_max_results(21U); f 49 chrome/browser/history/visit_filter_unittest.cc f.SetFilterTime(t); f 50 chrome/browser/history/visit_filter_unittest.cc f.SetFilterWidth(two_hours); f 51 chrome/browser/history/visit_filter_unittest.cc EXPECT_EQ(21U, f.times().size()); f 52 chrome/browser/history/visit_filter_unittest.cc for (size_t i = 0; i < f.times().size(); ++i) { f 55 chrome/browser/history/visit_filter_unittest.cc EXPECT_EQ(t_interval - two_hours, f.times()[i].first) << f 57 chrome/browser/history/visit_filter_unittest.cc EXPECT_EQ(t_interval + two_hours, f.times()[i].second) << f 62 chrome/browser/history/visit_filter_unittest.cc f.SetDayOfTheWeekFilter(et.day_of_week); f 64 chrome/browser/history/visit_filter_unittest.cc ASSERT_EQ(3U, f.times().size()); f 65 chrome/browser/history/visit_filter_unittest.cc for (size_t i = 1; i < f.times().size(); ++i) { f 68 chrome/browser/history/visit_filter_unittest.cc EXPECT_EQ(f.times()[i].first + base::TimeDelta::FromDays(7), f 69 chrome/browser/history/visit_filter_unittest.cc f.times()[i - 1].first) << f 71 chrome/browser/history/visit_filter_unittest.cc EXPECT_EQ(f.times()[i].second + base::TimeDelta::FromDays(7), f 72 chrome/browser/history/visit_filter_unittest.cc f.times()[i - 1].second) << f 75 chrome/browser/history/visit_filter_unittest.cc f.times()[i].second - f.times()[i].first) << f 99 chrome/browser/safe_browsing/download_protection_service.cc MaliciousExtensionType GetExtensionType(const base::FilePath& f) { f 100 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".exe"))) return EXTENSION_EXE; f 101 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".msi"))) return EXTENSION_MSI; f 102 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".cab"))) return EXTENSION_CAB; f 103 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".sys"))) return EXTENSION_SYS; f 104 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".scr"))) return EXTENSION_SCR; f 105 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".drv"))) return EXTENSION_DRV; f 106 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".bat"))) return EXTENSION_BAT; f 107 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".zip"))) return EXTENSION_ZIP; f 108 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".rar"))) return EXTENSION_RAR; f 109 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".dll"))) return EXTENSION_DLL; f 110 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".pif"))) return EXTENSION_PIF; f 111 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".com"))) return EXTENSION_COM; f 112 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".jar"))) return EXTENSION_JAR; f 113 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".class"))) return EXTENSION_CLASS; f 114 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".pdf"))) return EXTENSION_PDF; f 115 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".vb"))) return EXTENSION_VB; f 116 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".reg"))) return EXTENSION_REG; f 117 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".grp"))) return EXTENSION_GRP; f 118 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".crx"))) return EXTENSION_CRX; f 119 chrome/browser/safe_browsing/download_protection_service.cc if (f.MatchesExtension(FILE_PATH_LITERAL(".apk"))) return EXTENSION_APK; f 584 chrome/browser/sync/glue/bookmark_model_associator.cc FolderInfo(const BookmarkNode* f, const BookmarkNode* p, int64 id) f 585 chrome/browser/sync/glue/bookmark_model_associator.cc : folder(f), parent(p), sync_id(id) {} f 43 chrome/browser/sync/glue/extensions_activity_monitor.cc const extensions::BookmarksFunction* f = f 45 chrome/browser/sync/glue/extensions_activity_monitor.cc if (f->name() == "bookmarks.update" || f 46 chrome/browser/sync/glue/extensions_activity_monitor.cc f->name() == "bookmarks.move" || f 47 chrome/browser/sync/glue/extensions_activity_monitor.cc f->name() == "bookmarks.create" || f 48 chrome/browser/sync/glue/extensions_activity_monitor.cc f->name() == "bookmarks.removeTree" || f 49 chrome/browser/sync/glue/extensions_activity_monitor.cc f->name() == "bookmarks.remove") { f 89 chrome/browser/task_manager/task_manager.cc bool (TaskManagerModel::*f)(int, T*) const, f 94 chrome/browser/task_manager/task_manager.cc bool value1_valid = (model->*f)(row1, &value1); f 95 chrome/browser/task_manager/task_manager.cc bool value2_valid = (model->*f)(row2, &value2); f 138 chrome/browser/ui/views/autofill/expanding_textfield.cc void (BaseType::* f)(Param), Param p) const { f 142 chrome/browser/ui/views/autofill/expanding_textfield.cc base::Bind(f, base::Unretained(*iter), p).Run(); f 76 chrome/browser/ui/views/autofill/expanding_textfield.h void ForEachTextfield(void (BaseType::* f)(Param), Param p) const; f 82 chrome/common/chrome_paths_win.cc GetKnownFolderPath f = reinterpret_cast<GetKnownFolderPath>( f 85 chrome/common/chrome_paths_win.cc if (f && SUCCEEDED(f(FOLDERID_Downloads, 0, NULL, &path_buf))) { f 24 chrome/installer/gcapi/gcapi_omaha_experiment.cc base::Time f = base::Time::FromUTCExploded(february_third_2003_exploded); f 25 chrome/installer/gcapi/gcapi_omaha_experiment.cc base::TimeDelta delta = current_time - f; f 78 chrome/installer/mac/third_party/bsdiff/goobspatch.c FILE *f; f 94 chrome/installer/mac/third_party/bsdiff/goobspatch.c static xzfile *xzdopen(FILE *f, lzma_ret *err) f 106 chrome/installer/mac/third_party/bsdiff/goobspatch.c xzf->f = f; f 149 chrome/installer/mac/third_party/bsdiff/goobspatch.c if (fclose(xzf->f) != 0) f 176 chrome/installer/mac/third_party/bsdiff/goobspatch.c xzf->f); f 177 chrome/installer/mac/third_party/bsdiff/goobspatch.c if (ferror(xzf->f)) { f 182 chrome/installer/mac/third_party/bsdiff/goobspatch.c } else if (feof(xzf->f)) { f 239 chrome/installer/mac/third_party/bsdiff/goobspatch.c FILE *f; /* method = 1, 2 */ f 265 chrome/installer/mac/third_party/bsdiff/goobspatch.c if ((cf->f = fopen(path, "rb")) == NULL) f 267 chrome/installer/mac/third_party/bsdiff/goobspatch.c if ((fseeko(cf->f, off, SEEK_SET)) != 0) f 270 chrome/installer/mac/third_party/bsdiff/goobspatch.c if ((cf->u.bz2 = BZ2_bzReadOpen(&bz2_err, cf->f, 0, 0, f 274 chrome/installer/mac/third_party/bsdiff/goobspatch.c if ((cf->u.xz = xzdopen(cf->f, &lzma_err)) == NULL) f 278 chrome/installer/mac/third_party/bsdiff/goobspatch.c cf->f = NULL; f 308 chrome/installer/mac/third_party/bsdiff/goobspatch.c if (fclose(cf->f) != 0) f 328 chrome/installer/mac/third_party/bsdiff/goobspatch.c if ((nread = fread(buf, 1, len, cf->f)) != len) { f 329 chrome/installer/mac/third_party/bsdiff/goobspatch.c if (!ferror(cf->f)) f 368 chrome/installer/mac/third_party/bsdiff/goobspatch.c FILE * f; f 385 chrome/installer/mac/third_party/bsdiff/goobspatch.c if ((f = fopen(argv[3], "rb")) == NULL) f 412 chrome/installer/mac/third_party/bsdiff/goobspatch.c if (fread(header, 1, sizeof(header), f) < sizeof(header)) { f 413 chrome/installer/mac/third_party/bsdiff/goobspatch.c if (feof(f)) f 433 chrome/installer/mac/third_party/bsdiff/goobspatch.c if (fseeko(f, 0, SEEK_END) != 0 || (patchsize = ftello(f)) < 0) f 443 chrome/installer/mac/third_party/bsdiff/goobspatch.c if (fclose(f)) f 119 chrome/installer/mini_installer/mini_string.cc const wchar_t* f = find; f 121 chrome/installer/mini_installer/mini_string.cc while (*s && *f && EqualASCIICharI(*s, *f)) f 122 chrome/installer/mini_installer/mini_string.cc ++s, ++f; f 124 chrome/installer/mini_installer/mini_string.cc if (!*f) f 163 chrome/installer/util/lzma_util.cc CSzFileItem *f = db.db.Files + i; f 189 chrome/installer/util/lzma_util.cc if (f->IsDir) { f 214 chrome/installer/util/lzma_util.cc if (f->MTimeDefined) { f 216 chrome/installer/util/lzma_util.cc (const FILETIME *)&(f->MTime))) { f 128 components/autofill/content/renderer/password_autofill_agent.cc for (blink::WebFrame* f = main_frame; f; f = f->traverseNext(false)) { f 129 components/autofill/content/renderer/password_autofill_agent.cc blink::WebDocument doc = f->document(); f 143 components/autofill/content/renderer/password_autofill_agent.cc GURL full_action(f->document().completeURL(fe.action())); f 62 components/autofill/core/browser/webdata/autofill_table.cc int Round(float f) { f 63 components/autofill/core/browser/webdata/autofill_table.cc DCHECK_GE(f, 0.f); f 64 components/autofill/core/browser/webdata/autofill_table.cc return base::checked_cast<int>(std::floor(f + 0.5f)); f 406 content/browser/indexed_db/indexed_db_browsertest.cc base::PlatformFile f = base::CreatePlatformFile( f 411 content/browser/indexed_db/indexed_db_browsertest.cc if (f) { f 414 content/browser/indexed_db/indexed_db_browsertest.cc base::TruncatePlatformFile(f, size); f 415 content/browser/indexed_db/indexed_db_browsertest.cc if (!base::ClosePlatformFile(f)) f 326 content/browser/renderer_host/java/java_bound_object.cc result.f = is_double ? static_cast<jfloat>(NPVARIANT_TO_DOUBLE(variant)) : f 535 content/browser/renderer_host/java/java_bound_object.cc &value.f); f 140 content/child/browser_font_resource_trusted.cc #define PP_FAMILY_TO_WEB_FAMILY(f) \ f 141 content/child/browser_font_resource_trusted.cc static_cast<WebFontDescription::GenericFamily>(f + 1) f 107 content/common/gpu/client/gl_helper_benchmark.cc FILE* f = base::OpenFile(filename, "wb"); f 108 content/common/gpu/client/gl_helper_benchmark.cc ASSERT_TRUE(f); f 109 content/common/gpu/client/gl_helper_benchmark.cc ASSERT_EQ(fwrite(&*compressed.begin(), 1, compressed.size(), f), f 111 content/common/gpu/client/gl_helper_benchmark.cc base::CloseFile(f); f 1169 content/common/gpu/media/video_decode_accelerator_unittest.cc << ", " << t.f << ", " << t.g; f 1198 content/common/gpu/media/video_decode_accelerator_unittest.cc bool test_reuse_delay = GetParam().f; f 20 content/public/common/webplugininfo.cc const std::string& f, f 25 content/public/common/webplugininfo.cc file_extensions.push_back(f); f 26 content/public/common/webplugininfo.h const std::string& f, f 296 content/shell/browser/shell_content_browser_client.cc base::File f(pak_file, flags); f 297 content/shell/browser/shell_content_browser_client.cc if (!f.IsValid()) { f 303 content/shell/browser/shell_content_browser_client.cc base::FileDescriptor(f.Pass()))); f 306 content/shell/browser/shell_content_browser_client.cc f = breakpad::CrashDumpManager::GetInstance()->CreateMinidumpFile( f 308 content/shell/browser/shell_content_browser_client.cc if (!f.IsValid()) { f 314 content/shell/browser/shell_content_browser_client.cc base::FileDescriptor(f.Pass()))); f 454 crypto/curve25519-donna.c limb e[19] = {0}, f[19] = {1}, g[19] = {0}, h[19] = {1}; f 455 crypto/curve25519-donna.c limb *nqpqx2 = e, *nqpqz2 = f, *nqx2 = g, *nqz2 = h; f 275 crypto/third_party/nss/sha512.cc PRUint32 a, b, c, d, e, f, g, h; f 282 crypto/third_party/nss/sha512.cc f = H[5]; f 286 crypto/third_party/nss/sha512.cc #define ROUND(n,a,b,c,d,e,f,g,h) \ f 287 crypto/third_party/nss/sha512.cc h += S1(e) + Ch(e,f,g) + K256[n] + W[n]; \ f 295 crypto/third_party/nss/sha512.cc ROUND(t+0,a,b,c,d,e,f,g,h) f 296 crypto/third_party/nss/sha512.cc ROUND(t+1,h,a,b,c,d,e,f,g) f 297 crypto/third_party/nss/sha512.cc ROUND(t+2,g,h,a,b,c,d,e,f) f 298 crypto/third_party/nss/sha512.cc ROUND(t+3,f,g,h,a,b,c,d,e) f 299 crypto/third_party/nss/sha512.cc ROUND(t+4,e,f,g,h,a,b,c,d) f 300 crypto/third_party/nss/sha512.cc ROUND(t+5,d,e,f,g,h,a,b,c) f 301 crypto/third_party/nss/sha512.cc ROUND(t+6,c,d,e,f,g,h,a,b) f 302 crypto/third_party/nss/sha512.cc ROUND(t+7,b,c,d,e,f,g,h,a) f 306 crypto/third_party/nss/sha512.cc ROUND( 0,a,b,c,d,e,f,g,h) f 307 crypto/third_party/nss/sha512.cc ROUND( 1,h,a,b,c,d,e,f,g) f 308 crypto/third_party/nss/sha512.cc ROUND( 2,g,h,a,b,c,d,e,f) f 309 crypto/third_party/nss/sha512.cc ROUND( 3,f,g,h,a,b,c,d,e) f 310 crypto/third_party/nss/sha512.cc ROUND( 4,e,f,g,h,a,b,c,d) f 311 crypto/third_party/nss/sha512.cc ROUND( 5,d,e,f,g,h,a,b,c) f 312 crypto/third_party/nss/sha512.cc ROUND( 6,c,d,e,f,g,h,a,b) f 313 crypto/third_party/nss/sha512.cc ROUND( 7,b,c,d,e,f,g,h,a) f 315 crypto/third_party/nss/sha512.cc ROUND( 8,a,b,c,d,e,f,g,h) f 316 crypto/third_party/nss/sha512.cc ROUND( 9,h,a,b,c,d,e,f,g) f 317 crypto/third_party/nss/sha512.cc ROUND(10,g,h,a,b,c,d,e,f) f 318 crypto/third_party/nss/sha512.cc ROUND(11,f,g,h,a,b,c,d,e) f 319 crypto/third_party/nss/sha512.cc ROUND(12,e,f,g,h,a,b,c,d) f 320 crypto/third_party/nss/sha512.cc ROUND(13,d,e,f,g,h,a,b,c) f 321 crypto/third_party/nss/sha512.cc ROUND(14,c,d,e,f,g,h,a,b) f 322 crypto/third_party/nss/sha512.cc ROUND(15,b,c,d,e,f,g,h,a) f 324 crypto/third_party/nss/sha512.cc ROUND(16,a,b,c,d,e,f,g,h) f 325 crypto/third_party/nss/sha512.cc ROUND(17,h,a,b,c,d,e,f,g) f 326 crypto/third_party/nss/sha512.cc ROUND(18,g,h,a,b,c,d,e,f) f 327 crypto/third_party/nss/sha512.cc ROUND(19,f,g,h,a,b,c,d,e) f 328 crypto/third_party/nss/sha512.cc ROUND(20,e,f,g,h,a,b,c,d) f 329 crypto/third_party/nss/sha512.cc ROUND(21,d,e,f,g,h,a,b,c) f 330 crypto/third_party/nss/sha512.cc ROUND(22,c,d,e,f,g,h,a,b) f 331 crypto/third_party/nss/sha512.cc ROUND(23,b,c,d,e,f,g,h,a) f 333 crypto/third_party/nss/sha512.cc ROUND(24,a,b,c,d,e,f,g,h) f 334 crypto/third_party/nss/sha512.cc ROUND(25,h,a,b,c,d,e,f,g) f 335 crypto/third_party/nss/sha512.cc ROUND(26,g,h,a,b,c,d,e,f) f 336 crypto/third_party/nss/sha512.cc ROUND(27,f,g,h,a,b,c,d,e) f 337 crypto/third_party/nss/sha512.cc ROUND(28,e,f,g,h,a,b,c,d) f 338 crypto/third_party/nss/sha512.cc ROUND(29,d,e,f,g,h,a,b,c) f 339 crypto/third_party/nss/sha512.cc ROUND(30,c,d,e,f,g,h,a,b) f 340 crypto/third_party/nss/sha512.cc ROUND(31,b,c,d,e,f,g,h,a) f 342 crypto/third_party/nss/sha512.cc ROUND(32,a,b,c,d,e,f,g,h) f 343 crypto/third_party/nss/sha512.cc ROUND(33,h,a,b,c,d,e,f,g) f 344 crypto/third_party/nss/sha512.cc ROUND(34,g,h,a,b,c,d,e,f) f 345 crypto/third_party/nss/sha512.cc ROUND(35,f,g,h,a,b,c,d,e) f 346 crypto/third_party/nss/sha512.cc ROUND(36,e,f,g,h,a,b,c,d) f 347 crypto/third_party/nss/sha512.cc ROUND(37,d,e,f,g,h,a,b,c) f 348 crypto/third_party/nss/sha512.cc ROUND(38,c,d,e,f,g,h,a,b) f 349 crypto/third_party/nss/sha512.cc ROUND(39,b,c,d,e,f,g,h,a) f 351 crypto/third_party/nss/sha512.cc ROUND(40,a,b,c,d,e,f,g,h) f 352 crypto/third_party/nss/sha512.cc ROUND(41,h,a,b,c,d,e,f,g) f 353 crypto/third_party/nss/sha512.cc ROUND(42,g,h,a,b,c,d,e,f) f 354 crypto/third_party/nss/sha512.cc ROUND(43,f,g,h,a,b,c,d,e) f 355 crypto/third_party/nss/sha512.cc ROUND(44,e,f,g,h,a,b,c,d) f 356 crypto/third_party/nss/sha512.cc ROUND(45,d,e,f,g,h,a,b,c) f 357 crypto/third_party/nss/sha512.cc ROUND(46,c,d,e,f,g,h,a,b) f 358 crypto/third_party/nss/sha512.cc ROUND(47,b,c,d,e,f,g,h,a) f 360 crypto/third_party/nss/sha512.cc ROUND(48,a,b,c,d,e,f,g,h) f 361 crypto/third_party/nss/sha512.cc ROUND(49,h,a,b,c,d,e,f,g) f 362 crypto/third_party/nss/sha512.cc ROUND(50,g,h,a,b,c,d,e,f) f 363 crypto/third_party/nss/sha512.cc ROUND(51,f,g,h,a,b,c,d,e) f 364 crypto/third_party/nss/sha512.cc ROUND(52,e,f,g,h,a,b,c,d) f 365 crypto/third_party/nss/sha512.cc ROUND(53,d,e,f,g,h,a,b,c) f 366 crypto/third_party/nss/sha512.cc ROUND(54,c,d,e,f,g,h,a,b) f 367 crypto/third_party/nss/sha512.cc ROUND(55,b,c,d,e,f,g,h,a) f 369 crypto/third_party/nss/sha512.cc ROUND(56,a,b,c,d,e,f,g,h) f 370 crypto/third_party/nss/sha512.cc ROUND(57,h,a,b,c,d,e,f,g) f 371 crypto/third_party/nss/sha512.cc ROUND(58,g,h,a,b,c,d,e,f) f 372 crypto/third_party/nss/sha512.cc ROUND(59,f,g,h,a,b,c,d,e) f 373 crypto/third_party/nss/sha512.cc ROUND(60,e,f,g,h,a,b,c,d) f 374 crypto/third_party/nss/sha512.cc ROUND(61,d,e,f,g,h,a,b,c) f 375 crypto/third_party/nss/sha512.cc ROUND(62,c,d,e,f,g,h,a,b) f 376 crypto/third_party/nss/sha512.cc ROUND(63,b,c,d,e,f,g,h,a) f 384 crypto/third_party/nss/sha512.cc H[5] += f; f 725 crypto/third_party/nss/sha512.cc #define ROUND(n,a,b,c,d,e,f,g,h) \ f 726 crypto/third_party/nss/sha512.cc h += S1(e) + Ch(e,f,g) + K512[n] + W[n]; \ f 771 crypto/third_party/nss/sha512.cc #define ROUND(n,a,b,c,d,e,f,g,h) \ f 775 crypto/third_party/nss/sha512.cc lo += (tm = Chxx(e,f,g,lo)); cy = (lo < tm); \ f 779 crypto/third_party/nss/sha512.cc h.hi += cy + S1hi(e) + Chxx(e,f,g,hi) + K512[n].hi + W[n].hi; \ f 915 crypto/third_party/nss/sha512.cc PRUint64 a, b, c, d, e, f, g, h; f 922 crypto/third_party/nss/sha512.cc f = H[5]; f 930 crypto/third_party/nss/sha512.cc ROUND(t+0,a,b,c,d,e,f,g,h) f 931 crypto/third_party/nss/sha512.cc ROUND(t+1,h,a,b,c,d,e,f,g) f 932 crypto/third_party/nss/sha512.cc ROUND(t+2,g,h,a,b,c,d,e,f) f 933 crypto/third_party/nss/sha512.cc ROUND(t+3,f,g,h,a,b,c,d,e) f 934 crypto/third_party/nss/sha512.cc ROUND(t+4,e,f,g,h,a,b,c,d) f 935 crypto/third_party/nss/sha512.cc ROUND(t+5,d,e,f,g,h,a,b,c) f 936 crypto/third_party/nss/sha512.cc ROUND(t+6,c,d,e,f,g,h,a,b) f 937 crypto/third_party/nss/sha512.cc ROUND(t+7,b,c,d,e,f,g,h,a) f 941 crypto/third_party/nss/sha512.cc ROUND( 0,a,b,c,d,e,f,g,h) f 942 crypto/third_party/nss/sha512.cc ROUND( 1,h,a,b,c,d,e,f,g) f 943 crypto/third_party/nss/sha512.cc ROUND( 2,g,h,a,b,c,d,e,f) f 944 crypto/third_party/nss/sha512.cc ROUND( 3,f,g,h,a,b,c,d,e) f 945 crypto/third_party/nss/sha512.cc ROUND( 4,e,f,g,h,a,b,c,d) f 946 crypto/third_party/nss/sha512.cc ROUND( 5,d,e,f,g,h,a,b,c) f 947 crypto/third_party/nss/sha512.cc ROUND( 6,c,d,e,f,g,h,a,b) f 948 crypto/third_party/nss/sha512.cc ROUND( 7,b,c,d,e,f,g,h,a) f 950 crypto/third_party/nss/sha512.cc ROUND( 8,a,b,c,d,e,f,g,h) f 951 crypto/third_party/nss/sha512.cc ROUND( 9,h,a,b,c,d,e,f,g) f 952 crypto/third_party/nss/sha512.cc ROUND(10,g,h,a,b,c,d,e,f) f 953 crypto/third_party/nss/sha512.cc ROUND(11,f,g,h,a,b,c,d,e) f 954 crypto/third_party/nss/sha512.cc ROUND(12,e,f,g,h,a,b,c,d) f 955 crypto/third_party/nss/sha512.cc ROUND(13,d,e,f,g,h,a,b,c) f 956 crypto/third_party/nss/sha512.cc ROUND(14,c,d,e,f,g,h,a,b) f 957 crypto/third_party/nss/sha512.cc ROUND(15,b,c,d,e,f,g,h,a) f 959 crypto/third_party/nss/sha512.cc ROUND(16,a,b,c,d,e,f,g,h) f 960 crypto/third_party/nss/sha512.cc ROUND(17,h,a,b,c,d,e,f,g) f 961 crypto/third_party/nss/sha512.cc ROUND(18,g,h,a,b,c,d,e,f) f 962 crypto/third_party/nss/sha512.cc ROUND(19,f,g,h,a,b,c,d,e) f 963 crypto/third_party/nss/sha512.cc ROUND(20,e,f,g,h,a,b,c,d) f 964 crypto/third_party/nss/sha512.cc ROUND(21,d,e,f,g,h,a,b,c) f 965 crypto/third_party/nss/sha512.cc ROUND(22,c,d,e,f,g,h,a,b) f 966 crypto/third_party/nss/sha512.cc ROUND(23,b,c,d,e,f,g,h,a) f 968 crypto/third_party/nss/sha512.cc ROUND(24,a,b,c,d,e,f,g,h) f 969 crypto/third_party/nss/sha512.cc ROUND(25,h,a,b,c,d,e,f,g) f 970 crypto/third_party/nss/sha512.cc ROUND(26,g,h,a,b,c,d,e,f) f 971 crypto/third_party/nss/sha512.cc ROUND(27,f,g,h,a,b,c,d,e) f 972 crypto/third_party/nss/sha512.cc ROUND(28,e,f,g,h,a,b,c,d) f 973 crypto/third_party/nss/sha512.cc ROUND(29,d,e,f,g,h,a,b,c) f 974 crypto/third_party/nss/sha512.cc ROUND(30,c,d,e,f,g,h,a,b) f 975 crypto/third_party/nss/sha512.cc ROUND(31,b,c,d,e,f,g,h,a) f 977 crypto/third_party/nss/sha512.cc ROUND(32,a,b,c,d,e,f,g,h) f 978 crypto/third_party/nss/sha512.cc ROUND(33,h,a,b,c,d,e,f,g) f 979 crypto/third_party/nss/sha512.cc ROUND(34,g,h,a,b,c,d,e,f) f 980 crypto/third_party/nss/sha512.cc ROUND(35,f,g,h,a,b,c,d,e) f 981 crypto/third_party/nss/sha512.cc ROUND(36,e,f,g,h,a,b,c,d) f 982 crypto/third_party/nss/sha512.cc ROUND(37,d,e,f,g,h,a,b,c) f 983 crypto/third_party/nss/sha512.cc ROUND(38,c,d,e,f,g,h,a,b) f 984 crypto/third_party/nss/sha512.cc ROUND(39,b,c,d,e,f,g,h,a) f 986 crypto/third_party/nss/sha512.cc ROUND(40,a,b,c,d,e,f,g,h) f 987 crypto/third_party/nss/sha512.cc ROUND(41,h,a,b,c,d,e,f,g) f 988 crypto/third_party/nss/sha512.cc ROUND(42,g,h,a,b,c,d,e,f) f 989 crypto/third_party/nss/sha512.cc ROUND(43,f,g,h,a,b,c,d,e) f 990 crypto/third_party/nss/sha512.cc ROUND(44,e,f,g,h,a,b,c,d) f 991 crypto/third_party/nss/sha512.cc ROUND(45,d,e,f,g,h,a,b,c) f 992 crypto/third_party/nss/sha512.cc ROUND(46,c,d,e,f,g,h,a,b) f 993 crypto/third_party/nss/sha512.cc ROUND(47,b,c,d,e,f,g,h,a) f 995 crypto/third_party/nss/sha512.cc ROUND(48,a,b,c,d,e,f,g,h) f 996 crypto/third_party/nss/sha512.cc ROUND(49,h,a,b,c,d,e,f,g) f 997 crypto/third_party/nss/sha512.cc ROUND(50,g,h,a,b,c,d,e,f) f 998 crypto/third_party/nss/sha512.cc ROUND(51,f,g,h,a,b,c,d,e) f 999 crypto/third_party/nss/sha512.cc ROUND(52,e,f,g,h,a,b,c,d) f 1000 crypto/third_party/nss/sha512.cc ROUND(53,d,e,f,g,h,a,b,c) f 1001 crypto/third_party/nss/sha512.cc ROUND(54,c,d,e,f,g,h,a,b) f 1002 crypto/third_party/nss/sha512.cc ROUND(55,b,c,d,e,f,g,h,a) f 1004 crypto/third_party/nss/sha512.cc ROUND(56,a,b,c,d,e,f,g,h) f 1005 crypto/third_party/nss/sha512.cc ROUND(57,h,a,b,c,d,e,f,g) f 1006 crypto/third_party/nss/sha512.cc ROUND(58,g,h,a,b,c,d,e,f) f 1007 crypto/third_party/nss/sha512.cc ROUND(59,f,g,h,a,b,c,d,e) f 1008 crypto/third_party/nss/sha512.cc ROUND(60,e,f,g,h,a,b,c,d) f 1009 crypto/third_party/nss/sha512.cc ROUND(61,d,e,f,g,h,a,b,c) f 1010 crypto/third_party/nss/sha512.cc ROUND(62,c,d,e,f,g,h,a,b) f 1011 crypto/third_party/nss/sha512.cc ROUND(63,b,c,d,e,f,g,h,a) f 1013 crypto/third_party/nss/sha512.cc ROUND(64,a,b,c,d,e,f,g,h) f 1014 crypto/third_party/nss/sha512.cc ROUND(65,h,a,b,c,d,e,f,g) f 1015 crypto/third_party/nss/sha512.cc ROUND(66,g,h,a,b,c,d,e,f) f 1016 crypto/third_party/nss/sha512.cc ROUND(67,f,g,h,a,b,c,d,e) f 1017 crypto/third_party/nss/sha512.cc ROUND(68,e,f,g,h,a,b,c,d) f 1018 crypto/third_party/nss/sha512.cc ROUND(69,d,e,f,g,h,a,b,c) f 1019 crypto/third_party/nss/sha512.cc ROUND(70,c,d,e,f,g,h,a,b) f 1020 crypto/third_party/nss/sha512.cc ROUND(71,b,c,d,e,f,g,h,a) f 1022 crypto/third_party/nss/sha512.cc ROUND(72,a,b,c,d,e,f,g,h) f 1023 crypto/third_party/nss/sha512.cc ROUND(73,h,a,b,c,d,e,f,g) f 1024 crypto/third_party/nss/sha512.cc ROUND(74,g,h,a,b,c,d,e,f) f 1025 crypto/third_party/nss/sha512.cc ROUND(75,f,g,h,a,b,c,d,e) f 1026 crypto/third_party/nss/sha512.cc ROUND(76,e,f,g,h,a,b,c,d) f 1027 crypto/third_party/nss/sha512.cc ROUND(77,d,e,f,g,h,a,b,c) f 1028 crypto/third_party/nss/sha512.cc ROUND(78,c,d,e,f,g,h,a,b) f 1029 crypto/third_party/nss/sha512.cc ROUND(79,b,c,d,e,f,g,h,a) f 1037 crypto/third_party/nss/sha512.cc ADDTO(f,H[5]); f 219 extensions/browser/quota_service_unittest.cc scoped_refptr<MockFunction> f(new MockFunction("foo")); f 221 extensions/browser/quota_service_unittest.cc EXPECT_EQ("", service_->Assess(extension_a_, f.get(), &args, kStartTime)); f 225 extensions/browser/quota_service_unittest.cc scoped_refptr<MockFunction> f(new FrozenMockFunction("foo")); f 228 extensions/browser/quota_service_unittest.cc EXPECT_NE("", service_->Assess(extension_a_, f.get(), &args, kStartTime)); f 232 extensions/browser/quota_service_unittest.cc scoped_refptr<MockFunction> f(new TimedLimitMockFunction("foo")); f 235 extensions/browser/quota_service_unittest.cc EXPECT_EQ("", service_->Assess(extension_a_, f.get(), &args, kStartTime)); f 238 extensions/browser/quota_service_unittest.cc f.get(), f 243 extensions/browser/quota_service_unittest.cc f.get(), f 250 extensions/browser/quota_service_unittest.cc EXPECT_EQ("", service_->Assess(extension_b_, f.get(), &args2, kStartTime)); f 253 extensions/browser/quota_service_unittest.cc f.get(), f 259 extensions/browser/quota_service_unittest.cc service_->Assess(extension_b_, f.get(), &args, kStartTime + peace)); f 262 extensions/browser/quota_service_unittest.cc f.get(), f 267 extensions/browser/quota_service_unittest.cc f.get(), f 274 extensions/browser/quota_service_unittest.cc EXPECT_EQ("", service_->Assess(extension_c_, f.get(), &args, kStartTime)); f 277 extensions/browser/quota_service_unittest.cc f.get(), f 282 extensions/browser/quota_service_unittest.cc f.get(), f 287 extensions/browser/quota_service_unittest.cc f.get(), f 292 extensions/browser/quota_service_unittest.cc f.get(), f 297 extensions/browser/quota_service_unittest.cc f.get(), f 303 extensions/browser/quota_service_unittest.cc scoped_refptr<MockFunction> f(new ChainedLimitsMockFunction("foo")); f 314 extensions/browser/quota_service_unittest.cc f.get(), f 322 extensions/browser/quota_service_unittest.cc f.get(), f 331 extensions/browser/quota_service_unittest.cc f.get(), f 337 extensions/browser/quota_service_unittest.cc f.get(), f 343 extensions/browser/quota_service_unittest.cc f.get(), f 350 extensions/browser/quota_service_unittest.cc f.get(), f 356 extensions/browser/quota_service_unittest.cc scoped_refptr<MockFunction> f(new TimedLimitMockFunction("foo")); f 364 extensions/browser/quota_service_unittest.cc EXPECT_EQ("", service_->Assess(extension_a_, f.get(), &args_f, kStartTime)); f 368 extensions/browser/quota_service_unittest.cc f.get(), f 378 extensions/browser/quota_service_unittest.cc f.get(), f 389 extensions/browser/quota_service_unittest.cc scoped_refptr<MockFunction> f(new TimedLimitMockFunction("foo")); f 393 extensions/browser/quota_service_unittest.cc EXPECT_EQ("", service_->Assess(extension_a_, f.get(), &arg, kStartTime)); f 396 extensions/browser/quota_service_unittest.cc f.get(), f 401 extensions/browser/quota_service_unittest.cc f.get(), f 410 extensions/browser/quota_service_unittest.cc extension_a_, f.get(), &arg, kStartTime + TimeDelta::FromDays(1))); f 1326 gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.cc GLfloat f = 0; f 1327 gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.cc DoBufferData(GL_ARRAY_BUFFER, kNumVertices * 2 * sizeof(f)); f 275 gpu/tools/compositor_model_bench/compositor_model_bench.cc FILE* f = base::OpenFile(output_path_, "w"); f 277 gpu/tools/compositor_model_bench/compositor_model_bench.cc if (!f) { f 285 gpu/tools/compositor_model_bench/compositor_model_bench.cc fputs("{\n\t\"results\": [\n", f); f 289 gpu/tools/compositor_model_bench/compositor_model_bench.cc fprintf(f, f 300 gpu/tools/compositor_model_bench/compositor_model_bench.cc fputs("\t]\n}", f); f 301 gpu/tools/compositor_model_bench/compositor_model_bench.cc base::CloseFile(f); f 390 gpu/tools/compositor_model_bench/compositor_model_bench.cc for (base::FilePath f = dirItr.Next(); !f.empty(); f = dirItr.Next()) { f 391 gpu/tools/compositor_model_bench/compositor_model_bench.cc sim.QueueTest(f); f 226 gpu/tools/compositor_model_bench/shaders.cc int GetProgramIdx(ShaderID v, ShaderID f) { f 227 gpu/tools/compositor_model_bench/shaders.cc return v * SHADER_ID_MAX + f; f 243 gpu/tools/compositor_model_bench/shaders.cc static int ActivateShader(ShaderID v, ShaderID f, float* layer_transform) { f 244 gpu/tools/compositor_model_bench/shaders.cc int program_index = GetProgramIdx(v, f); f 250 gpu/tools/compositor_model_bench/shaders.cc const char* fs_source = GetShaderSource(f); f 256 gpu/tools/compositor_model_bench/shaders.cc ReportAnyShaderCompilationErrors(fs, f); f 527 media/audio/win/audio_low_latency_output_win.cc float f = (1000.0 * packet_size_frames_) / format_.Format.nSamplesPerSec; f 529 media/audio/win/audio_low_latency_output_win.cc static_cast<REFERENCE_TIME>(f * 10000.0 + 0.5); f 145 media/cast/test/utility/audio_utility.cc for (size_t f = 0; f < frequencies.size(); f++) { f 146 media/cast/test/utility/audio_utility.cc ret += sin((i + sample_offset) * Pi * 2.0 * frequencies[f] / f 108 native_client_sdk/src/examples/demo/earth/earth.cc float f = static_cast<float>(i) / kArcCosineTableSize; f 109 native_client_sdk/src/examples/demo/earth/earth.cc f = f * 2.0f - 1.0f; f 110 native_client_sdk/src/examples/demo/earth/earth.cc table[i] = acos(f); f 116 native_client_sdk/src/examples/demo/earth/earth.cc float ArcCosine::TableLerp(float f) { f 117 native_client_sdk/src/examples/demo/earth/earth.cc float x = (f + 1.0f) * 0.5f; f 129 native_client_sdk/src/examples/demo/earth/earth.cc float f; f 132 native_client_sdk/src/examples/demo/earth/earth.cc Convert(float x) { f = x; } f 134 native_client_sdk/src/examples/demo/earth/earth.cc float AsFloat() { return f; } f 137 native_client_sdk/src/examples/demo/earth/earth.cc inline const int AsInteger(const float f) { f 138 native_client_sdk/src/examples/demo/earth/earth.cc Convert u(f); f 101 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc float f = static_cast<float>(i) / kArcCosineTableSize; f 102 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc f = f * 2.0f - 1.0f; f 103 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc table[i] = acos(f); f 109 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc float ArcCosine::TableLerp(float f) { f 110 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc float x = (f + 1.0f) * 0.5f; f 122 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc float f; f 125 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc Convert(float x) { f = x; } f 127 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc float AsFloat() { return f; } f 130 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc inline const int AsInteger(const float f) { f 131 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc Convert u(f); f 185 native_client_sdk/src/libraries/xray/hashtable.c void XRayHashTableHisto(FILE* f) { f 189 native_client_sdk/src/libraries/xray/hashtable.c fprintf(f, "hash_iterations[%d] = %d\n", i, g_hash_histo[i]); f 46 native_client_sdk/src/libraries/xray/parsesymbols.c FILE* f; f 54 native_client_sdk/src/libraries/xray/parsesymbols.c f = fopen(mapfile, "rt"); f 55 native_client_sdk/src/libraries/xray/parsesymbols.c if (0 == f) { f 60 native_client_sdk/src/libraries/xray/parsesymbols.c while (NULL != fgets(line, XRAY_LINE_SIZE, f)) { f 92 native_client_sdk/src/libraries/xray/parsesymbols.c fclose(f); f 30 native_client_sdk/src/libraries/xray/report.c FILE* f, f 43 native_client_sdk/src/libraries/xray/report.c if (NULL == f) { f 44 native_client_sdk/src/libraries/xray/report.c f = stdout; f 46 native_client_sdk/src/libraries/xray/report.c fprintf(f, f 49 native_client_sdk/src/libraries/xray/report.c fprintf(f, "label %s\n", label); f 50 native_client_sdk/src/libraries/xray/report.c fprintf(f, "\n"); f 51 native_client_sdk/src/libraries/xray/report.c fprintf(f, f 53 native_client_sdk/src/libraries/xray/report.c fprintf(f, f 79 native_client_sdk/src/libraries/xray/report.c fprintf(f, "0x%08X %12" PRIu64 " %5.1f %s%s %s\n", f 86 native_client_sdk/src/libraries/xray/report.c fflush(f); f 102 native_client_sdk/src/libraries/xray/report.c void XRayFrameReport(struct XRayTraceCapture* capture, FILE* f) { f 111 native_client_sdk/src/libraries/xray/report.c fprintf(f, "\n"); f 112 native_client_sdk/src/libraries/xray/report.c fprintf(f, f 114 native_client_sdk/src/libraries/xray/report.c fprintf(f, f 123 native_client_sdk/src/libraries/xray/report.c fprintf(f, " %3d %s %12" PRIu64 " %10d %10d %s\n", f 137 native_client_sdk/src/libraries/xray/report.c fprintf(f, f 139 native_client_sdk/src/libraries/xray/report.c fprintf(f, f 141 native_client_sdk/src/libraries/xray/report.c fprintf(f, "\n"); f 144 native_client_sdk/src/libraries/xray/report.c fprintf(f, "\n"); f 145 native_client_sdk/src/libraries/xray/report.c fprintf(f, "Sorted by total ticks (most expensive first):\n"); f 146 native_client_sdk/src/libraries/xray/report.c fprintf(f, "\n"); f 147 native_client_sdk/src/libraries/xray/report.c fprintf(f, f 149 native_client_sdk/src/libraries/xray/report.c fprintf(f, f 159 native_client_sdk/src/libraries/xray/report.c fprintf(f, " %3d %12" PRIu64 " %10d %10d %s\n", f 166 native_client_sdk/src/libraries/xray/report.c fflush(f); f 172 native_client_sdk/src/libraries/xray/report.c FILE* f, f 178 native_client_sdk/src/libraries/xray/report.c XRayFrameReport(capture, f); f 179 native_client_sdk/src/libraries/xray/report.c fprintf(f, "\n"); f 182 native_client_sdk/src/libraries/xray/report.c fprintf(f, "\n"); f 184 native_client_sdk/src/libraries/xray/report.c XRayTraceReport(capture, f, frame, label, percent_cutoff, ticks_cutoff); f 188 native_client_sdk/src/libraries/xray/report.c fprintf(f, f 191 native_client_sdk/src/libraries/xray/report.c XRayHashTableHisto(capture, f); f 193 native_client_sdk/src/libraries/xray/report.c fflush(f); f 201 native_client_sdk/src/libraries/xray/report.c FILE* f; f 202 native_client_sdk/src/libraries/xray/report.c f = fopen(filename, "wt"); f 203 native_client_sdk/src/libraries/xray/report.c if (NULL != f) { f 204 native_client_sdk/src/libraries/xray/report.c XRayReport(capture, f, percent_cutoff, ticks_cutoff); f 205 native_client_sdk/src/libraries/xray/report.c fclose(f); f 56 native_client_sdk/src/libraries/xray/xray.h FILE* f, f 100 native_client_sdk/src/libraries/xray/xray.h FILE* f, f 86 native_client_sdk/src/libraries/xray/xray_priv.h XRAY_NO_INSTRUMENT void XRayHashTableHisto(FILE* f); f 165 native_client_sdk/src/libraries/xray/xray_priv.h FILE* f, f 171 native_client_sdk/src/libraries/xray/xray_priv.h FILE* f); f 39 native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc #define COMPARE_FIELD(f) \ f 40 native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc if (arg->f != statbuf->f) { \ f 41 native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc *result_listener << "mismatch of field \"" #f \ f 43 native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc "expected: " << statbuf->f << " actual: " << arg->f; \ f 17 net/disk_cache/blockfile/bitmap.cc float f = static_cast<float>(word & -static_cast<int>(word)); f 25 net/disk_cache/blockfile/bitmap.cc x.ieee_float = f; f 220 net/quic/quic_framer_test.cc virtual void OnError(QuicFramer* f) OVERRIDE { f 221 net/quic/quic_framer_test.cc DVLOG(1) << "QuicFramer Error: " << QuicUtils::ErrorToString(f->error()) f 222 net/quic/quic_framer_test.cc << " (" << f->error() << ")"; f 260 net/spdy/spdy_framer_test.cc virtual void OnError(SpdyFramer* f) OVERRIDE { f 262 net/spdy/spdy_framer_test.cc << SpdyFramer::ErrorCodeToString(f->error_code()); f 561 net/third_party/nss/ssl/ssl.h SSLAuthCertificate f, f 589 net/third_party/nss/ssl/ssl.h SSLGetClientAuthData f, void *a); f 632 net/third_party/nss/ssl/ssl.h SSLGetPlatformClientAuthData f, void *a); f 679 net/third_party/nss/ssl/ssl.h SSLSNISocketConfig f, f 712 net/third_party/nss/ssl/ssl.h SSL_IMPORT SECStatus SSL_BadCertHook(PRFileDesc *fd, SSLBadCertHandler f, f 1344 net/third_party/nss/ssl/sslsecur.c SSL_BadCertHook(PRFileDesc *fd, SSLBadCertHandler f, void *arg) f 1355 net/third_party/nss/ssl/sslsecur.c ss->handleBadCert = f; f 44 ppapi/cpp/dev/font_dev.h void set_family(PP_FontFamily_Dev f) { pp_font_description_.family = f; } f 44 ppapi/cpp/trusted/browser_font_trusted.h void set_family(PP_BrowserFont_Trusted_Family f) { f 45 ppapi/cpp/trusted/browser_font_trusted.h pp_font_description_.family = f; f 202 sandbox/linux/seccomp-bpf/sandbox_bpf.h Range(uint32_t f, uint32_t t, const ErrorCode& e) f 203 sandbox/linux/seccomp-bpf/sandbox_bpf.h : from(f), to(t), err(e) {} f 71 sandbox/linux/seccomp-bpf/trap.h TrapKey(TrapFnc f, const void* a, bool s) : fnc(f), aux(a), safe(s) {} f 53 sandbox/linux/services/credentials.cc inline void operator()(FILE* f) const { f 54 sandbox/linux/services/credentials.cc DCHECK(f); f 55 sandbox/linux/services/credentials.cc PCHECK(0 == fclose(f)); f 78 sandbox/linux/services/credentials.cc ScopedFILE f(fopen(map_file, "w")); f 79 sandbox/linux/services/credentials.cc PCHECK(f); f 82 sandbox/linux/services/credentials.cc int num = fprintf(f.get(), "%d %d 1\n", inside_id, outside_id); f 85 sandbox/linux/services/credentials.cc int ret = fflush(f.get()); f 54 skia/ext/convolver.h static Fixed FloatToFixed(float f) { f 55 skia/ext/convolver.h return static_cast<Fixed>(f * (1 << kShiftBits)); f 21 skia/ext/recursive_gaussian_convolution.cc inline unsigned char FloatTo8(float f) { f 22 skia/ext/recursive_gaussian_convolution.cc int a = static_cast<int>(f + 0.5f); f 138 skia/ext/vector_canvas_unittest.cc FILE* f = base::OpenFile(filename, "wb"); f 139 skia/ext/vector_canvas_unittest.cc ASSERT_TRUE(f); f 140 skia/ext/vector_canvas_unittest.cc ASSERT_EQ(fwrite(&*compressed.begin(), 1, compressed.size(), f), f 142 skia/ext/vector_canvas_unittest.cc base::CloseFile(f); f 206 testing/gmock_mutant.h return (obj->*method)(c.a, c.b, c.c, c.d, c.e, c.f); f 213 testing/gmock_mutant.h return (*function)(c.a, c.b, c.c, c.d, c.e, c.f); f 313 testing/gmock_mutant.h return (obj->*method)(p.a, c.a, c.b, c.c, c.d, c.e, c.f); f 320 testing/gmock_mutant.h return (*function)(p.a, c.a, c.b, c.c, c.d, c.e, c.f); f 423 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, c.a, c.b, c.c, c.d, c.e, c.f); f 430 testing/gmock_mutant.h return (*function)(p.a, p.b, c.a, c.b, c.c, c.d, c.e, c.f); f 536 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, c.a, c.b, c.c, c.d, c.e, c.f); f 544 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, c.a, c.b, c.c, c.d, c.e, c.f); f 653 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, c.a, c.b, c.c, c.d, c.e, c.f); f 661 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, c.a, c.b, c.c, c.d, c.e, c.f); f 772 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, c.a, c.b, c.c, c.d, c.e, c.f); f 780 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, c.a, c.b, c.c, c.d, c.e, c.f); f 789 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f); f 796 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f); f 805 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a); f 812 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a); f 822 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b); f 829 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b); f 839 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c); f 847 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c); f 857 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d); f 865 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d); f 875 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d, c.e); f 883 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d, c.e); f 893 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d, c.e, c.f); f 901 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d, c.e, c.f); f 376 third_party/bintrees/bintrees/ctrees.c node_t *f = NULL; /* Found item */ f 408 third_party/bintrees/bintrees/ctrees.c f = q; f 444 third_party/bintrees/bintrees/ctrees.c if (f != NULL) { f 445 third_party/bintrees/bintrees/ctrees.c ct_swap_data(f, q); f 457 third_party/bintrees/bintrees/ctrees.c return (f != NULL); f 102 third_party/bintrees/bintrees/cwalker.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ f 103 third_party/bintrees/bintrees/cwalker.c PyCode_New(a, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) f 106 third_party/bintrees/bintrees/cwalker.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ f 107 third_party/bintrees/bintrees/cwalker.c PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) f 102 third_party/bintrees/bintrees/qavltree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ f 103 third_party/bintrees/bintrees/qavltree.c PyCode_New(a, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) f 106 third_party/bintrees/bintrees/qavltree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ f 107 third_party/bintrees/bintrees/qavltree.c PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) f 102 third_party/bintrees/bintrees/qbintree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ f 103 third_party/bintrees/bintrees/qbintree.c PyCode_New(a, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) f 106 third_party/bintrees/bintrees/qbintree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ f 107 third_party/bintrees/bintrees/qbintree.c PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) f 102 third_party/bintrees/bintrees/qrbtree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ f 103 third_party/bintrees/bintrees/qrbtree.c PyCode_New(a, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) f 106 third_party/bintrees/bintrees/qrbtree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ f 107 third_party/bintrees/bintrees/qrbtree.c PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) f 184 third_party/cld/base/basictypes.h inline To implicit_cast(From const &f) { f 185 third_party/cld/base/basictypes.h return f; f 32 third_party/cld/base/casts.h inline To implicit_cast(From const &f) { f 33 third_party/cld/base/casts.h return f; f 56 third_party/cld/base/casts.h inline To down_cast(From* f) { // so we only accept pointers f 65 third_party/cld/base/casts.h assert(f == NULL || dynamic_cast<To>(f) != NULL); // RTTI: debug mode only! f 66 third_party/cld/base/casts.h return static_cast<To>(f); f 78 third_party/cld/base/casts.h inline To down_cast(From& f) { f 86 third_party/cld/base/casts.h assert(dynamic_cast<ToAsPointer>(&f) != NULL); // RTTI: debug mode only f 87 third_party/cld/base/casts.h return static_cast<To>(f); f 46 third_party/cld/encodings/compact_lang_det/cldutil_dbg.h void PrintLang(FILE* f, const Tote* chunk_tote, f 51 third_party/cld/encodings/compact_lang_det/cldutil_dbg.h void PrintLang2(FILE* f, f 55 third_party/cld/encodings/compact_lang_det/cldutil_dbg.h void PrintText(FILE* f, Language cur_lang, const string& str); f 58 third_party/cld/encodings/compact_lang_det/cldutil_dbg.h void PrintTextSpeculative(FILE* f, Language cur_lang, const string& str); f 61 third_party/cld/encodings/compact_lang_det/cldutil_dbg.h void PrintSkippedText(FILE* f, const string& str); f 47 third_party/cld/encodings/compact_lang_det/cldutil_dbg_empty.cc void PrintLang(FILE* f, const Tote* chunk_tote, f 52 third_party/cld/encodings/compact_lang_det/cldutil_dbg_empty.cc void PrintLang2(FILE* f, f 56 third_party/cld/encodings/compact_lang_det/cldutil_dbg_empty.cc void PrintText(FILE* f, Language cur_lang, const string& str) {}; f 59 third_party/cld/encodings/compact_lang_det/cldutil_dbg_empty.cc void PrintTextSpeculative(FILE* f, Language cur_lang, const string& str) {}; f 62 third_party/cld/encodings/compact_lang_det/cldutil_dbg_empty.cc void PrintSkippedText(FILE* f, const string& str) {}; f 1327 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc void PrintHtmlEscapedText(FILE* f, const char* txt, int len) { f 1331 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "<"); f 1333 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, ">"); f 1335 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "&"); f 1337 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "'"); f 1339 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, """); f 1341 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "%c", c); f 1344 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "<br>\n"); f 1650 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc void PrintLangs(FILE* f, const Language* language3, const int* percent3, f 1652 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "<br> Initial_Languages "); f 1654 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "%s%s(%d%%) ", f 1660 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "%s(%d%%) ", ExtLanguageName(language3[1]), percent3[1]); f 1663 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "%s(%d%%) ", ExtLanguageName(language3[2]), percent3[2]); f 1665 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "%d bytes \n", *text_bytes); f 1667 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "<br>\n"); f 128 third_party/cld/encodings/compact_lang_det/tote.cc void Tote::Dump(FILE* f) { f 131 third_party/cld/encodings/compact_lang_det/tote.cc fprintf(f, "[%2d] %3d %8d\n", sub, key_[sub], value_[sub]); f 134 third_party/cld/encodings/compact_lang_det/tote.cc fprintf(f, "%d %d %d\n", gram_count_, incr_count_, byte_count_); f 291 third_party/cld/encodings/compact_lang_det/tote.cc void ToteWithReliability::Dump(FILE* f) { f 294 third_party/cld/encodings/compact_lang_det/tote.cc fprintf(f, "[%2d] %3d %6d %5d %4d\n", f 298 third_party/cld/encodings/compact_lang_det/tote.cc fprintf(f, " %d#\n", incr_count_); f 23 third_party/cld/encodings/compact_lang_det/tote.h void Dump(FILE* f); f 58 third_party/cld/encodings/compact_lang_det/tote.h void Dump(FILE* f); f 227 third_party/harfbuzz-ng/src/hb-coretext.cc bool operator== (const active_feature_t *f) { f 228 third_party/harfbuzz-ng/src/hb-coretext.cc return cmp (this, f) == 0; f 1122 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh unsigned int f = deltaFormat; f 1123 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (f < 1 || f > 3)) f 1131 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh unsigned int byte = deltaValue[s >> (4 - f)]; f 1132 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh unsigned int bits = (byte >> (16 - (((s & ((1 << (4 - f)) - 1)) + 1) << f))); f 1133 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh unsigned int mask = (0xFFFF >> (16 - (1 << f))); f 1145 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh unsigned int f = deltaFormat; f 1146 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (f < 1 || f > 3 || startSize > endSize)) return 3 * USHORT::static_size; f 1147 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return USHORT::static_size * (4 + ((endSize - startSize) >> (4 - f))); f 412 third_party/harfbuzz-ng/src/hb-ot-layout.cc const OT::Feature &f = g.get_feature (feature_index); f 414 third_party/harfbuzz-ng/src/hb-ot-layout.cc return f.get_lookup_indexes (start_offset, lookup_count, lookup_indexes); f 747 third_party/harfbuzz-ng/src/hb-ot-layout.cc const OT::Feature &f = gpos.get_feature (i); f 748 third_party/harfbuzz-ng/src/hb-ot-layout.cc const OT::FeatureParamsSize ¶ms = f.get_feature_params ().get_size_params (tag); f 270 third_party/harfbuzz-ng/src/hb-uniscribe.cc bool operator== (const active_feature_t *f) { f 271 third_party/harfbuzz-ng/src/hb-uniscribe.cc return cmp (this, f) == 0; f 58 third_party/harfbuzz-ng/src/main.cc FILE *f = fopen (argv[1], "rb"); f 59 third_party/harfbuzz-ng/src/main.cc fseek (f, 0, SEEK_END); f 60 third_party/harfbuzz-ng/src/main.cc len = ftell (f); f 61 third_party/harfbuzz-ng/src/main.cc fseek (f, 0, SEEK_SET); f 63 third_party/harfbuzz-ng/src/main.cc len = fread ((char *) font_data, 1, len, f); f 71 third_party/harfbuzz-ng/src/test-buffer-serialize.cc FILE *f = fopen (argv[1], "rb"); f 72 third_party/harfbuzz-ng/src/test-buffer-serialize.cc fseek (f, 0, SEEK_END); f 73 third_party/harfbuzz-ng/src/test-buffer-serialize.cc len = ftell (f); f 74 third_party/harfbuzz-ng/src/test-buffer-serialize.cc fseek (f, 0, SEEK_SET); f 77 third_party/harfbuzz-ng/src/test-buffer-serialize.cc len = fread ((char *) font_data, 1, len, f); f 80 third_party/harfbuzz-ng/src/test-buffer-serialize.cc fclose (f); f 69 third_party/harfbuzz-ng/src/test-size-params.cc FILE *f = fopen (argv[1], "rb"); f 70 third_party/harfbuzz-ng/src/test-size-params.cc fseek (f, 0, SEEK_END); f 71 third_party/harfbuzz-ng/src/test-size-params.cc len = ftell (f); f 72 third_party/harfbuzz-ng/src/test-size-params.cc fseek (f, 0, SEEK_SET); f 75 third_party/harfbuzz-ng/src/test-size-params.cc len = fread ((char *) font_data, 1, len, f); f 78 third_party/harfbuzz-ng/src/test-size-params.cc fclose (f); f 73 third_party/harfbuzz-ng/src/test-would-substitute.cc FILE *f = fopen (argv[1], "rb"); f 74 third_party/harfbuzz-ng/src/test-would-substitute.cc fseek (f, 0, SEEK_END); f 75 third_party/harfbuzz-ng/src/test-would-substitute.cc len = ftell (f); f 76 third_party/harfbuzz-ng/src/test-would-substitute.cc fseek (f, 0, SEEK_SET); f 79 third_party/harfbuzz-ng/src/test-would-substitute.cc len = fread ((char *) font_data, 1, len, f); f 82 third_party/harfbuzz-ng/src/test-would-substitute.cc fclose (f); f 72 third_party/harfbuzz-ng/src/test.cc FILE *f = fopen (argv[1], "rb"); f 73 third_party/harfbuzz-ng/src/test.cc fseek (f, 0, SEEK_END); f 74 third_party/harfbuzz-ng/src/test.cc len = ftell (f); f 75 third_party/harfbuzz-ng/src/test.cc fseek (f, 0, SEEK_SET); f 78 third_party/harfbuzz-ng/src/test.cc len = fread ((char *) font_data, 1, len, f); f 81 third_party/harfbuzz-ng/src/test.cc fclose (f); f 414 third_party/khronos/GLES2/gl2.h GL_APICALL void GL_APIENTRY glDepthRangef (GLfloat n, GLfloat f); f 19 third_party/leveldatabase/chromium_logger.h ChromiumLogger(FILE* f) : file_(f) { } f 74 third_party/leveldatabase/env_chromium_stdio.cc FILE* f, f 76 third_party/leveldatabase/env_chromium_stdio.cc : filename_(fname), file_(f), uma_logger_(uma_logger) {} f 137 third_party/leveldatabase/env_chromium_stdio.cc FILE* f, f 142 third_party/leveldatabase/env_chromium_stdio.cc file_(f), f 252 third_party/leveldatabase/env_chromium_stdio.cc FILE* f = fopen_internal(fname.c_str(), "rb"); f 253 third_party/leveldatabase/env_chromium_stdio.cc if (f == NULL) { f 260 third_party/leveldatabase/env_chromium_stdio.cc *result = new ChromiumSequentialFile(fname, f, this); f 299 third_party/leveldatabase/env_chromium_stdio.cc FILE* f = fopen_internal(fname.c_str(), "wb"); f 300 third_party/leveldatabase/env_chromium_stdio.cc if (f == NULL) { f 306 third_party/leveldatabase/env_chromium_stdio.cc *result = new ChromiumWritableFile(fname, f, this, this, make_backup_); f 366 third_party/leveldatabase/env_chromium_stdio.cc FILE* f = fopen_internal(fname.c_str(), "w"); f 367 third_party/leveldatabase/env_chromium_stdio.cc if (f == NULL) { f 373 third_party/leveldatabase/env_chromium_stdio.cc *result = new ChromiumLogger(f); f 15 third_party/leveldatabase/env_chromium_stdio.h FILE* f, f 240 third_party/leveldatabase/env_chromium_unittest.cc FILE* f = fopen(new_file_dir.AsUTF8Unsafe().c_str(), "w"); f 241 third_party/leveldatabase/env_chromium_unittest.cc if (f) { f 242 third_party/leveldatabase/env_chromium_unittest.cc fputs("Temp file contents", f); f 243 third_party/leveldatabase/env_chromium_unittest.cc fclose(f); f 49 third_party/leveldatabase/env_chromium_win.cc HANDLE f, f 51 third_party/leveldatabase/env_chromium_win.cc : filename_(fname), file_(f), uma_logger_(uma_logger) { f 141 third_party/leveldatabase/env_chromium_win.cc HANDLE f, f 146 third_party/leveldatabase/env_chromium_win.cc file_(f), f 151 third_party/leveldatabase/env_chromium_win.cc DCHECK(f != INVALID_HANDLE_VALUE); f 240 third_party/leveldatabase/env_chromium_win.cc HANDLE f = CreateFile(base::UTF8ToUTF16(fname).c_str(), f 247 third_party/leveldatabase/env_chromium_win.cc if (f == INVALID_HANDLE_VALUE) { f 254 third_party/leveldatabase/env_chromium_win.cc *result = new ChromiumSequentialFileWin(fname, f, this); f 290 third_party/leveldatabase/env_chromium_win.cc HANDLE f = CreateFile(base::UTF8ToUTF16(fname).c_str(), f 297 third_party/leveldatabase/env_chromium_win.cc if (f == INVALID_HANDLE_VALUE) { f 303 third_party/leveldatabase/env_chromium_win.cc *result = new ChromiumWritableFileWin(fname, f, this, this, make_backup_); f 338 third_party/leveldatabase/env_chromium_win.cc FILE* f = _wfopen(base::UTF8ToUTF16(fname).c_str(), L"w"); f 339 third_party/leveldatabase/env_chromium_win.cc if (f == NULL) { f 345 third_party/leveldatabase/env_chromium_win.cc *result = new ChromiumLogger(f); f 20 third_party/leveldatabase/env_chromium_win.h HANDLE f, f 63 third_party/libaddressinput/chromium/cpp/src/util/md5.cc #define MD5STEP(f, w, x, y, z, data, s) \ f 64 third_party/libaddressinput/chromium/cpp/src/util/md5.cc ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x ) f 86 third_party/libusb/src/libusb/libusb.h #define LIBUSB_DEPRECATED_FOR(f) \ f 87 third_party/libusb/src/libusb/libusb.h __attribute__((deprecated("Use " #f " instead"))) f 89 third_party/libusb/src/libusb/libusb.h #define LIBUSB_DEPRECATED_FOR(f) f 522 third_party/libusb/src/libusb/os/linux_usbfs.c FILE *f; f 527 third_party/libusb/src/libusb/os/linux_usbfs.c f = fopen(filename, "r"); f 528 third_party/libusb/src/libusb/os/linux_usbfs.c if (f == NULL) { f 538 third_party/libusb/src/libusb/os/linux_usbfs.c r = fscanf(f, "%d", &value); f 539 third_party/libusb/src/libusb/os/linux_usbfs.c fclose(f); f 49 third_party/libusb/src/libusb/os/windows_usb.h #define _beginthreadex(a, b, c, d, e, f) CreateThread(a, b, (LPTHREAD_START_ROUTINE)c, d, e, f) f 620 third_party/libva/va/va.h float f; f 162 third_party/libwebp/dec/frame.c const int f = (d < 0) ? 0 : (d > 100) ? max_amp : (d * max_amp / 100); f 163 third_party/libwebp/dec/frame.c if (f > 0) { f 171 third_party/libwebp/dec/frame.c dqm->dither_ = (f * kQuantToDitherAmp[idx]) >> 3; f 631 third_party/libwebp/demux/demux.c const Frame* f = dmux->frames_; f 642 third_party/libwebp/demux/demux.c while (f != NULL) { f 643 third_party/libwebp/demux/demux.c const int cur_frame_set = f->frame_num_; f 648 third_party/libwebp/demux/demux.c for (; f != NULL && f->frame_num_ == cur_frame_set; f = f->next_) { f 649 third_party/libwebp/demux/demux.c const ChunkData* const image = f->img_components_; f 650 third_party/libwebp/demux/demux.c const ChunkData* const alpha = f->img_components_ + 1; f 652 third_party/libwebp/demux/demux.c if (is_fragmented && !f->is_fragment_) return 0; f 653 third_party/libwebp/demux/demux.c if (!is_fragmented && f->is_fragment_) return 0; f 654 third_party/libwebp/demux/demux.c if (!is_animation && f->frame_num_ > 1) return 0; f 656 third_party/libwebp/demux/demux.c if (f->complete_) { f 663 third_party/libwebp/demux/demux.c if (f->width_ <= 0 || f->height_ <= 0) return 0; f 674 third_party/libwebp/demux/demux.c if (f->next_ != NULL) return 0; f 677 third_party/libwebp/demux/demux.c if (f->width_ > 0 && f->height_ > 0 && f 678 third_party/libwebp/demux/demux.c !CheckFrameBounds(f, !(is_animation || is_fragmented), f 683 third_party/libwebp/demux/demux.c fragment_count += f->is_fragment_; f 758 third_party/libwebp/demux/demux.c Frame* f; f 761 third_party/libwebp/demux/demux.c for (f = dmux->frames_; f != NULL;) { f 762 third_party/libwebp/demux/demux.c Frame* const cur_frame = f; f 763 third_party/libwebp/demux/demux.c f = f->next_; f 796 third_party/libwebp/demux/demux.c const Frame* f; f 797 third_party/libwebp/demux/demux.c for (f = dmux->frames_; f != NULL; f = f->next_) { f 798 third_party/libwebp/demux/demux.c if (frame_num == f->frame_num_) break; f 800 third_party/libwebp/demux/demux.c return f; f 807 third_party/libwebp/demux/demux.c const Frame* f = frame_set; f 811 third_party/libwebp/demux/demux.c for (total = 0; f != NULL && f->frame_num_ == this_frame; f = f->next_) { f 812 third_party/libwebp/demux/demux.c if (++total == fragment_num) fragment = f; f 479 third_party/libwebp/dsp/dec_sse2.c const __m128i f = _mm_and_si128(a, m); f 480 third_party/libwebp/dsp/dec_sse2.c DO_SIMPLE_FILTER(*p0, *q0, f); f 488 third_party/libwebp/dsp/dec_sse2.c const __m128i f = _mm_and_si128(a, m); f 489 third_party/libwebp/dsp/dec_sse2.c const __m128i f_lo = _mm_unpacklo_epi8(zero, f); f 490 third_party/libwebp/dsp/dec_sse2.c const __m128i f_hi = _mm_unpackhi_epi8(zero, f); f 270 third_party/libwebp/enc/quant.c const int f = base_strength * level0 / (256 + m->beta_); f 271 third_party/libwebp/enc/quant.c m->fstrength_ = (f < FSTRENGTH_CUTOFF) ? 0 : (f > 63) ? 63 : f; f 1036 third_party/libxml/src/HTMLtree.c htmlDocDump(FILE *f, xmlDocPtr cur) { f 1044 third_party/libxml/src/HTMLtree.c if ((cur == NULL) || (f == NULL)) { f 1078 third_party/libxml/src/HTMLtree.c buf = xmlOutputBufferCreateFile(f, handler); f 2546 third_party/libxml/src/debugXML.c FILE *f; f 2548 third_party/libxml/src/debugXML.c f = fopen((char *) filename, "w"); f 2549 third_party/libxml/src/debugXML.c if (f == NULL) { f 2554 third_party/libxml/src/debugXML.c xmlElemDump(f, ctxt->doc, node); f 2555 third_party/libxml/src/debugXML.c fclose(f); f 288 third_party/libxml/src/hash.c xmlHashFree(xmlHashTablePtr table, xmlHashDeallocator f) { f 306 third_party/libxml/src/hash.c if ((f != NULL) && (iter->payload != NULL)) f 307 third_party/libxml/src/hash.c f(iter->payload, iter->name); f 380 third_party/libxml/src/hash.c void *userdata, xmlHashDeallocator f) { f 381 third_party/libxml/src/hash.c return(xmlHashUpdateEntry3(table, name, NULL, NULL, userdata, f)); f 401 third_party/libxml/src/hash.c xmlHashDeallocator f) { f 402 third_party/libxml/src/hash.c return(xmlHashUpdateEntry3(table, name, name2, NULL, userdata, f)); f 603 third_party/libxml/src/hash.c void *userdata, xmlHashDeallocator f) { f 645 third_party/libxml/src/hash.c if (f) f 646 third_party/libxml/src/hash.c f(insert->payload, insert->name); f 654 third_party/libxml/src/hash.c if (f) f 655 third_party/libxml/src/hash.c f(insert->payload, insert->name); f 665 third_party/libxml/src/hash.c if (f) f 666 third_party/libxml/src/hash.c f(insert->payload, insert->name); f 674 third_party/libxml/src/hash.c if (f) f 675 third_party/libxml/src/hash.c f(insert->payload, insert->name); f 813 third_party/libxml/src/hash.c xmlHashScan(xmlHashTablePtr table, xmlHashScanner f, void *data) { f 816 third_party/libxml/src/hash.c stubdata.hashscanner = f; f 829 third_party/libxml/src/hash.c xmlHashScanFull(xmlHashTablePtr table, xmlHashScannerFull f, void *data) { f 836 third_party/libxml/src/hash.c if (f == NULL) f 847 third_party/libxml/src/hash.c if ((f != NULL) && (iter->payload != NULL)) f 848 third_party/libxml/src/hash.c f(iter->payload, data, iter->name, f 882 third_party/libxml/src/hash.c xmlHashScanner f, void *data) { f 884 third_party/libxml/src/hash.c (xmlHashScannerFull) f, data); f 903 third_party/libxml/src/hash.c xmlHashScannerFull f, void *data) { f 910 third_party/libxml/src/hash.c if (f == NULL) f 924 third_party/libxml/src/hash.c f(iter->payload, data, iter->name, f 943 third_party/libxml/src/hash.c xmlHashCopy(xmlHashTablePtr table, xmlHashCopier f) { f 951 third_party/libxml/src/hash.c if (f == NULL) f 963 third_party/libxml/src/hash.c iter->name3, f(iter->payload, iter->name)); f 1001 third_party/libxml/src/hash.c xmlHashDeallocator f) { f 1002 third_party/libxml/src/hash.c return(xmlHashRemoveEntry3(table, name, NULL, NULL, f)); f 1020 third_party/libxml/src/hash.c const xmlChar *name2, xmlHashDeallocator f) { f 1021 third_party/libxml/src/hash.c return(xmlHashRemoveEntry3(table, name, name2, NULL, f)); f 1040 third_party/libxml/src/hash.c const xmlChar *name2, const xmlChar *name3, xmlHashDeallocator f) { f 1056 third_party/libxml/src/hash.c if ((f != NULL) && (entry->payload != NULL)) f 1057 third_party/libxml/src/hash.c f(entry->payload, entry->name); f 84 third_party/libxml/src/include/libxml/HTMLtree.h htmlDocDump (FILE *f, f 113 third_party/libxml/src/include/libxml/hash.h xmlHashDeallocator f); f 126 third_party/libxml/src/include/libxml/hash.h xmlHashDeallocator f); f 137 third_party/libxml/src/include/libxml/hash.h xmlHashDeallocator f); f 150 third_party/libxml/src/include/libxml/hash.h xmlHashDeallocator f); f 157 third_party/libxml/src/include/libxml/hash.h xmlHashDeallocator f); f 160 third_party/libxml/src/include/libxml/hash.h const xmlChar *name2, xmlHashDeallocator f); f 164 third_party/libxml/src/include/libxml/hash.h xmlHashDeallocator f); f 205 third_party/libxml/src/include/libxml/hash.h xmlHashCopier f); f 210 third_party/libxml/src/include/libxml/hash.h xmlHashScanner f, f 217 third_party/libxml/src/include/libxml/hash.h xmlHashScanner f, f 221 third_party/libxml/src/include/libxml/hash.h xmlHashScannerFull f, f 228 third_party/libxml/src/include/libxml/hash.h xmlHashScannerFull f, f 1063 third_party/libxml/src/include/libxml/parser.h xmlSetExternalEntityLoader(xmlExternalEntityLoader f); f 1123 third_party/libxml/src/include/libxml/tree.h xmlDocFormatDump (FILE *f, f 1127 third_party/libxml/src/include/libxml/tree.h xmlDocDump (FILE *f, f 1130 third_party/libxml/src/include/libxml/tree.h xmlElemDump (FILE *f, f 406 third_party/libxml/src/include/libxml/xmlreader.h xmlTextReaderErrorFunc f, f 410 third_party/libxml/src/include/libxml/xmlreader.h xmlStructuredErrorFunc f, f 414 third_party/libxml/src/include/libxml/xmlreader.h xmlTextReaderErrorFunc *f, f 334 third_party/libxml/src/include/libxml/xpathInternals.h xmlXPathVariableLookupFunc f, f 343 third_party/libxml/src/include/libxml/xpathInternals.h xmlXPathFuncLookupFunc f, f 435 third_party/libxml/src/include/libxml/xpathInternals.h xmlXPathFunction f); f 440 third_party/libxml/src/include/libxml/xpathInternals.h xmlXPathFunction f); f 100 third_party/libxml/src/include/win32config.h #define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a) f 2612 third_party/libxml/src/runtest.c FILE *o, *f; f 2627 third_party/libxml/src/runtest.c f = fopen(filename, "rb"); f 2628 third_party/libxml/src/runtest.c if (f == NULL) { f 2642 third_party/libxml/src/runtest.c if (fgets (&str[0], sizeof (str) - 1, f) == NULL) f 2659 third_party/libxml/src/runtest.c fclose(f); f 3414 third_party/libxml/src/runtest.c FILE *o, *f; f 3440 third_party/libxml/src/runtest.c f = fopen(filename, "rb"); f 3441 third_party/libxml/src/runtest.c if (f == NULL) { f 3453 third_party/libxml/src/runtest.c fclose(f); f 3461 third_party/libxml/src/runtest.c if (fgets (&str[0], sizeof (str) - 1, f) == NULL) f 3530 third_party/libxml/src/runtest.c fclose(f); f 628 third_party/libxml/src/testHTML.c FILE *f; f 631 third_party/libxml/src/testHTML.c f = fopen(filename, "rb"); f 633 third_party/libxml/src/testHTML.c f = fopen(filename, "r"); f 635 third_party/libxml/src/testHTML.c if (f != NULL) { f 642 third_party/libxml/src/testHTML.c res = fread(chars, 1, 4, f); f 646 third_party/libxml/src/testHTML.c while ((res = fread(chars, 1, size, f)) > 0) { f 657 third_party/libxml/src/testHTML.c fclose(f); f 661 third_party/libxml/src/testHTML.c f = fopen(filename, "rb"); f 663 third_party/libxml/src/testHTML.c f = fopen(filename, "r"); f 665 third_party/libxml/src/testHTML.c if (f != NULL) { f 672 third_party/libxml/src/testHTML.c res = fread(chars, 1, 4, f); f 676 third_party/libxml/src/testHTML.c while ((res = fread(chars, 1, size, f)) > 0) { f 687 third_party/libxml/src/testHTML.c fclose(f); f 722 third_party/libxml/src/testHTML.c FILE *f; f 725 third_party/libxml/src/testHTML.c f = fopen(filename, "rb"); f 727 third_party/libxml/src/testHTML.c f = fopen(filename, "r"); f 729 third_party/libxml/src/testHTML.c if (f != NULL) { f 736 third_party/libxml/src/testHTML.c res = fread(chars, 1, 4, f); f 740 third_party/libxml/src/testHTML.c while ((res = fread(chars, 1, size, f)) > 0) { f 747 third_party/libxml/src/testHTML.c fclose(f); f 1009 third_party/libxml/src/testSAX.c FILE *f; f 1016 third_party/libxml/src/testSAX.c f = fopen(filename, "rb"); f 1018 third_party/libxml/src/testSAX.c f = fopen(filename, "r"); f 1020 third_party/libxml/src/testSAX.c if (f != NULL) { f 1025 third_party/libxml/src/testSAX.c ret = fread(chars, 1, 4, f); f 1029 third_party/libxml/src/testSAX.c while ((ret = fread(chars, 1, 3, f)) > 0) { f 1035 third_party/libxml/src/testSAX.c fclose(f); f 1045 third_party/libxml/src/testSAX.c f = fopen(filename, "rb"); f 1047 third_party/libxml/src/testSAX.c f = fopen(filename, "r"); f 1049 third_party/libxml/src/testSAX.c if (f != NULL) { f 1054 third_party/libxml/src/testSAX.c ret = fread(chars, 1, 4, f); f 1062 third_party/libxml/src/testSAX.c while ((ret = fread(chars, 1, 3, f)) > 0) { f 1072 third_party/libxml/src/testSAX.c fclose(f); f 2930 third_party/libxml/src/testapi.c FILE * f; /* the FILE* */ f 2938 third_party/libxml/src/testapi.c f = gen_FILE_ptr(n_f, 0); f 2941 third_party/libxml/src/testapi.c ret_val = htmlDocDump(f, cur); f 2944 third_party/libxml/src/testapi.c des_FILE_ptr(n_f, f, 0); f 10237 third_party/libxml/src/testapi.c xmlHashDeallocator f; /* the deallocator function for removed item (if any) */ f 10246 third_party/libxml/src/testapi.c f = gen_xmlHashDeallocator(n_f, 2); f 10248 third_party/libxml/src/testapi.c ret_val = xmlHashRemoveEntry(table, (const xmlChar *)name, f); f 10253 third_party/libxml/src/testapi.c des_xmlHashDeallocator(n_f, f, 2); f 10285 third_party/libxml/src/testapi.c xmlHashDeallocator f; /* the deallocator function for removed item (if any) */ f 10296 third_party/libxml/src/testapi.c f = gen_xmlHashDeallocator(n_f, 3); f 10298 third_party/libxml/src/testapi.c ret_val = xmlHashRemoveEntry2(table, (const xmlChar *)name, (const xmlChar *)name2, f); f 10304 third_party/libxml/src/testapi.c des_xmlHashDeallocator(n_f, f, 3); f 10340 third_party/libxml/src/testapi.c xmlHashDeallocator f; /* the deallocator function for removed item (if any) */ f 10353 third_party/libxml/src/testapi.c f = gen_xmlHashDeallocator(n_f, 4); f 10355 third_party/libxml/src/testapi.c ret_val = xmlHashRemoveEntry3(table, (const xmlChar *)name, (const xmlChar *)name2, (const xmlChar *)name3, f); f 10362 third_party/libxml/src/testapi.c des_xmlHashDeallocator(n_f, f, 4); f 10470 third_party/libxml/src/testapi.c xmlHashDeallocator f; /* the deallocator function for replaced item (if any) */ f 10481 third_party/libxml/src/testapi.c f = gen_xmlHashDeallocator(n_f, 3); f 10483 third_party/libxml/src/testapi.c ret_val = xmlHashUpdateEntry(table, (const xmlChar *)name, userdata, f); f 10489 third_party/libxml/src/testapi.c des_xmlHashDeallocator(n_f, f, 3); f 10525 third_party/libxml/src/testapi.c xmlHashDeallocator f; /* the deallocator function for replaced item (if any) */ f 10538 third_party/libxml/src/testapi.c f = gen_xmlHashDeallocator(n_f, 4); f 10540 third_party/libxml/src/testapi.c ret_val = xmlHashUpdateEntry2(table, (const xmlChar *)name, (const xmlChar *)name2, userdata, f); f 10547 third_party/libxml/src/testapi.c des_xmlHashDeallocator(n_f, f, 4); f 10587 third_party/libxml/src/testapi.c xmlHashDeallocator f; /* the deallocator function for replaced item (if any) */ f 10602 third_party/libxml/src/testapi.c f = gen_xmlHashDeallocator(n_f, 5); f 10604 third_party/libxml/src/testapi.c ret_val = xmlHashUpdateEntry3(table, (const xmlChar *)name, (const xmlChar *)name2, (const xmlChar *)name3, userdata, f); f 10612 third_party/libxml/src/testapi.c des_xmlHashDeallocator(n_f, f, 5); f 19790 third_party/libxml/src/testapi.c FILE * f; /* the FILE* */ f 19798 third_party/libxml/src/testapi.c f = gen_FILE_ptr(n_f, 0); f 19801 third_party/libxml/src/testapi.c ret_val = xmlDocDump(f, cur); f 19804 third_party/libxml/src/testapi.c des_FILE_ptr(n_f, f, 0); f 20043 third_party/libxml/src/testapi.c FILE * f; /* the FILE* */ f 20054 third_party/libxml/src/testapi.c f = gen_FILE_ptr(n_f, 0); f 20058 third_party/libxml/src/testapi.c ret_val = xmlDocFormatDump(f, cur, format); f 20061 third_party/libxml/src/testapi.c des_FILE_ptr(n_f, f, 0); f 20164 third_party/libxml/src/testapi.c FILE * f; /* the FILE * for the output */ f 20175 third_party/libxml/src/testapi.c f = gen_FILE_ptr(n_f, 0); f 20179 third_party/libxml/src/testapi.c xmlElemDump(f, doc, cur); f 20181 third_party/libxml/src/testapi.c des_FILE_ptr(n_f, f, 0); f 31022 third_party/libxml/src/testapi.c xmlTextReaderErrorFunc * f; /* the callback function or NULL is no callback has been registered */ f 31032 third_party/libxml/src/testapi.c f = gen_xmlTextReaderErrorFunc_ptr(n_f, 1); f 31035 third_party/libxml/src/testapi.c xmlTextReaderGetErrorHandler(reader, f, arg); f 31038 third_party/libxml/src/testapi.c des_xmlTextReaderErrorFunc_ptr(n_f, f, 1); f 706 third_party/libxml/src/xmlIO.c typedef int (* xmlWrapStatFunc) (const char *f, struct stat *s); f 708 third_party/libxml/src/xmlIO.c typedef FILE* (* xmlWrapOpenFunc)(const char *f,int mode); f 711 third_party/libxml/src/xmlIO.c typedef gzFile (* xmlWrapGzOpenFunc) (const char *f, const char *mode); f 3901 third_party/libxml/src/xmlIO.c xmlSetExternalEntityLoader(xmlExternalEntityLoader f) { f 3902 third_party/libxml/src/xmlIO.c xmlCurrentExternalEntityLoader = f; f 826 third_party/libxml/src/xmllint.c static int myRead(FILE *f, char * buf, int len) { f 827 third_party/libxml/src/xmllint.c return(fread(buf, 1, len, f)); f 829 third_party/libxml/src/xmllint.c static void myClose(FILE *f) { f 830 third_party/libxml/src/xmllint.c if (f != stdin) { f 831 third_party/libxml/src/xmllint.c fclose(f); f 2181 third_party/libxml/src/xmllint.c FILE *f; f 2184 third_party/libxml/src/xmllint.c f = fopen(filename, "rb"); f 2186 third_party/libxml/src/xmllint.c f = fopen(filename, "r"); f 2188 third_party/libxml/src/xmllint.c if (f != NULL) { f 2195 third_party/libxml/src/xmllint.c res = fread(chars, 1, 4, f); f 2199 third_party/libxml/src/xmllint.c while ((res = fread(chars, 1, size, f)) > 0) { f 2206 third_party/libxml/src/xmllint.c fclose(f); f 2240 third_party/libxml/src/xmllint.c FILE *f; f 2244 third_party/libxml/src/xmllint.c f = stdin; f 2247 third_party/libxml/src/xmllint.c f = fopen(filename, "rb"); f 2249 third_party/libxml/src/xmllint.c f = fopen(filename, "r"); f 2252 third_party/libxml/src/xmllint.c if (f != NULL) { f 2259 third_party/libxml/src/xmllint.c res = fread(chars, 1, 4, f); f 2264 third_party/libxml/src/xmllint.c while ((res = fread(chars, 1, size, f)) > 0) { f 2276 third_party/libxml/src/xmllint.c if (f != stdin) f 2277 third_party/libxml/src/xmllint.c fclose(f); f 2285 third_party/libxml/src/xmllint.c FILE *f; f 2288 third_party/libxml/src/xmllint.c f = fopen(filename, "rb"); f 2290 third_party/libxml/src/xmllint.c f = fopen(filename, "r"); f 2292 third_party/libxml/src/xmllint.c if (f != NULL) { f 2295 third_party/libxml/src/xmllint.c (xmlInputCloseCallback) myClose, f, f 2300 third_party/libxml/src/xmllint.c (xmlInputCloseCallback) myClose, f, f 4748 third_party/libxml/src/xmlreader.c xmlTextReaderErrorFunc f, void *arg) f 4750 third_party/libxml/src/xmlreader.c if (f != NULL) { f 4756 third_party/libxml/src/xmlreader.c reader->errorFunc = f; f 4815 third_party/libxml/src/xmlreader.c xmlStructuredErrorFunc f, void *arg) f 4817 third_party/libxml/src/xmlreader.c if (f != NULL) { f 4823 third_party/libxml/src/xmlreader.c reader->sErrorFunc = f; f 4903 third_party/libxml/src/xmlreader.c xmlTextReaderErrorFunc * f, void **arg) f 4905 third_party/libxml/src/xmlreader.c if (f != NULL) f 4906 third_party/libxml/src/xmlreader.c *f = reader->errorFunc; f 2061 third_party/libxml/src/xmlsave.c xmlElemDump(FILE * f, xmlDocPtr doc, xmlNodePtr cur) f 2081 third_party/libxml/src/xmlsave.c outbuf = xmlOutputBufferCreateFile(f, NULL); f 2310 third_party/libxml/src/xmlsave.c xmlDocFormatDump(FILE *f, xmlDocPtr cur, int format) { f 2334 third_party/libxml/src/xmlsave.c buf = xmlOutputBufferCreateFile(f, handler); f 2360 third_party/libxml/src/xmlsave.c xmlDocDump(FILE *f, xmlDocPtr cur) { f 2361 third_party/libxml/src/xmlsave.c return(xmlDocFormatDump (f, cur, 0)); f 126 third_party/libxml/src/xmlschemastypes.c float f; f 1887 third_party/libxml/src/xmlschemastypes.c const xmlChar *start = value, *end, *f; f 1893 third_party/libxml/src/xmlschemastypes.c f = end; f 1897 third_party/libxml/src/xmlschemastypes.c if ((start == value) && (f == end)) return(NULL); f 1944 third_party/libxml/src/xmlschemastypes.c const xmlChar *start = value, *end, *f; f 1962 third_party/libxml/src/xmlschemastypes.c f = end; f 1966 third_party/libxml/src/xmlschemastypes.c if ((start == value) && (f == end)) return(NULL); f 2407 third_party/libxml/src/xmlschemastypes.c v->value.f = (float) xmlXPathNAN; f 2438 third_party/libxml/src/xmlschemastypes.c v->value.f = (float) xmlXPathNINF; f 2440 third_party/libxml/src/xmlschemastypes.c v->value.f = (float) xmlXPathPINF; f 2495 third_party/libxml/src/xmlschemastypes.c &(v->value.f)) == 1) { f 4600 third_party/libxml/src/xmlschemastypes.c d1 = x->value.f; f 4607 third_party/libxml/src/xmlschemastypes.c d2 = y->value.f; f 6031 third_party/libxml/src/xmlschemastypes.c snprintf(buf, 30, "%01.14e", val->value.f); f 4727 third_party/libxml/src/xpath.c xmlXPathFunction f) { f 4728 third_party/libxml/src/xpath.c return(xmlXPathRegisterFuncNS(ctxt, name, NULL, f)); f 4744 third_party/libxml/src/xpath.c const xmlChar *ns_uri, xmlXPathFunction f) { f 4754 third_party/libxml/src/xpath.c if (f == NULL) f 4756 third_party/libxml/src/xpath.c return(xmlHashAddEntry2(ctxt->funcHash, name, ns_uri, XML_CAST_FPTR(f))); f 4769 third_party/libxml/src/xpath.c xmlXPathFuncLookupFunc f, f 4773 third_party/libxml/src/xpath.c ctxt->funcLookupFunc = f; f 4794 third_party/libxml/src/xpath.c xmlXPathFuncLookupFunc f; f 4796 third_party/libxml/src/xpath.c f = ctxt->funcLookupFunc; f 4797 third_party/libxml/src/xpath.c ret = f(ctxt->funcLookupData, name, NULL); f 4826 third_party/libxml/src/xpath.c xmlXPathFuncLookupFunc f; f 4828 third_party/libxml/src/xpath.c f = ctxt->funcLookupFunc; f 4829 third_party/libxml/src/xpath.c ret = f(ctxt->funcLookupData, name, ns_uri); f 4922 third_party/libxml/src/xpath.c xmlXPathVariableLookupFunc f, void *data) { f 4925 third_party/libxml/src/xpath.c ctxt->varLookupFunc = f; f 6355 third_party/libxml/src/xpath.c xmlXPathObjectPtr arg, xmlXPathObjectPtr f) { f 6360 third_party/libxml/src/xpath.c if ((f == NULL) || (arg == NULL) || f 6363 third_party/libxml/src/xpath.c xmlXPathReleaseObject(ctxt->context, f); f 6375 third_party/libxml/src/xpath.c valuePush(ctxt, xmlXPathCacheObjectCopy(ctxt->context, f)); f 6383 third_party/libxml/src/xpath.c xmlXPathReleaseObject(ctxt->context, f); f 6665 third_party/libxml/src/xpath.c xmlXPathObjectPtr arg, double f, int neq) { f 6688 third_party/libxml/src/xpath.c if ((!neq) && (v==f)) { f 6691 third_party/libxml/src/xpath.c } else if ((neq) && (v!=f)) { f 9513 third_party/libxml/src/xpath.c #define XTRUNC(f, v) \ f 9514 third_party/libxml/src/xpath.c f = fmod((v), INT_MAX); \ f 9515 third_party/libxml/src/xpath.c f = (v) - (f) + (double)((int)(f)); f 9529 third_party/libxml/src/xpath.c double f; f 9535 third_party/libxml/src/xpath.c XTRUNC(f, ctxt->value->floatval); f 9536 third_party/libxml/src/xpath.c if (f != ctxt->value->floatval) { f 9538 third_party/libxml/src/xpath.c ctxt->value->floatval = f; f 9540 third_party/libxml/src/xpath.c ctxt->value->floatval = f - 1; f 9556 third_party/libxml/src/xpath.c double f; f 9565 third_party/libxml/src/xpath.c XTRUNC(f, ctxt->value->floatval); f 9566 third_party/libxml/src/xpath.c if (f != ctxt->value->floatval) { f 9568 third_party/libxml/src/xpath.c ctxt->value->floatval = f + 1; f 9570 third_party/libxml/src/xpath.c if (ctxt->value->floatval < 0 && f == 0) f 9573 third_party/libxml/src/xpath.c ctxt->value->floatval = f; f 9593 third_party/libxml/src/xpath.c double f; f 9605 third_party/libxml/src/xpath.c XTRUNC(f, ctxt->value->floatval); f 9607 third_party/libxml/src/xpath.c if (ctxt->value->floatval < f - 0.5) f 9608 third_party/libxml/src/xpath.c ctxt->value->floatval = f - 1; f 9610 third_party/libxml/src/xpath.c ctxt->value->floatval = f; f 9614 third_party/libxml/src/xpath.c if (ctxt->value->floatval < f + 0.5) f 9615 third_party/libxml/src/xpath.c ctxt->value->floatval = f; f 9617 third_party/libxml/src/xpath.c ctxt->value->floatval = f + 1; f 12836 third_party/libxml/src/xpath.c int f = comp->steps[op->ch2].ch1; f 12838 third_party/libxml/src/xpath.c if ((f != -1) && f 12839 third_party/libxml/src/xpath.c (comp->steps[f].op == XPATH_OP_FUNCTION) && f 12840 third_party/libxml/src/xpath.c (comp->steps[f].value5 == NULL) && f 12841 third_party/libxml/src/xpath.c (comp->steps[f].value == 0) && f 12842 third_party/libxml/src/xpath.c (comp->steps[f].value4 != NULL) && f 12844 third_party/libxml/src/xpath.c (comp->steps[f].value4, BAD_CAST "last"))) { f 13506 third_party/libxml/src/xpath.c int f = comp->steps[op->ch2].ch1; f 13508 third_party/libxml/src/xpath.c if ((f != -1) && f 13509 third_party/libxml/src/xpath.c (comp->steps[f].op == XPATH_OP_FUNCTION) && f 13510 third_party/libxml/src/xpath.c (comp->steps[f].value5 == NULL) && f 13511 third_party/libxml/src/xpath.c (comp->steps[f].value == 0) && f 13512 third_party/libxml/src/xpath.c (comp->steps[f].value4 != NULL) && f 13514 third_party/libxml/src/xpath.c (comp->steps[f].value4, BAD_CAST "last"))) { f 100 third_party/libxml/win32/config.h #define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a) f 121 third_party/libxslt/libxslt/documents.c xsltSetLoaderFunc(xsltDocLoaderFunc f) { f 122 third_party/libxslt/libxslt/documents.c if (f == NULL) f 125 third_party/libxslt/libxslt/documents.c xsltDocDefaultLoader = f; f 83 third_party/libxslt/libxslt/documents.h xsltSetLoaderFunc (xsltDocLoaderFunc f); f 84 third_party/libxslt/libxslt/win32config.h #define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a) f 269 third_party/lzma_sdk/7zDec.c static SRes CheckSupportedFolder(const CSzFolder *f) f 271 third_party/lzma_sdk/7zDec.c if (f->NumCoders < 1 || f->NumCoders > 4) f 273 third_party/lzma_sdk/7zDec.c if (!IS_SUPPORTED_CODER(&f->Coders[0])) f 275 third_party/lzma_sdk/7zDec.c if (f->NumCoders == 1) f 277 third_party/lzma_sdk/7zDec.c if (f->NumPackStreams != 1 || f->PackStreams[0] != 0 || f->NumBindPairs != 0) f 281 third_party/lzma_sdk/7zDec.c if (f->NumCoders == 2) f 283 third_party/lzma_sdk/7zDec.c CSzCoderInfo *c = &f->Coders[1]; f 287 third_party/lzma_sdk/7zDec.c f->NumPackStreams != 1 || f 288 third_party/lzma_sdk/7zDec.c f->PackStreams[0] != 0 || f 289 third_party/lzma_sdk/7zDec.c f->NumBindPairs != 1 || f 290 third_party/lzma_sdk/7zDec.c f->BindPairs[0].InIndex != 1 || f 291 third_party/lzma_sdk/7zDec.c f->BindPairs[0].OutIndex != 0) f 303 third_party/lzma_sdk/7zDec.c if (f->NumCoders == 4) f 305 third_party/lzma_sdk/7zDec.c if (!IS_SUPPORTED_CODER(&f->Coders[1]) || f 306 third_party/lzma_sdk/7zDec.c !IS_SUPPORTED_CODER(&f->Coders[2]) || f 307 third_party/lzma_sdk/7zDec.c !IS_BCJ2(&f->Coders[3])) f 309 third_party/lzma_sdk/7zDec.c if (f->NumPackStreams != 4 || f 310 third_party/lzma_sdk/7zDec.c f->PackStreams[0] != 2 || f 311 third_party/lzma_sdk/7zDec.c f->PackStreams[1] != 6 || f 312 third_party/lzma_sdk/7zDec.c f->PackStreams[2] != 1 || f 313 third_party/lzma_sdk/7zDec.c f->PackStreams[3] != 0 || f 314 third_party/lzma_sdk/7zDec.c f->NumBindPairs != 3 || f 315 third_party/lzma_sdk/7zDec.c f->BindPairs[0].InIndex != 5 || f->BindPairs[0].OutIndex != 0 || f 316 third_party/lzma_sdk/7zDec.c f->BindPairs[1].InIndex != 4 || f->BindPairs[1].OutIndex != 1 || f 317 third_party/lzma_sdk/7zDec.c f->BindPairs[2].InIndex != 3 || f->BindPairs[2].OutIndex != 2) f 1047 third_party/lzma_sdk/7zIn.c CSzFileItem *f = &files[i]; f 1049 third_party/lzma_sdk/7zIn.c f->AttribDefined = defined; f 1050 third_party/lzma_sdk/7zIn.c f->Attrib = 0; f 1053 third_party/lzma_sdk/7zIn.c RINOK(SzReadUInt32(sd, &f->Attrib)); f 1066 third_party/lzma_sdk/7zIn.c CSzFileItem *f = &files[i]; f 1068 third_party/lzma_sdk/7zIn.c f->MTimeDefined = defined; f 1069 third_party/lzma_sdk/7zIn.c f->MTime.Low = f->MTime.High = 0; f 1072 third_party/lzma_sdk/7zIn.c RINOK(SzReadUInt32(sd, &f->MTime.Low)); f 1073 third_party/lzma_sdk/7zIn.c RINOK(SzReadUInt32(sd, &f->MTime.High)); f 99 third_party/mach_override/libudis86/input.c ud_set_input_file(register struct ud* u, FILE* f) f 102 third_party/mach_override/libudis86/input.c u->inp_file = f; f 129 third_party/npapi/npspy/extern/java/jni.h jfloat f; f 266 third_party/npapi/npspy/extern/java/jri_md.h #define jlong_L2F(f, l) ((f) = (l)) f 271 third_party/npapi/npspy/extern/java/jri_md.h #define jlong_F2L(l, f) ((l) = (f)) f 485 third_party/npapi/npspy/extern/java/jri_md.h #define jlong_L2F(f, l) { double _d; jlong_L2D(_d, l); (f) = (float) _d; } f 504 third_party/npapi/npspy/extern/java/jri_md.h #define jlong_F2L(l, f) { double _d = (double) f; jlong_D2L(l, _d); } f 77 third_party/npapi/npspy/extern/java/jritypes.h jfloat f; f 218 third_party/npapi/npspy/extern/java/jritypes.h jfloat f; f 235 third_party/npapi/npspy/extern/java/jritypes.h float f; f 343 third_party/npapi/npspy/extern/nspr/md/_macos.h #define _MD_CREATE_THREAD(a,b,c,d,e,f) (PR_SUCCESS) f 279 third_party/npapi/npspy/extern/nspr/md/_os2.h extern void _MD_MakeNonblock(PRFileDesc *f); f 153 third_party/npapi/npspy/extern/nspr/md/_pth.h #define _PT_PTHREAD_CREATE(t, a, f, r) pthread_create(t, a, f, r) f 163 third_party/npapi/npspy/extern/nspr/md/_pth.h #define _PT_PTHREAD_CREATE(t, a, f, r) pthread_create(t, &a, f, r) f 354 third_party/npapi/npspy/extern/nspr/md/_win16.h #define _MD_CREATE_THREAD(t,f,p,sc,st,stsiz) (PR_SUCCESS) f 283 third_party/npapi/npspy/extern/nspr/md/_win95.h extern void _MD_MakeNonblock(PRFileDesc *f); f 274 third_party/npapi/npspy/extern/nspr/md/_winnt.h #define _MD_CLOSE_FILE(f) _PR_MD_CLOSE(f, PR_FALSE) f 127 third_party/npapi/npspy/extern/nspr/plhash.h PL_HashTableEnumerateEntries(PLHashTable *ht, PLHashEnumerator f, void *arg); f 178 third_party/npapi/npspy/extern/nspr/prlong.h #define LL_L2F(f, l) ((f) = (PRFloat64)(l)) f 183 third_party/npapi/npspy/extern/nspr/prlong.h #define LL_F2L(l, f) ((l) = (PRInt64)(f)) f 380 third_party/npapi/npspy/extern/nspr/prlong.h #define LL_L2F(f, l) { double _d; LL_L2D(_d, l); (f) = (PRFloat64)_d; } f 399 third_party/npapi/npspy/extern/nspr/prlong.h #define LL_F2L(l, f) { double _d = (double)f; LL_D2L(l, _d); } f 98 third_party/npapi/npspy/extern/nspr/prprf.h NSPR_API(PRUint32) PR_sxprintf(PRStuffFunc f, void *arg, const char *fmt, ...); f 111 third_party/npapi/npspy/extern/nspr/prprf.h NSPR_API(PRUint32) PR_vsxprintf(PRStuffFunc f, void *arg, const char *fmt, va_list ap); f 425 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java TestAllExtensions f = TestAllExtensions.newBuilder(e) f 433 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkEqualsIsConsistent(f); f 439 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkNotEqual(a, f); f 444 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkNotEqual(b, f); f 448 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkNotEqual(c, f); f 451 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkNotEqual(d, f); f 453 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkNotEqual(e, f); f 460 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java UnittestProto.TestEmptyMessage.parseFrom(f.toByteArray()); f 2934 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_int32" ), 101 ); f 2935 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_int64" ), 102L); f 2936 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_uint32" ), 103 ); f 2937 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_uint64" ), 104L); f 2938 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_sint32" ), 105 ); f 2939 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_sint64" ), 106L); f 2940 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_fixed32" ), 107 ); f 2941 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_fixed64" ), 108L); f 2942 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_sfixed32"), 109 ); f 2943 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_sfixed64"), 110L); f 2944 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_float" ), 111F); f 2945 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_double" ), 112D); f 2946 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_bool" ), true); f 2947 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_string" ), "115"); f 2948 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_bytes" ), toBytes("116")); f 2950 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optionalgroup"), f 2951 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("optionalgroup")) f 2953 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_nested_message"), f 2954 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("optional_nested_message")) f 2956 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_foreign_message"), f 2957 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("optional_foreign_message")) f 2959 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_import_message"), f 2960 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("optional_import_message")) f 2962 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_public_import_message"), f 2963 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("optional_public_import_message")) f 2965 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_lazy_message"), f 2966 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("optional_lazy_message")) f 2969 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_nested_enum" ), nestedBaz); f 2970 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_foreign_enum"), foreignBaz); f 2971 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_import_enum" ), importBaz); f 2973 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_string_piece" ), "124"); f 2974 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("optional_cord" ), "125"); f 2978 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_int32" ), 201 ); f 2979 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_int64" ), 202L); f 2980 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_uint32" ), 203 ); f 2981 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_uint64" ), 204L); f 2982 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_sint32" ), 205 ); f 2983 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_sint64" ), 206L); f 2984 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_fixed32" ), 207 ); f 2985 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_fixed64" ), 208L); f 2986 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_sfixed32"), 209 ); f 2987 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_sfixed64"), 210L); f 2988 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_float" ), 211F); f 2989 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_double" ), 212D); f 2990 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_bool" ), true); f 2991 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_string" ), "215"); f 2992 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_bytes" ), toBytes("216")); f 2994 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeatedgroup"), f 2995 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeatedgroup")) f 2997 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_nested_message"), f 2998 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_nested_message")) f 3000 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_foreign_message"), f 3001 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_foreign_message")) f 3003 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_import_message"), f 3004 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_import_message")) f 3006 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_lazy_message"), f 3007 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_lazy_message")) f 3010 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_nested_enum" ), nestedBar); f 3011 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_foreign_enum"), foreignBar); f 3012 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_import_enum" ), importBar); f 3014 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_string_piece" ), "224"); f 3015 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_cord" ), "225"); f 3018 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_int32" ), 301 ); f 3019 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_int64" ), 302L); f 3020 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_uint32" ), 303 ); f 3021 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_uint64" ), 304L); f 3022 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_sint32" ), 305 ); f 3023 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_sint64" ), 306L); f 3024 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_fixed32" ), 307 ); f 3025 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_fixed64" ), 308L); f 3026 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_sfixed32"), 309 ); f 3027 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_sfixed64"), 310L); f 3028 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_float" ), 311F); f 3029 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_double" ), 312D); f 3030 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_bool" ), false); f 3031 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_string" ), "315"); f 3032 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_bytes" ), toBytes("316")); f 3034 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeatedgroup"), f 3035 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeatedgroup")) f 3037 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_nested_message"), f 3038 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_nested_message")) f 3040 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_foreign_message"), f 3041 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_foreign_message")) f 3043 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_import_message"), f 3044 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_import_message")) f 3046 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_lazy_message"), f 3047 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_lazy_message")) f 3050 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_nested_enum" ), nestedBaz); f 3051 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_foreign_enum"), foreignBaz); f 3052 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_import_enum" ), importBaz); f 3054 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_string_piece" ), "324"); f 3055 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("repeated_cord" ), "325"); f 3059 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_int32" ), 401 ); f 3060 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_int64" ), 402L); f 3061 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_uint32" ), 403 ); f 3062 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_uint64" ), 404L); f 3063 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_sint32" ), 405 ); f 3064 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_sint64" ), 406L); f 3065 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_fixed32" ), 407 ); f 3066 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_fixed64" ), 408L); f 3067 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_sfixed32"), 409 ); f 3068 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_sfixed64"), 410L); f 3069 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_float" ), 411F); f 3070 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_double" ), 412D); f 3071 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_bool" ), false); f 3072 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_string" ), "415"); f 3073 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_bytes" ), toBytes("416")); f 3075 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_nested_enum" ), nestedFoo); f 3076 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_foreign_enum"), foreignFoo); f 3077 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_import_enum" ), importFoo); f 3079 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_string_piece" ), "424"); f 3080 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setField(f("default_cord" ), "425"); f 3091 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_int32" ), 1, 501 ); f 3092 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_int64" ), 1, 502L); f 3093 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_uint32" ), 1, 503 ); f 3094 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_uint64" ), 1, 504L); f 3095 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_sint32" ), 1, 505 ); f 3096 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_sint64" ), 1, 506L); f 3097 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_fixed32" ), 1, 507 ); f 3098 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_fixed64" ), 1, 508L); f 3099 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_sfixed32"), 1, 509 ); f 3100 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_sfixed64"), 1, 510L); f 3101 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_float" ), 1, 511F); f 3102 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_double" ), 1, 512D); f 3103 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_bool" ), 1, true); f 3104 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_string" ), 1, "515"); f 3105 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_bytes" ), 1, toBytes("516")); f 3107 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeatedgroup"), 1, f 3108 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeatedgroup")) f 3110 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_nested_message"), 1, f 3111 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_nested_message")) f 3113 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_foreign_message"), 1, f 3114 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_foreign_message")) f 3116 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_import_message"), 1, f 3117 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_import_message")) f 3119 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_lazy_message"), 1, f 3120 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java newBuilderForField(message, f("repeated_lazy_message")) f 3123 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_nested_enum" ), 1, nestedFoo); f 3124 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_foreign_enum"), 1, foreignFoo); f 3125 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_import_enum" ), 1, importFoo); f 3127 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_string_piece"), 1, "524"); f 3128 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.setRepeatedField(f("repeated_cord"), 1, "525"); f 3139 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_int32" ))); f 3140 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_int64" ))); f 3141 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_uint32" ))); f 3142 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_uint64" ))); f 3143 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_sint32" ))); f 3144 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_sint64" ))); f 3145 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_fixed32" ))); f 3146 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_fixed64" ))); f 3147 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_sfixed32"))); f 3148 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_sfixed64"))); f 3149 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_float" ))); f 3150 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_double" ))); f 3151 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_bool" ))); f 3152 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_string" ))); f 3153 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_bytes" ))); f 3155 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optionalgroup" ))); f 3156 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_nested_message" ))); f 3157 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_foreign_message"))); f 3158 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_import_message" ))); f 3161 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optionalgroup"))).hasField(groupA)); f 3163 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_nested_message"))) f 3166 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_foreign_message"))) f 3169 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_import_message"))) f 3172 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_nested_enum" ))); f 3173 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_foreign_enum"))); f 3174 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_import_enum" ))); f 3176 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_string_piece"))); f 3177 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("optional_cord"))); f 3179 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(101 , message.getField(f("optional_int32" ))); f 3180 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(102L , message.getField(f("optional_int64" ))); f 3181 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(103 , message.getField(f("optional_uint32" ))); f 3182 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(104L , message.getField(f("optional_uint64" ))); f 3183 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(105 , message.getField(f("optional_sint32" ))); f 3184 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(106L , message.getField(f("optional_sint64" ))); f 3185 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(107 , message.getField(f("optional_fixed32" ))); f 3186 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(108L , message.getField(f("optional_fixed64" ))); f 3187 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(109 , message.getField(f("optional_sfixed32"))); f 3188 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(110L , message.getField(f("optional_sfixed64"))); f 3189 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(111F , message.getField(f("optional_float" ))); f 3190 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(112D , message.getField(f("optional_double" ))); f 3191 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(true , message.getField(f("optional_bool" ))); f 3192 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("115", message.getField(f("optional_string" ))); f 3193 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(toBytes("116"), message.getField(f("optional_bytes"))); f 3196 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optionalgroup"))).getField(groupA)); f 3198 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_nested_message"))) f 3201 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_foreign_message"))) f 3204 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_import_message"))) f 3207 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_public_import_message"))) f 3210 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_lazy_message"))) f 3213 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( nestedBaz, message.getField(f("optional_nested_enum" ))); f 3214 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(foreignBaz, message.getField(f("optional_foreign_enum"))); f 3215 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( importBaz, message.getField(f("optional_import_enum" ))); f 3217 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("124", message.getField(f("optional_string_piece"))); f 3218 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("125", message.getField(f("optional_cord"))); f 3222 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_int32" ))); f 3223 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_int64" ))); f 3224 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_uint32" ))); f 3225 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_uint64" ))); f 3226 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_sint32" ))); f 3227 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_sint64" ))); f 3228 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_fixed32" ))); f 3229 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_fixed64" ))); f 3230 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_sfixed32"))); f 3231 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_sfixed64"))); f 3232 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_float" ))); f 3233 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_double" ))); f 3234 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_bool" ))); f 3235 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_string" ))); f 3236 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_bytes" ))); f 3238 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeatedgroup" ))); f 3239 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_nested_message" ))); f 3240 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_foreign_message"))); f 3241 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_import_message" ))); f 3242 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_lazy_message" ))); f 3243 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_nested_enum" ))); f 3244 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_foreign_enum" ))); f 3245 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_import_enum" ))); f 3247 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_string_piece"))); f 3248 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_cord"))); f 3250 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(201 , message.getRepeatedField(f("repeated_int32" ), 0)); f 3251 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(202L , message.getRepeatedField(f("repeated_int64" ), 0)); f 3252 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(203 , message.getRepeatedField(f("repeated_uint32" ), 0)); f 3253 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(204L , message.getRepeatedField(f("repeated_uint64" ), 0)); f 3254 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(205 , message.getRepeatedField(f("repeated_sint32" ), 0)); f 3255 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(206L , message.getRepeatedField(f("repeated_sint64" ), 0)); f 3256 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(207 , message.getRepeatedField(f("repeated_fixed32" ), 0)); f 3257 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(208L , message.getRepeatedField(f("repeated_fixed64" ), 0)); f 3258 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(209 , message.getRepeatedField(f("repeated_sfixed32"), 0)); f 3259 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(210L , message.getRepeatedField(f("repeated_sfixed64"), 0)); f 3260 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(211F , message.getRepeatedField(f("repeated_float" ), 0)); f 3261 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(212D , message.getRepeatedField(f("repeated_double" ), 0)); f 3262 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(true , message.getRepeatedField(f("repeated_bool" ), 0)); f 3263 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("215", message.getRepeatedField(f("repeated_string" ), 0)); f 3264 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(toBytes("216"), message.getRepeatedField(f("repeated_bytes"), 0)); f 3267 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeatedgroup"), 0)) f 3270 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_nested_message"), 0)) f 3273 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_foreign_message"), 0)) f 3276 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_import_message"), 0)) f 3279 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_lazy_message"), 0)) f 3282 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( nestedBar, message.getRepeatedField(f("repeated_nested_enum" ),0)); f 3283 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(foreignBar, message.getRepeatedField(f("repeated_foreign_enum"),0)); f 3284 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( importBar, message.getRepeatedField(f("repeated_import_enum" ),0)); f 3286 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("224", message.getRepeatedField(f("repeated_string_piece"), 0)); f 3287 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("225", message.getRepeatedField(f("repeated_cord"), 0)); f 3289 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(301 , message.getRepeatedField(f("repeated_int32" ), 1)); f 3290 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(302L , message.getRepeatedField(f("repeated_int64" ), 1)); f 3291 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(303 , message.getRepeatedField(f("repeated_uint32" ), 1)); f 3292 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(304L , message.getRepeatedField(f("repeated_uint64" ), 1)); f 3293 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(305 , message.getRepeatedField(f("repeated_sint32" ), 1)); f 3294 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(306L , message.getRepeatedField(f("repeated_sint64" ), 1)); f 3295 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(307 , message.getRepeatedField(f("repeated_fixed32" ), 1)); f 3296 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(308L , message.getRepeatedField(f("repeated_fixed64" ), 1)); f 3297 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(309 , message.getRepeatedField(f("repeated_sfixed32"), 1)); f 3298 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(310L , message.getRepeatedField(f("repeated_sfixed64"), 1)); f 3299 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(311F , message.getRepeatedField(f("repeated_float" ), 1)); f 3300 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(312D , message.getRepeatedField(f("repeated_double" ), 1)); f 3301 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(false, message.getRepeatedField(f("repeated_bool" ), 1)); f 3302 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("315", message.getRepeatedField(f("repeated_string" ), 1)); f 3303 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(toBytes("316"), message.getRepeatedField(f("repeated_bytes"), 1)); f 3306 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeatedgroup"), 1)) f 3309 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_nested_message"), 1)) f 3312 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_foreign_message"), 1)) f 3315 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_import_message"), 1)) f 3318 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_lazy_message"), 1)) f 3321 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( nestedBaz, message.getRepeatedField(f("repeated_nested_enum" ),1)); f 3322 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(foreignBaz, message.getRepeatedField(f("repeated_foreign_enum"),1)); f 3323 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( importBaz, message.getRepeatedField(f("repeated_import_enum" ),1)); f 3325 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("324", message.getRepeatedField(f("repeated_string_piece"), 1)); f 3326 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("325", message.getRepeatedField(f("repeated_cord"), 1)); f 3330 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_int32" ))); f 3331 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_int64" ))); f 3332 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_uint32" ))); f 3333 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_uint64" ))); f 3334 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_sint32" ))); f 3335 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_sint64" ))); f 3336 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_fixed32" ))); f 3337 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_fixed64" ))); f 3338 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_sfixed32"))); f 3339 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_sfixed64"))); f 3340 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_float" ))); f 3341 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_double" ))); f 3342 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_bool" ))); f 3343 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_string" ))); f 3344 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_bytes" ))); f 3346 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_nested_enum" ))); f 3347 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_foreign_enum"))); f 3348 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_import_enum" ))); f 3350 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_string_piece"))); f 3351 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertTrue(message.hasField(f("default_cord"))); f 3353 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(401 , message.getField(f("default_int32" ))); f 3354 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(402L , message.getField(f("default_int64" ))); f 3355 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(403 , message.getField(f("default_uint32" ))); f 3356 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(404L , message.getField(f("default_uint64" ))); f 3357 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(405 , message.getField(f("default_sint32" ))); f 3358 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(406L , message.getField(f("default_sint64" ))); f 3359 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(407 , message.getField(f("default_fixed32" ))); f 3360 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(408L , message.getField(f("default_fixed64" ))); f 3361 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(409 , message.getField(f("default_sfixed32"))); f 3362 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(410L , message.getField(f("default_sfixed64"))); f 3363 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(411F , message.getField(f("default_float" ))); f 3364 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(412D , message.getField(f("default_double" ))); f 3365 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(false, message.getField(f("default_bool" ))); f 3366 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("415", message.getField(f("default_string" ))); f 3367 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(toBytes("416"), message.getField(f("default_bytes"))); f 3369 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( nestedFoo, message.getField(f("default_nested_enum" ))); f 3370 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(foreignFoo, message.getField(f("default_foreign_enum"))); f 3371 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( importFoo, message.getField(f("default_import_enum" ))); f 3373 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("424", message.getField(f("default_string_piece"))); f 3374 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("425", message.getField(f("default_cord"))); f 3386 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_int32" ))); f 3387 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_int64" ))); f 3388 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_uint32" ))); f 3389 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_uint64" ))); f 3390 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_sint32" ))); f 3391 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_sint64" ))); f 3392 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_fixed32" ))); f 3393 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_fixed64" ))); f 3394 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_sfixed32"))); f 3395 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_sfixed64"))); f 3396 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_float" ))); f 3397 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_double" ))); f 3398 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_bool" ))); f 3399 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_string" ))); f 3400 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_bytes" ))); f 3402 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optionalgroup" ))); f 3403 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_nested_message" ))); f 3404 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_foreign_message"))); f 3405 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_import_message" ))); f 3407 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_nested_enum" ))); f 3408 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_foreign_enum"))); f 3409 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_import_enum" ))); f 3411 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_string_piece"))); f 3412 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("optional_cord"))); f 3415 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0 , message.getField(f("optional_int32" ))); f 3416 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0L , message.getField(f("optional_int64" ))); f 3417 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0 , message.getField(f("optional_uint32" ))); f 3418 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0L , message.getField(f("optional_uint64" ))); f 3419 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0 , message.getField(f("optional_sint32" ))); f 3420 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0L , message.getField(f("optional_sint64" ))); f 3421 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0 , message.getField(f("optional_fixed32" ))); f 3422 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0L , message.getField(f("optional_fixed64" ))); f 3423 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0 , message.getField(f("optional_sfixed32"))); f 3424 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0L , message.getField(f("optional_sfixed64"))); f 3425 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0F , message.getField(f("optional_float" ))); f 3426 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0D , message.getField(f("optional_double" ))); f 3427 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(false, message.getField(f("optional_bool" ))); f 3428 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("" , message.getField(f("optional_string" ))); f 3429 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(ByteString.EMPTY, message.getField(f("optional_bytes"))); f 3433 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optionalgroup"))).hasField(groupA)); f 3435 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_nested_message"))) f 3438 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_foreign_message"))) f 3441 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_import_message"))) f 3444 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_public_import_message"))) f 3447 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_lazy_message"))) f 3451 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optionalgroup"))).getField(groupA)); f 3453 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_nested_message"))) f 3456 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_foreign_message"))) f 3459 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_import_message"))) f 3462 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_public_import_message"))) f 3465 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getField(f("optional_lazy_message"))) f 3469 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( nestedFoo, message.getField(f("optional_nested_enum" ))); f 3470 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(foreignFoo, message.getField(f("optional_foreign_enum"))); f 3471 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( importFoo, message.getField(f("optional_import_enum" ))); f 3473 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("", message.getField(f("optional_string_piece"))); f 3474 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("", message.getField(f("optional_cord"))); f 3477 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_int32" ))); f 3478 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_int64" ))); f 3479 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_uint32" ))); f 3480 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_uint64" ))); f 3481 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_sint32" ))); f 3482 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_sint64" ))); f 3483 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_fixed32" ))); f 3484 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_fixed64" ))); f 3485 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_sfixed32"))); f 3486 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_sfixed64"))); f 3487 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_float" ))); f 3488 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_double" ))); f 3489 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_bool" ))); f 3490 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_string" ))); f 3491 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_bytes" ))); f 3493 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeatedgroup" ))); f 3494 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_nested_message" ))); f 3495 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_foreign_message"))); f 3496 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_import_message" ))); f 3497 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_lazy_message" ))); f 3498 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_nested_enum" ))); f 3499 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_foreign_enum" ))); f 3500 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_import_enum" ))); f 3502 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_string_piece"))); f 3503 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(0, message.getRepeatedFieldCount(f("repeated_cord"))); f 3506 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_int32" ))); f 3507 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_int64" ))); f 3508 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_uint32" ))); f 3509 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_uint64" ))); f 3510 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_sint32" ))); f 3511 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_sint64" ))); f 3512 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_fixed32" ))); f 3513 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_fixed64" ))); f 3514 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_sfixed32"))); f 3515 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_sfixed64"))); f 3516 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_float" ))); f 3517 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_double" ))); f 3518 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_bool" ))); f 3519 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_string" ))); f 3520 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_bytes" ))); f 3522 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_nested_enum" ))); f 3523 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_foreign_enum"))); f 3524 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_import_enum" ))); f 3526 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_string_piece" ))); f 3527 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertFalse(message.hasField(f("default_cord" ))); f 3530 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( 41 , message.getField(f("default_int32" ))); f 3531 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( 42L , message.getField(f("default_int64" ))); f 3532 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( 43 , message.getField(f("default_uint32" ))); f 3533 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( 44L , message.getField(f("default_uint64" ))); f 3534 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(-45 , message.getField(f("default_sint32" ))); f 3535 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( 46L , message.getField(f("default_sint64" ))); f 3536 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( 47 , message.getField(f("default_fixed32" ))); f 3537 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( 48L , message.getField(f("default_fixed64" ))); f 3538 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( 49 , message.getField(f("default_sfixed32"))); f 3539 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(-50L , message.getField(f("default_sfixed64"))); f 3540 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( 51.5F , message.getField(f("default_float" ))); f 3541 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( 52e3D , message.getField(f("default_double" ))); f 3542 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(true , message.getField(f("default_bool" ))); f 3543 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("hello", message.getField(f("default_string" ))); f 3544 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(toBytes("world"), message.getField(f("default_bytes"))); f 3546 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( nestedBar, message.getField(f("default_nested_enum" ))); f 3547 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(foreignBar, message.getField(f("default_foreign_enum"))); f 3548 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( importBar, message.getField(f("default_import_enum" ))); f 3550 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("abc", message.getField(f("default_string_piece"))); f 3551 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("123", message.getField(f("default_cord"))); f 3562 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_int32" ))); f 3563 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_int64" ))); f 3564 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_uint32" ))); f 3565 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_uint64" ))); f 3566 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_sint32" ))); f 3567 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_sint64" ))); f 3568 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_fixed32" ))); f 3569 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_fixed64" ))); f 3570 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_sfixed32"))); f 3571 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_sfixed64"))); f 3572 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_float" ))); f 3573 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_double" ))); f 3574 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_bool" ))); f 3575 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_string" ))); f 3576 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_bytes" ))); f 3578 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeatedgroup" ))); f 3579 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_nested_message" ))); f 3580 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_foreign_message"))); f 3581 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_import_message" ))); f 3582 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_lazy_message" ))); f 3583 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_nested_enum" ))); f 3584 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_foreign_enum" ))); f 3585 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_import_enum" ))); f 3587 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_string_piece"))); f 3588 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("repeated_cord"))); f 3590 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(201 , message.getRepeatedField(f("repeated_int32" ), 0)); f 3591 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(202L , message.getRepeatedField(f("repeated_int64" ), 0)); f 3592 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(203 , message.getRepeatedField(f("repeated_uint32" ), 0)); f 3593 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(204L , message.getRepeatedField(f("repeated_uint64" ), 0)); f 3594 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(205 , message.getRepeatedField(f("repeated_sint32" ), 0)); f 3595 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(206L , message.getRepeatedField(f("repeated_sint64" ), 0)); f 3596 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(207 , message.getRepeatedField(f("repeated_fixed32" ), 0)); f 3597 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(208L , message.getRepeatedField(f("repeated_fixed64" ), 0)); f 3598 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(209 , message.getRepeatedField(f("repeated_sfixed32"), 0)); f 3599 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(210L , message.getRepeatedField(f("repeated_sfixed64"), 0)); f 3600 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(211F , message.getRepeatedField(f("repeated_float" ), 0)); f 3601 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(212D , message.getRepeatedField(f("repeated_double" ), 0)); f 3602 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(true , message.getRepeatedField(f("repeated_bool" ), 0)); f 3603 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("215", message.getRepeatedField(f("repeated_string" ), 0)); f 3604 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(toBytes("216"), message.getRepeatedField(f("repeated_bytes"), 0)); f 3607 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeatedgroup"), 0)) f 3610 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_nested_message"), 0)) f 3613 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_foreign_message"), 0)) f 3616 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_import_message"), 0)) f 3619 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_lazy_message"), 0)) f 3622 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( nestedBar, message.getRepeatedField(f("repeated_nested_enum" ),0)); f 3623 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(foreignBar, message.getRepeatedField(f("repeated_foreign_enum"),0)); f 3624 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( importBar, message.getRepeatedField(f("repeated_import_enum" ),0)); f 3626 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("224", message.getRepeatedField(f("repeated_string_piece"), 0)); f 3627 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("225", message.getRepeatedField(f("repeated_cord"), 0)); f 3629 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(501 , message.getRepeatedField(f("repeated_int32" ), 1)); f 3630 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(502L , message.getRepeatedField(f("repeated_int64" ), 1)); f 3631 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(503 , message.getRepeatedField(f("repeated_uint32" ), 1)); f 3632 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(504L , message.getRepeatedField(f("repeated_uint64" ), 1)); f 3633 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(505 , message.getRepeatedField(f("repeated_sint32" ), 1)); f 3634 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(506L , message.getRepeatedField(f("repeated_sint64" ), 1)); f 3635 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(507 , message.getRepeatedField(f("repeated_fixed32" ), 1)); f 3636 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(508L , message.getRepeatedField(f("repeated_fixed64" ), 1)); f 3637 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(509 , message.getRepeatedField(f("repeated_sfixed32"), 1)); f 3638 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(510L , message.getRepeatedField(f("repeated_sfixed64"), 1)); f 3639 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(511F , message.getRepeatedField(f("repeated_float" ), 1)); f 3640 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(512D , message.getRepeatedField(f("repeated_double" ), 1)); f 3641 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(true , message.getRepeatedField(f("repeated_bool" ), 1)); f 3642 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("515", message.getRepeatedField(f("repeated_string" ), 1)); f 3643 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(toBytes("516"), message.getRepeatedField(f("repeated_bytes"), 1)); f 3646 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeatedgroup"), 1)) f 3649 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_nested_message"), 1)) f 3652 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_foreign_message"), 1)) f 3655 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_import_message"), 1)) f 3658 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java ((Message)message.getRepeatedField(f("repeated_lazy_message"), 1)) f 3661 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( nestedFoo, message.getRepeatedField(f("repeated_nested_enum" ),1)); f 3662 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(foreignFoo, message.getRepeatedField(f("repeated_foreign_enum"),1)); f 3663 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals( importFoo, message.getRepeatedField(f("repeated_import_enum" ),1)); f 3665 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("524", message.getRepeatedField(f("repeated_string_piece"), 1)); f 3666 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals("525", message.getRepeatedField(f("repeated_cord"), 1)); f 3670 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_int32" ), 601 ); f 3671 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_int64" ), 602L); f 3672 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_uint32" ), 603 ); f 3673 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_uint64" ), 604L); f 3674 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_sint32" ), 605 ); f 3675 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_sint64" ), 606L); f 3676 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_fixed32" ), 607 ); f 3677 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_fixed64" ), 608L); f 3678 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_sfixed32"), 609 ); f 3679 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_sfixed64"), 610L); f 3680 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_float" ), 611F); f 3681 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_double" ), 612D); f 3682 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_bool" ), true); f 3683 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_enum" ), foreignBar); f 3685 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_int32" ), 701 ); f 3686 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_int64" ), 702L); f 3687 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_uint32" ), 703 ); f 3688 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_uint64" ), 704L); f 3689 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_sint32" ), 705 ); f 3690 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_sint64" ), 706L); f 3691 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_fixed32" ), 707 ); f 3692 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_fixed64" ), 708L); f 3693 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_sfixed32"), 709 ); f 3694 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_sfixed64"), 710L); f 3695 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_float" ), 711F); f 3696 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_double" ), 712D); f 3697 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_bool" ), false); f 3698 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java message.addRepeatedField(f("packed_enum" ), foreignBaz); f 3702 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_int32" ))); f 3703 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_int64" ))); f 3704 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_uint32" ))); f 3705 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_uint64" ))); f 3706 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_sint32" ))); f 3707 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_sint64" ))); f 3708 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_fixed32" ))); f 3709 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_fixed64" ))); f 3710 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_sfixed32"))); f 3711 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_sfixed64"))); f 3712 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_float" ))); f 3713 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_double" ))); f 3714 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_bool" ))); f 3715 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(2, message.getRepeatedFieldCount(f("packed_enum" ))); f 3716 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(601 , message.getRepeatedField(f("packed_int32" ), 0)); f 3717 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(602L , message.getRepeatedField(f("packed_int64" ), 0)); f 3718 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(603 , message.getRepeatedField(f("packed_uint32" ), 0)); f 3719 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(604L , message.getRepeatedField(f("packed_uint64" ), 0)); f 3720 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(605 , message.getRepeatedField(f("packed_sint32" ), 0)); f 3721 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(606L , message.getRepeatedField(f("packed_sint64" ), 0)); f 3722 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(607 , message.getRepeatedField(f("packed_fixed32" ), 0)); f 3723 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(608L , message.getRepeatedField(f("packed_fixed64" ), 0)); f 3724 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(609 , message.getRepeatedField(f("packed_sfixed32"), 0)); f 3725 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(610L , message.getRepeatedField(f("packed_sfixed64"), 0)); f 3726 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(611F , message.getRepeatedField(f("packed_float" ), 0)); f 3727 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(612D , message.getRepeatedField(f("packed_double" ), 0)); f 3728 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(true , message.getRepeatedField(f("packed_bool" ), 0)); f 3729 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(foreignBar, message.getRepeatedField(f("packed_enum" ),0)); f 3730 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(701 , message.getRepeatedField(f("packed_int32" ), 1)); f 3731 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(702L , message.getRepeatedField(f("packed_int64" ), 1)); f 3732 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(703 , message.getRepeatedField(f("packed_uint32" ), 1)); f 3733 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(704L , message.getRepeatedField(f("packed_uint64" ), 1)); f 3734 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(705 , message.getRepeatedField(f("packed_sint32" ), 1)); f 3735 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(706L , message.getRepeatedField(f("packed_sint64" ), 1)); f 3736 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(707 , message.getRepeatedField(f("packed_fixed32" ), 1)); f 3737 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(708L , message.getRepeatedField(f("packed_fixed64" ), 1)); f 3738 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(709 , message.getRepeatedField(f("packed_sfixed32"), 1)); f 3739 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(710L , message.getRepeatedField(f("packed_sfixed64"), 1)); f 3740 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(711F , message.getRepeatedField(f("packed_float" ), 1)); f 3741 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(712D , message.getRepeatedField(f("packed_double" ), 1)); f 3742 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(false, message.getRepeatedField(f("packed_bool" ), 1)); f 3743 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java Assert.assertEquals(foreignBaz, message.getRepeatedField(f("packed_enum" ),1)); f 3754 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.setField(f("optional_string"), null); f 3760 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.setField(f("optional_bytes"), null); f 3766 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.setField(f("optional_nested_enum"), null); f 3772 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.setField(f("optional_nested_message"), f 3779 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.setField(f("optional_nested_message"), f 3787 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.addRepeatedField(f("repeated_string"), null); f 3793 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.addRepeatedField(f("repeated_bytes"), null); f 3799 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.addRepeatedField(f("repeated_nested_enum"), null); f 3805 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.addRepeatedField(f("repeated_nested_message"), null); f 3819 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.addRepeatedField(f("repeated_string"), "one"); f 3821 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.setRepeatedField(f("repeated_string"), 0, null); f 3827 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.addRepeatedField(f("repeated_bytes"), toBytes("one")); f 3829 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.setRepeatedField(f("repeated_bytes"), 0, null); f 3835 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.addRepeatedField(f("repeated_nested_enum"), nestedBaz); f 3837 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.setRepeatedField(f("repeated_nested_enum"), 0, null); f 3844 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java f("repeated_nested_message"), f 3847 third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java builder.setRepeatedField(f("repeated_nested_message"), 0, null); f 326 third_party/protobuf/src/google/protobuf/stubs/common.h inline To implicit_cast(From const &f) { f 327 third_party/protobuf/src/google/protobuf/stubs/common.h return f; f 349 third_party/protobuf/src/google/protobuf/stubs/common.h inline To down_cast(From* f) { // so we only accept pointers f 359 third_party/protobuf/src/google/protobuf/stubs/common.h assert(f == NULL || dynamic_cast<To>(f) != NULL); // RTTI: debug mode only! f 361 third_party/protobuf/src/google/protobuf/stubs/common.h return static_cast<To>(f); f 597 third_party/protobuf/src/google/protobuf/wire_format_lite.h union {float f; uint32 i;}; f 598 third_party/protobuf/src/google/protobuf/wire_format_lite.h f = value; f 603 third_party/protobuf/src/google/protobuf/wire_format_lite.h union {float f; uint32 i;}; f 605 third_party/protobuf/src/google/protobuf/wire_format_lite.h return f; f 609 third_party/protobuf/src/google/protobuf/wire_format_lite.h union {double f; uint64 i;}; f 610 third_party/protobuf/src/google/protobuf/wire_format_lite.h f = value; f 615 third_party/protobuf/src/google/protobuf/wire_format_lite.h union {double f; uint64 i;}; f 617 third_party/protobuf/src/google/protobuf/wire_format_lite.h return f; f 112 third_party/qcms/src/chain.c float fx = f(device_x); f 113 third_party/qcms/src/chain.c float fy = f(device_y); f 114 third_party/qcms/src/chain.c float fz = f(device_z); f 143 third_party/qcms/src/transform_util.c float a, b, c, e, f; f 150 third_party/qcms/src/transform_util.c f = 0; f 157 third_party/qcms/src/transform_util.c f = 0; f 164 third_party/qcms/src/transform_util.c f = parameter[3]; f 171 third_party/qcms/src/transform_util.c f = 0; f 178 third_party/qcms/src/transform_util.c f = parameter[6]; f 186 third_party/qcms/src/transform_util.c f = 0; f 196 third_party/qcms/src/transform_util.c gamma_table[X] = c * X / 255. + f; f 307 third_party/qcms/src/transform_util.c double a, b, f; f 389 third_party/qcms/src/transform_util.c f = ((Value - b) / a); f 391 third_party/qcms/src/transform_util.c if (f < 0.0) return (uint16_fract_t) 0; f 392 third_party/qcms/src/transform_util.c if (f >= 65535.0) return (uint16_fract_t) 0xFFFF; f 394 third_party/qcms/src/transform_util.c return (uint16_fract_t) floor(f + 0.5); f 372 third_party/re2/re2/compile.cc Frag f = Star(a, nongreedy); f 373 third_party/re2/re2/compile.cc return Frag(a.begin, f.end); f 487 third_party/re2/re2/compile.cc Frag f = ByteRange(lo, hi, foldcase); f 489 third_party/re2/re2/compile.cc PatchList::Patch(inst_, f.end, next); f 491 third_party/re2/re2/compile.cc rune_range_.end = PatchList::Append(inst_, rune_range_.end, f.end); f 493 third_party/re2/re2/compile.cc return f.begin; f 704 third_party/re2/re2/compile.cc Frag f = ByteRange((uint8)buf[0], buf[0], false); f 706 third_party/re2/re2/compile.cc f = Cat(f, ByteRange((uint8)buf[i], buf[i], false)); f 707 third_party/re2/re2/compile.cc return f; f 734 third_party/re2/re2/compile.cc Frag f = Match(re->match_id()); f 737 third_party/re2/re2/compile.cc f = Cat(DotStar(), Cat(EmptyWidth(kEmptyEndText), f)); f 738 third_party/re2/re2/compile.cc return f; f 742 third_party/re2/re2/compile.cc Frag f = child_frags[0]; f 744 third_party/re2/re2/compile.cc f = Cat(f, child_frags[i]); f 745 third_party/re2/re2/compile.cc return f; f 749 third_party/re2/re2/compile.cc Frag f = child_frags[0]; f 751 third_party/re2/re2/compile.cc f = Alt(f, child_frags[i]); f 752 third_party/re2/re2/compile.cc return f; f 771 third_party/re2/re2/compile.cc Frag f; f 775 third_party/re2/re2/compile.cc f = f1; f 777 third_party/re2/re2/compile.cc f = Cat(f, f1); f 779 third_party/re2/re2/compile.cc return f; f 1010 third_party/re2/re2/compile.cc Frag f = c.WalkExponential(sre, NullFrag(), 2*c.max_inst_); f 1019 third_party/re2/re2/compile.cc Frag all = c.Cat(f, c.Match(0)); f 243 third_party/re2/re2/parse.cc CaseFold* LookupCaseFold(CaseFold *f, int n, Rune r) { f 244 third_party/re2/re2/parse.cc CaseFold* ef = f + n; f 249 third_party/re2/re2/parse.cc if (f[m].lo <= r && r <= f[m].hi) f 250 third_party/re2/re2/parse.cc return &f[m]; f 251 third_party/re2/re2/parse.cc if (r < f[m].lo) { f 254 third_party/re2/re2/parse.cc f += m+1; f 263 third_party/re2/re2/parse.cc if (f < ef) f 264 third_party/re2/re2/parse.cc return f; f 271 third_party/re2/re2/parse.cc Rune ApplyFold(CaseFold *f, Rune r) { f 272 third_party/re2/re2/parse.cc switch (f->delta) { f 274 third_party/re2/re2/parse.cc return r + f->delta; f 277 third_party/re2/re2/parse.cc if ((r - f->lo) % 2) f 286 third_party/re2/re2/parse.cc if ((r - f->lo) % 2) f 307 third_party/re2/re2/parse.cc CaseFold* f = LookupCaseFold(unicode_casefold, num_unicode_casefold, r); f 308 third_party/re2/re2/parse.cc if (f == NULL || r < f->lo) f 310 third_party/re2/re2/parse.cc return ApplyFold(f, r); f 330 third_party/re2/re2/parse.cc CaseFold* f = LookupCaseFold(unicode_casefold, num_unicode_casefold, lo); f 331 third_party/re2/re2/parse.cc if (f == NULL) // lo has no fold, nor does anything above lo f 333 third_party/re2/re2/parse.cc if (lo < f->lo) { // lo has no fold; next rune with a fold is f->lo f 334 third_party/re2/re2/parse.cc lo = f->lo; f 341 third_party/re2/re2/parse.cc Rune hi1 = min<Rune>(hi, f->hi); f 342 third_party/re2/re2/parse.cc switch (f->delta) { f 344 third_party/re2/re2/parse.cc lo1 += f->delta; f 345 third_party/re2/re2/parse.cc hi1 += f->delta; f 363 third_party/re2/re2/parse.cc lo = f->hi + 1; f 178 third_party/re2/re2/prefilter.cc CaseFold *f = LookupCaseFold(unicode_tolower, num_unicode_tolower, r); f 179 third_party/re2/re2/prefilter.cc if (f == NULL || r < f->lo) f 181 third_party/re2/re2/prefilter.cc return ApplyFold(f, r); f 74 third_party/re2/re2/prefilter_tree.cc void PrefilterTree::Add(Prefilter *f) { f 79 third_party/re2/re2/prefilter_tree.cc if (f != NULL && !KeepPart(f, 0)) { f 80 third_party/re2/re2/prefilter_tree.cc delete f; f 81 third_party/re2/re2/prefilter_tree.cc f = NULL; f 84 third_party/re2/re2/prefilter_tree.cc prefilter_vec_.push_back(f); f 174 third_party/re2/re2/prefilter_tree.cc Prefilter* f = prefilter_vec_[i]; f 175 third_party/re2/re2/prefilter_tree.cc if (f == NULL) f 180 third_party/re2/re2/prefilter_tree.cc v.push_back(f); f 185 third_party/re2/re2/prefilter_tree.cc Prefilter* f = v[i]; f 186 third_party/re2/re2/prefilter_tree.cc if (f == NULL) f 188 third_party/re2/re2/prefilter_tree.cc if (f->op() == Prefilter::AND || f->op() == Prefilter::OR) { f 189 third_party/re2/re2/prefilter_tree.cc const vector<Prefilter*>& subs = *f->subs(); f 314 third_party/re2/re2/simplify.cc Regexp::ParseFlags f) { f 319 third_party/re2/re2/simplify.cc return Regexp::Star(re->Incref(), f); f 323 third_party/re2/re2/simplify.cc return Regexp::Plus(re->Incref(), f); f 326 third_party/re2/re2/simplify.cc Regexp* nre = new Regexp(kRegexpConcat, f); f 332 third_party/re2/re2/simplify.cc nre_subs[min-1] = Regexp::Plus(re->Incref(), f); f 338 third_party/re2/re2/simplify.cc return new Regexp(kRegexpEmptyMatch, f); f 351 third_party/re2/re2/simplify.cc nre = new Regexp(kRegexpConcat, f); f 360 third_party/re2/re2/simplify.cc Regexp* suf = Regexp::Quest(re->Incref(), f); f 362 third_party/re2/re2/simplify.cc suf = Regexp::Quest(Concat2(re->Incref(), suf, f), f); f 366 third_party/re2/re2/simplify.cc nre = Concat2(nre, suf, f); f 373 third_party/re2/re2/simplify.cc return new Regexp(kRegexpNoMatch, f); f 18 third_party/re2/re2/testing/filtered_re2_test.cc FilteredRE2 f; f 23 third_party/re2/re2/testing/filtered_re2_test.cc v.f.AllMatches("foo", v.atom_indices, &v.matches); f 32 third_party/re2/re2/testing/filtered_re2_test.cc v.f.Add("(foo|bar)", v.opts, &id); f 34 third_party/re2/re2/testing/filtered_re2_test.cc v.f.Compile(&v.atoms); f 37 third_party/re2/re2/testing/filtered_re2_test.cc v.f.AllMatches("lemurs bar", v.atom_indices, &v.matches); f 48 third_party/re2/re2/testing/filtered_re2_test.cc v.f.Add("\xde\xadQ\xbe\xef", v.opts, &id); f 49 third_party/re2/re2/testing/filtered_re2_test.cc v.f.Compile(&v.atoms); f 54 third_party/re2/re2/testing/filtered_re2_test.cc v.f.AllMatches("foo\xde\xadQ\xbe\xeflemur", v.atom_indices, &v.matches); f 138 third_party/re2/re2/testing/filtered_re2_test.cc v->f.Add(regexps[i], v->opts, &id); f 140 third_party/re2/re2/testing/filtered_re2_test.cc v->f.Compile(&v->atoms); f 225 third_party/re2/re2/testing/filtered_re2_test.cc EXPECT_EQ(0, v.f.FirstMatch(text, atom_ids)); f 249 third_party/re2/re2/testing/filtered_re2_test.cc v.f.AllMatches(text, atom_ids, &matching_regexps); f 258 third_party/re2/re2/testing/filtered_re2_test.cc v.f.AllMatches(text, atom_ids, &matching_regexps); f 271 third_party/re2/re2/testing/filtered_re2_test.cc v.f.AllMatches(text, atom_ids, &matching_regexps); f 206 third_party/re2/re2/testing/parse_test.cc Regexp::ParseFlags f = flags; f 208 third_party/re2/re2/testing/parse_test.cc f = tests[i].flags & ~TestZeroFlags; f 210 third_party/re2/re2/testing/parse_test.cc re[i] = Regexp::Parse(tests[i].regexp, f, &status); f 215 third_party/re2/re2/testing/parse_test.cc << "\nparse: " << tests[i].parse << " s: " << s << " flag=" << f; f 384 third_party/re2/re2/testing/parse_test.cc Regexp::ParseFlags f = kTestFlags; f 386 third_party/re2/re2/testing/parse_test.cc f = tests[i].flags & ~TestZeroFlags; f 388 third_party/re2/re2/testing/parse_test.cc Regexp* re = Regexp::Parse(tests[i].regexp, f, &status); f 49 third_party/re2/re2/testing/required_prefix_test.cc bool f = false; f 51 third_party/re2/re2/testing/required_prefix_test.cc CHECK_EQ(t.return_value, re->RequiredPrefix(&p, &f, &s)) f 56 third_party/re2/re2/testing/required_prefix_test.cc CHECK_EQ(f, t.foldcase) f 71 third_party/re2/re2/unicode_casefold.h extern Rune ApplyFold(CaseFold *f, Rune r); f 12 third_party/re2/testinstall.cc FilteredRE2 f; f 14 third_party/re2/testinstall.cc f.Add("a.*b.*c", RE2::DefaultOptions, &id); f 16 third_party/re2/testinstall.cc f.Compile(&v); f 19 third_party/re2/util/benchmark.h Benchmark(const char* name, void (*f)(int)) { Clear(name); fn = f; Register(); } f 20 third_party/re2/util/benchmark.h Benchmark(const char* name, void (*f)(int, int), int l, int h) { Clear(name); fnr = f; lo = l; hi = h; Register(); } f 34 third_party/re2/util/benchmark.h #define BENCHMARK(f) \ f 35 third_party/re2/util/benchmark.h ::testing::Benchmark* _benchmark_##f = (new ::testing::Benchmark(#f, f)) f 37 third_party/re2/util/benchmark.h #define BENCHMARK_RANGE(f, lo, hi) \ f 38 third_party/re2/util/benchmark.h ::testing::Benchmark* _benchmark_##f = \ f 39 third_party/re2/util/benchmark.h (new ::testing::Benchmark(#f, f, lo, hi)) f 185 third_party/re2/util/pcre.h #define pcre_exec(a, b, c, d, e, f, g, h) ({ (void)(a); (void)(b); (void)(c); (void)(d); (void)(e); (void)(f); (void)(g); (void)(h); 0; }) f 189 third_party/re2/util/pcre.h #define pcre_exec(a, b, c, d, e, f, g, h) NULL f 12415 third_party/sqlite/amalgamation/sqlite3.c #define MemSetTypeFlag(p, f) \ f 12416 third_party/sqlite/amalgamation/sqlite3.c ((p)->flags = ((p)->flags&~(MEM_TypeMask|MEM_Zero))|f) f 24618 third_party/sqlite/amalgamation/sqlite3.c static int robust_open(const char *z, int f, int m){ f 24620 third_party/sqlite/amalgamation/sqlite3.c do{ rc = osOpen(z,f,m); }while( rc<0 && errno==EINTR ); f 27766 third_party/sqlite/amalgamation/sqlite3.c struct flock f; /* The posix advisory locking structure */ f 27780 third_party/sqlite/amalgamation/sqlite3.c memset(&f, 0, sizeof(f)); f 27781 third_party/sqlite/amalgamation/sqlite3.c f.l_type = lockType; f 27782 third_party/sqlite/amalgamation/sqlite3.c f.l_whence = SEEK_SET; f 27783 third_party/sqlite/amalgamation/sqlite3.c f.l_start = ofst; f 27784 third_party/sqlite/amalgamation/sqlite3.c f.l_len = n; f 27786 third_party/sqlite/amalgamation/sqlite3.c rc = osFcntl(pShmNode->h, F_SETLK, &f); f 31196 third_party/sqlite/amalgamation/sqlite3.c # define FormatMessageW(a,b,c,d,e,f,g) 0 f 31456 third_party/sqlite/amalgamation/sqlite3.c #define LockFileEx(a,b,c,d,e,f) winceLockFileEx(&a, b, c, d, e, f) f 41059 third_party/sqlite/amalgamation/sqlite3.c int f = SQLITE_OPEN_READONLY|SQLITE_OPEN_MAIN_JOURNAL; f 41060 third_party/sqlite/amalgamation/sqlite3.c rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, f, &f); f 41197 third_party/sqlite/amalgamation/sqlite3.c int f = SQLITE_OPEN_READWRITE|SQLITE_OPEN_MAIN_JOURNAL; f 41199 third_party/sqlite/amalgamation/sqlite3.c rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, f, &fout); f 56088 third_party/sqlite/amalgamation/sqlite3.c int f; f 56092 third_party/sqlite/amalgamation/sqlite3.c f = pMem->flags; f 56093 third_party/sqlite/amalgamation/sqlite3.c if( (f&(MEM_Str|MEM_Blob)) && pMem->z!=pMem->zMalloc ){ f 62159 third_party/sqlite/amalgamation/sqlite3.c int f = pMem->flags; f 62163 third_party/sqlite/amalgamation/sqlite3.c if( f&MEM_Blob ){ f 62166 third_party/sqlite/amalgamation/sqlite3.c if( f & MEM_Dyn ){ f 62168 third_party/sqlite/amalgamation/sqlite3.c assert( (f & (MEM_Static|MEM_Ephem))==0 ); f 62169 third_party/sqlite/amalgamation/sqlite3.c }else if( f & MEM_Static ){ f 62171 third_party/sqlite/amalgamation/sqlite3.c assert( (f & (MEM_Dyn|MEM_Ephem))==0 ); f 62172 third_party/sqlite/amalgamation/sqlite3.c }else if( f & MEM_Ephem ){ f 62174 third_party/sqlite/amalgamation/sqlite3.c assert( (f & (MEM_Static|MEM_Dyn))==0 ); f 62195 third_party/sqlite/amalgamation/sqlite3.c if( f & MEM_Zero ){ f 62200 third_party/sqlite/amalgamation/sqlite3.c }else if( f & MEM_Str ){ f 62203 third_party/sqlite/amalgamation/sqlite3.c if( f & MEM_Dyn ){ f 62205 third_party/sqlite/amalgamation/sqlite3.c assert( (f & (MEM_Static|MEM_Ephem))==0 ); f 62206 third_party/sqlite/amalgamation/sqlite3.c }else if( f & MEM_Static ){ f 62208 third_party/sqlite/amalgamation/sqlite3.c assert( (f & (MEM_Dyn|MEM_Ephem))==0 ); f 62209 third_party/sqlite/amalgamation/sqlite3.c }else if( f & MEM_Ephem ){ f 62211 third_party/sqlite/amalgamation/sqlite3.c assert( (f & (MEM_Static|MEM_Dyn))==0 ); f 124477 third_party/sqlite/amalgamation/sqlite3.c float f; f 124488 third_party/sqlite/amalgamation/sqlite3.c ((double)coord.f) : \ f 125410 third_party/sqlite/amalgamation/sqlite3.c sqlite3_result_double(ctx, c.f); f 125706 third_party/sqlite/amalgamation/sqlite3.c p1->aCoord[ii].f = MIN(p1->aCoord[ii].f, p2->aCoord[ii].f); f 125707 third_party/sqlite/amalgamation/sqlite3.c p1->aCoord[ii+1].f = MAX(p1->aCoord[ii+1].f, p2->aCoord[ii+1].f); f 125727 third_party/sqlite/amalgamation/sqlite3.c if( (!isInt && (a2[0].f<a1[0].f || a2[1].f>a1[1].f)) f 126998 third_party/sqlite/amalgamation/sqlite3.c cell.aCoord[ii].f = (float)sqlite3_value_double(azData[ii+3]); f 126999 third_party/sqlite/amalgamation/sqlite3.c cell.aCoord[ii+1].f = (float)sqlite3_value_double(azData[ii+4]); f 127000 third_party/sqlite/amalgamation/sqlite3.c if( cell.aCoord[ii].f>cell.aCoord[ii+1].f ){ f 127367 third_party/sqlite/amalgamation/sqlite3.c sqlite3_snprintf(512-nCell,&zCell[nCell]," %f",(double)cell.aCoord[jj].f); f 220 third_party/sqlite/src/ext/rtree/rtree.c float f; f 231 third_party/sqlite/src/ext/rtree/rtree.c ((double)coord.f) : \ f 1153 third_party/sqlite/src/ext/rtree/rtree.c sqlite3_result_double(ctx, c.f); f 1449 third_party/sqlite/src/ext/rtree/rtree.c p1->aCoord[ii].f = MIN(p1->aCoord[ii].f, p2->aCoord[ii].f); f 1450 third_party/sqlite/src/ext/rtree/rtree.c p1->aCoord[ii+1].f = MAX(p1->aCoord[ii+1].f, p2->aCoord[ii+1].f); f 1470 third_party/sqlite/src/ext/rtree/rtree.c if( (!isInt && (a2[0].f<a1[0].f || a2[1].f>a1[1].f)) f 2741 third_party/sqlite/src/ext/rtree/rtree.c cell.aCoord[ii].f = (float)sqlite3_value_double(azData[ii+3]); f 2742 third_party/sqlite/src/ext/rtree/rtree.c cell.aCoord[ii+1].f = (float)sqlite3_value_double(azData[ii+4]); f 2743 third_party/sqlite/src/ext/rtree/rtree.c if( cell.aCoord[ii].f>cell.aCoord[ii+1].f ){ f 3110 third_party/sqlite/src/ext/rtree/rtree.c sqlite3_snprintf(512-nCell,&zCell[nCell]," %f",(double)cell.aCoord[jj].f); f 477 third_party/sqlite/src/src/os_unix.c static int robust_open(const char *z, int f, int m){ f 479 third_party/sqlite/src/src/os_unix.c do{ rc = osOpen(z,f,m); }while( rc<0 && errno==EINTR ); f 3625 third_party/sqlite/src/src/os_unix.c struct flock f; /* The posix advisory locking structure */ f 3639 third_party/sqlite/src/src/os_unix.c memset(&f, 0, sizeof(f)); f 3640 third_party/sqlite/src/src/os_unix.c f.l_type = lockType; f 3641 third_party/sqlite/src/src/os_unix.c f.l_whence = SEEK_SET; f 3642 third_party/sqlite/src/src/os_unix.c f.l_start = ofst; f 3643 third_party/sqlite/src/src/os_unix.c f.l_len = n; f 3645 third_party/sqlite/src/src/os_unix.c rc = osFcntl(pShmNode->h, F_SETLK, &f); f 76 third_party/sqlite/src/src/os_win.c # define FormatMessageW(a,b,c,d,e,f,g) 0 f 337 third_party/sqlite/src/src/os_win.c #define LockFileEx(a,b,c,d,e,f) winceLockFileEx(&a, b, c, d, e, f) f 4629 third_party/sqlite/src/src/pager.c int f = SQLITE_OPEN_READONLY|SQLITE_OPEN_MAIN_JOURNAL; f 4630 third_party/sqlite/src/src/pager.c rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, f, &f); f 4767 third_party/sqlite/src/src/pager.c int f = SQLITE_OPEN_READWRITE|SQLITE_OPEN_MAIN_JOURNAL; f 4769 third_party/sqlite/src/src/pager.c rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, f, &fout); f 59 third_party/sqlite/src/src/shell.c #define access(f,m) _access((f),(m)) f 1486 third_party/sqlite/src/src/tclsqlite.c # define Tcl_NRAddCallback(a,b,c,d,e,f) 0 f 1488 third_party/sqlite/src/src/tclsqlite.c # define Tcl_NRCreateCommand(a,b,c,d,e,f) 0 f 3124 third_party/sqlite/src/src/tclsqlite.c #define MD5STEP(f, w, x, y, z, data, s) \ f 3125 third_party/sqlite/src/src/tclsqlite.c ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x ) f 343 third_party/sqlite/src/src/vdbe.c int f = pMem->flags; f 347 third_party/sqlite/src/src/vdbe.c if( f&MEM_Blob ){ f 350 third_party/sqlite/src/src/vdbe.c if( f & MEM_Dyn ){ f 352 third_party/sqlite/src/src/vdbe.c assert( (f & (MEM_Static|MEM_Ephem))==0 ); f 353 third_party/sqlite/src/src/vdbe.c }else if( f & MEM_Static ){ f 355 third_party/sqlite/src/src/vdbe.c assert( (f & (MEM_Dyn|MEM_Ephem))==0 ); f 356 third_party/sqlite/src/src/vdbe.c }else if( f & MEM_Ephem ){ f 358 third_party/sqlite/src/src/vdbe.c assert( (f & (MEM_Static|MEM_Dyn))==0 ); f 379 third_party/sqlite/src/src/vdbe.c if( f & MEM_Zero ){ f 384 third_party/sqlite/src/src/vdbe.c }else if( f & MEM_Str ){ f 387 third_party/sqlite/src/src/vdbe.c if( f & MEM_Dyn ){ f 389 third_party/sqlite/src/src/vdbe.c assert( (f & (MEM_Static|MEM_Ephem))==0 ); f 390 third_party/sqlite/src/src/vdbe.c }else if( f & MEM_Static ){ f 392 third_party/sqlite/src/src/vdbe.c assert( (f & (MEM_Dyn|MEM_Ephem))==0 ); f 393 third_party/sqlite/src/src/vdbe.c }else if( f & MEM_Ephem ){ f 395 third_party/sqlite/src/src/vdbe.c assert( (f & (MEM_Static|MEM_Dyn))==0 ); f 201 third_party/sqlite/src/src/vdbeInt.h #define MemSetTypeFlag(p, f) \ f 202 third_party/sqlite/src/src/vdbeInt.h ((p)->flags = ((p)->flags&~(MEM_TypeMask|MEM_Zero))|f) f 123 third_party/sqlite/src/src/vdbemem.c int f; f 127 third_party/sqlite/src/src/vdbemem.c f = pMem->flags; f 128 third_party/sqlite/src/src/vdbemem.c if( (f&(MEM_Str|MEM_Blob)) && pMem->z!=pMem->zMalloc ){ f 143 third_party/sqlite/src/test/threadtest3.c #define MD5STEP(f, w, x, y, z, data, s) \ f 144 third_party/sqlite/src/test/threadtest3.c ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x ) f 4920 third_party/sqlite/src/tool/lemon.c void Configtable_clear(int(*f)(struct config *)) f 4924 third_party/sqlite/src/tool/lemon.c if( f ) for(i=0; i<x4a->count; i++) (*f)(x4a->tbl[i].data); f 45 third_party/talloc/libreplace/replace.c int rep_ftruncate(int f, off_t l) f 48 third_party/talloc/libreplace/replace.c return chsize(f,l); f 56 third_party/talloc/libreplace/replace.c return fcntl(f, F_FREESP, &fl); f 921 third_party/talloc/libreplace/snprintf.c double f = 1.0; f 927 third_party/talloc/libreplace/snprintf.c f *= 10.0; f 940 third_party/talloc/libreplace/snprintf.c ret = my_modf(x0-l*f, &i2); f 941 third_party/talloc/libreplace/snprintf.c (*iptr) = l*f + i2; f 1391 third_party/talloc/talloc.c FILE *f = (FILE *)_f; f 1394 third_party/talloc/talloc.c fprintf(f, "%*sreference to: %s\n", depth*4, "", name); f 1399 third_party/talloc/talloc.c fprintf(f,"%stalloc report on '%s' (total %6lu bytes in %3lu blocks)\n", f 1406 third_party/talloc/talloc.c fprintf(f, "%*s%-30s contains %6lu bytes in %3lu blocks (ref %d) %p\n", f 1414 third_party/talloc/talloc.c fprintf(f, "content: "); f 1421 third_party/talloc/talloc.c fprintf(f, "%c", ((char *)ptr)[i]); f 1423 third_party/talloc/talloc.c fprintf(f, "~%02x", ((char *)ptr)[i]); f 1427 third_party/talloc/talloc.c fprintf(f, "\n"); f 1434 third_party/talloc/talloc.c void talloc_report_depth_file(const void *ptr, int depth, int max_depth, FILE *f) f 1436 third_party/talloc/talloc.c if (f) { f 1437 third_party/talloc/talloc.c talloc_report_depth_cb(ptr, depth, max_depth, talloc_report_depth_FILE_helper, f); f 1438 third_party/talloc/talloc.c fflush(f); f 1445 third_party/talloc/talloc.c void talloc_report_full(const void *ptr, FILE *f) f 1447 third_party/talloc/talloc.c talloc_report_depth_file(ptr, 0, -1, f); f 1453 third_party/talloc/talloc.c void talloc_report(const void *ptr, FILE *f) f 1455 third_party/talloc/talloc.c talloc_report_depth_file(ptr, 0, 1, f); f 166 third_party/talloc/talloc.h void talloc_report_depth_file(const void *ptr, int depth, int max_depth, FILE *f); f 167 third_party/talloc/talloc.h void talloc_report_full(const void *ptr, FILE *f); f 168 third_party/talloc/talloc.h void talloc_report(const void *ptr, FILE *f); f 123 third_party/tcmalloc/chromium/src/base/elfcore.h #define FRAME(f) Frame f; \ f 125 third_party/tcmalloc/chromium/src/base/elfcore.h f.errno_ = errno; \ f 126 third_party/tcmalloc/chromium/src/base/elfcore.h f.tid = sys_gettid(); \ f 162 third_party/tcmalloc/chromium/src/base/elfcore.h : : "a" (&f) : "memory"); \ f 164 third_party/tcmalloc/chromium/src/base/elfcore.h #define SET_FRAME(f,r) \ f 166 third_party/tcmalloc/chromium/src/base/elfcore.h errno = (f).errno_; \ f 167 third_party/tcmalloc/chromium/src/base/elfcore.h (r) = (f).uregs; \ f 176 third_party/tcmalloc/chromium/src/base/elfcore.h #define FRAME(f) Frame f; \ f 178 third_party/tcmalloc/chromium/src/base/elfcore.h f.errno_ = errno; \ f 179 third_party/tcmalloc/chromium/src/base/elfcore.h f.tid = sys_gettid(); \ f 223 third_party/tcmalloc/chromium/src/base/elfcore.h : : "a" (&f) : "memory"); \ f 225 third_party/tcmalloc/chromium/src/base/elfcore.h #define SET_FRAME(f,r) \ f 227 third_party/tcmalloc/chromium/src/base/elfcore.h errno = (f).errno_; \ f 228 third_party/tcmalloc/chromium/src/base/elfcore.h (f).uregs.fs_base = (r).fs_base; \ f 229 third_party/tcmalloc/chromium/src/base/elfcore.h (f).uregs.gs_base = (r).gs_base; \ f 230 third_party/tcmalloc/chromium/src/base/elfcore.h (r) = (f).uregs; \ f 241 third_party/tcmalloc/chromium/src/base/elfcore.h #define FRAME(f) Frame f; \ f 244 third_party/tcmalloc/chromium/src/base/elfcore.h f.errno_ = errno; \ f 245 third_party/tcmalloc/chromium/src/base/elfcore.h f.tid = sys_gettid(); \ f 248 third_party/tcmalloc/chromium/src/base/elfcore.h : : "r"(&f.arm) : "memory"); \ f 249 third_party/tcmalloc/chromium/src/base/elfcore.h f.arm.uregs[16] = 0; \ f 253 third_party/tcmalloc/chromium/src/base/elfcore.h f.arm.uregs[17] = cpsr; \ f 255 third_party/tcmalloc/chromium/src/base/elfcore.h #define SET_FRAME(f,r) \ f 261 third_party/tcmalloc/chromium/src/base/elfcore.h long fps = (f).arm.uregs[16]; \ f 262 third_party/tcmalloc/chromium/src/base/elfcore.h errno = (f).errno_; \ f 263 third_party/tcmalloc/chromium/src/base/elfcore.h (r) = (f).arm; \ f 273 third_party/tcmalloc/chromium/src/base/elfcore.h #define FRAME(f) Frame f = { 0 }; \ f 277 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[ 0] = MIPSREG( 0); \ f 278 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[ 1] = MIPSREG( 1); \ f 279 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[ 2] = MIPSREG( 2); \ f 280 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[ 3] = MIPSREG( 3); \ f 281 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[ 4] = MIPSREG( 4); \ f 282 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[ 5] = MIPSREG( 5); \ f 283 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[ 6] = MIPSREG( 6); \ f 284 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[ 7] = MIPSREG( 7); \ f 285 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[ 8] = MIPSREG( 8); \ f 286 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[ 9] = MIPSREG( 9); \ f 287 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[10] = MIPSREG(10); \ f 288 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[11] = MIPSREG(11); \ f 289 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[12] = MIPSREG(12); \ f 290 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[13] = MIPSREG(13); \ f 291 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[14] = MIPSREG(14); \ f 292 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[15] = MIPSREG(15); \ f 293 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[16] = MIPSREG(16); \ f 294 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[17] = MIPSREG(17); \ f 295 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[18] = MIPSREG(18); \ f 296 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[19] = MIPSREG(19); \ f 297 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[20] = MIPSREG(20); \ f 298 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[21] = MIPSREG(21); \ f 299 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[22] = MIPSREG(22); \ f 300 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[23] = MIPSREG(23); \ f 301 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[24] = MIPSREG(24); \ f 302 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[25] = MIPSREG(25); \ f 303 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[26] = MIPSREG(26); \ f 304 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[27] = MIPSREG(27); \ f 305 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[28] = MIPSREG(28); \ f 306 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[29] = MIPSREG(29); \ f 307 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[30] = MIPSREG(30); \ f 308 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.uregs[31] = MIPSREG(31); \ f 312 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.hi = hi; \ f 313 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.lo = lo; \ f 314 third_party/tcmalloc/chromium/src/base/elfcore.h f.mips_regs.cp0_epc = pc; \ f 315 third_party/tcmalloc/chromium/src/base/elfcore.h f.errno_ = errno; \ f 316 third_party/tcmalloc/chromium/src/base/elfcore.h f.tid = sys_gettid(); \ f 318 third_party/tcmalloc/chromium/src/base/elfcore.h #define SET_FRAME(f,r) \ f 320 third_party/tcmalloc/chromium/src/base/elfcore.h errno = (f).errno_; \ f 321 third_party/tcmalloc/chromium/src/base/elfcore.h memcpy((r).uregs, (f).mips_regs.uregs, \ f 323 third_party/tcmalloc/chromium/src/base/elfcore.h (r).hi = (f).mips_regs.hi; \ f 324 third_party/tcmalloc/chromium/src/base/elfcore.h (r).lo = (f).mips_regs.lo; \ f 325 third_party/tcmalloc/chromium/src/base/elfcore.h (r).cp0_epc = (f).mips_regs.cp0_epc; \ f 335 third_party/tcmalloc/chromium/src/base/elfcore.h #define FRAME(f) Frame f; do { f.tid = sys_gettid(); } while (0) f 336 third_party/tcmalloc/chromium/src/base/elfcore.h #define SET_FRAME(f,r) do { } while (0) f 1864 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall1(int, close, int, f) f 1866 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall3(int, fcntl, int, f, f 1868 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall2(int, fstat, int, f, f 1873 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall3(int, getdents, int, f, f 1876 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall3(int, getdents64, int, f, f 1886 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE off_t LSS_NAME(lseek)(int f, off_t o, int w) { f 1887 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h _LSS_BODY(3, off_t, lseek, off_t, LSS_SYSCALL_ARG(f), (uint64_t)(o), f 1891 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall3(off_t, lseek, int, f, f 1898 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h unsigned long, f, void *, a) f 1900 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h int, f, int, m) f 1905 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall3(ssize_t, read, int, f, f 1916 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall2(int, stat, const char*, f, f 1918 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall3(ssize_t, write, int, f, f 1931 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE void* LSS_NAME(mmap)(void *s, size_t l, int p, int f, int d, f 1934 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_SYSCALL_ARG(p), LSS_SYSCALL_ARG(f), f 1976 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall4(int, openat, int, d, const char *, p, int, f, int, m) f 2017 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall2(int, fstat64, int, f, f 2024 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h int, f, int, d, f 2033 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h int, f, int, d, f 398 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc AllocList *f = reinterpret_cast<AllocList *>( f 399 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc reinterpret_cast<char *>(v) - sizeof (f->header)); f 400 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc RAW_CHECK(f->header.magic == Magic(kMagicAllocated, &f->header), f 402 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc RAW_CHECK(f->header.arena == arena, f 404 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc f->levels = LLA_SkiplistLevels(f->header.size, arena->min_size, true); f 406 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc LLA_SkiplistInsert(&arena->freelist, f, prev); f 407 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc f->header.magic = Magic(kMagicUnallocated, &f->header); f 408 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc Coalesce(f); // maybe coalesce with successor f 416 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc AllocList *f = reinterpret_cast<AllocList *>( f 417 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc reinterpret_cast<char *>(v) - sizeof (f->header)); f 418 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc RAW_CHECK(f->header.magic == Magic(kMagicAllocated, &f->header), f 420 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc LowLevelAlloc::Arena *arena = f->header.arena; f 408 third_party/tcmalloc/chromium/src/gperftools/heap-checker.h HeapCleaner(void_function f); f 1899 third_party/tcmalloc/chromium/src/heap-checker.cc HeapCleaner::HeapCleaner(void_function f) { f 1902 third_party/tcmalloc/chromium/src/heap-checker.cc heap_cleanups_->push_back(f); f 1910 third_party/tcmalloc/chromium/src/heap-checker.cc void (*f)(void) = (*heap_cleanups_)[i]; f 1911 third_party/tcmalloc/chromium/src/heap-checker.cc f(); f 284 third_party/tcmalloc/chromium/src/heap-profile-table.cc void HeapProfileTable::IterateAllocationAddresses(AddressIterator f, f 286 third_party/tcmalloc/chromium/src/heap-profile-table.cc const AllocationAddressIteratorArgs args(f, data); f 183 third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc inline Callback0(FunctionSignature f) : f_(f) {} f 194 third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc inline Callback1<P1>(FunctionSignature f, P1 p1) : f_(f), p1_(p1) {} f 206 third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc inline Callback2<P1,P2>(FunctionSignature f, P1 p1, P2 p2) : f_(f), p1_(p1), p2_(p2) {} f 123 third_party/tcmalloc/vendor/src/base/elfcore.h #define FRAME(f) Frame f; \ f 125 third_party/tcmalloc/vendor/src/base/elfcore.h f.errno_ = errno; \ f 126 third_party/tcmalloc/vendor/src/base/elfcore.h f.tid = sys_gettid(); \ f 162 third_party/tcmalloc/vendor/src/base/elfcore.h : : "a" (&f) : "memory"); \ f 164 third_party/tcmalloc/vendor/src/base/elfcore.h #define SET_FRAME(f,r) \ f 166 third_party/tcmalloc/vendor/src/base/elfcore.h errno = (f).errno_; \ f 167 third_party/tcmalloc/vendor/src/base/elfcore.h (r) = (f).uregs; \ f 176 third_party/tcmalloc/vendor/src/base/elfcore.h #define FRAME(f) Frame f; \ f 178 third_party/tcmalloc/vendor/src/base/elfcore.h f.errno_ = errno; \ f 179 third_party/tcmalloc/vendor/src/base/elfcore.h f.tid = sys_gettid(); \ f 223 third_party/tcmalloc/vendor/src/base/elfcore.h : : "a" (&f) : "memory"); \ f 225 third_party/tcmalloc/vendor/src/base/elfcore.h #define SET_FRAME(f,r) \ f 227 third_party/tcmalloc/vendor/src/base/elfcore.h errno = (f).errno_; \ f 228 third_party/tcmalloc/vendor/src/base/elfcore.h (f).uregs.fs_base = (r).fs_base; \ f 229 third_party/tcmalloc/vendor/src/base/elfcore.h (f).uregs.gs_base = (r).gs_base; \ f 230 third_party/tcmalloc/vendor/src/base/elfcore.h (r) = (f).uregs; \ f 241 third_party/tcmalloc/vendor/src/base/elfcore.h #define FRAME(f) Frame f; \ f 244 third_party/tcmalloc/vendor/src/base/elfcore.h f.errno_ = errno; \ f 245 third_party/tcmalloc/vendor/src/base/elfcore.h f.tid = sys_gettid(); \ f 248 third_party/tcmalloc/vendor/src/base/elfcore.h : : "r"(&f.arm) : "memory"); \ f 249 third_party/tcmalloc/vendor/src/base/elfcore.h f.arm.uregs[16] = 0; \ f 253 third_party/tcmalloc/vendor/src/base/elfcore.h f.arm.uregs[17] = cpsr; \ f 255 third_party/tcmalloc/vendor/src/base/elfcore.h #define SET_FRAME(f,r) \ f 261 third_party/tcmalloc/vendor/src/base/elfcore.h long fps = (f).arm.uregs[16]; \ f 262 third_party/tcmalloc/vendor/src/base/elfcore.h errno = (f).errno_; \ f 263 third_party/tcmalloc/vendor/src/base/elfcore.h (r) = (f).arm; \ f 273 third_party/tcmalloc/vendor/src/base/elfcore.h #define FRAME(f) Frame f = { 0 }; \ f 277 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[ 0] = MIPSREG( 0); \ f 278 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[ 1] = MIPSREG( 1); \ f 279 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[ 2] = MIPSREG( 2); \ f 280 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[ 3] = MIPSREG( 3); \ f 281 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[ 4] = MIPSREG( 4); \ f 282 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[ 5] = MIPSREG( 5); \ f 283 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[ 6] = MIPSREG( 6); \ f 284 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[ 7] = MIPSREG( 7); \ f 285 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[ 8] = MIPSREG( 8); \ f 286 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[ 9] = MIPSREG( 9); \ f 287 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[10] = MIPSREG(10); \ f 288 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[11] = MIPSREG(11); \ f 289 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[12] = MIPSREG(12); \ f 290 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[13] = MIPSREG(13); \ f 291 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[14] = MIPSREG(14); \ f 292 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[15] = MIPSREG(15); \ f 293 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[16] = MIPSREG(16); \ f 294 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[17] = MIPSREG(17); \ f 295 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[18] = MIPSREG(18); \ f 296 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[19] = MIPSREG(19); \ f 297 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[20] = MIPSREG(20); \ f 298 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[21] = MIPSREG(21); \ f 299 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[22] = MIPSREG(22); \ f 300 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[23] = MIPSREG(23); \ f 301 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[24] = MIPSREG(24); \ f 302 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[25] = MIPSREG(25); \ f 303 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[26] = MIPSREG(26); \ f 304 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[27] = MIPSREG(27); \ f 305 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[28] = MIPSREG(28); \ f 306 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[29] = MIPSREG(29); \ f 307 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[30] = MIPSREG(30); \ f 308 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.uregs[31] = MIPSREG(31); \ f 312 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.hi = hi; \ f 313 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.lo = lo; \ f 314 third_party/tcmalloc/vendor/src/base/elfcore.h f.mips_regs.cp0_epc = pc; \ f 315 third_party/tcmalloc/vendor/src/base/elfcore.h f.errno_ = errno; \ f 316 third_party/tcmalloc/vendor/src/base/elfcore.h f.tid = sys_gettid(); \ f 318 third_party/tcmalloc/vendor/src/base/elfcore.h #define SET_FRAME(f,r) \ f 320 third_party/tcmalloc/vendor/src/base/elfcore.h errno = (f).errno_; \ f 321 third_party/tcmalloc/vendor/src/base/elfcore.h memcpy((r).uregs, (f).mips_regs.uregs, \ f 323 third_party/tcmalloc/vendor/src/base/elfcore.h (r).hi = (f).mips_regs.hi; \ f 324 third_party/tcmalloc/vendor/src/base/elfcore.h (r).lo = (f).mips_regs.lo; \ f 325 third_party/tcmalloc/vendor/src/base/elfcore.h (r).cp0_epc = (f).mips_regs.cp0_epc; \ f 335 third_party/tcmalloc/vendor/src/base/elfcore.h #define FRAME(f) Frame f; do { f.tid = sys_gettid(); } while (0) f 336 third_party/tcmalloc/vendor/src/base/elfcore.h #define SET_FRAME(f,r) do { } while (0) f 1780 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall1(int, close, int, f) f 1782 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall3(int, fcntl, int, f, f 1784 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall2(int, fstat, int, f, f 1789 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall3(int, getdents, int, f, f 1792 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall3(int, getdents64, int, f, f 1800 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall3(off_t, lseek, int, f, f 1806 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h unsigned long, f, void *, a) f 1808 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h int, f, int, m) f 1813 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall3(ssize_t, read, int, f, f 1824 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall2(int, stat, const char*, f, f 1826 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall3(ssize_t, write, int, f, f 1840 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h int, f, int, d, f 1880 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall4(int, openat, int, d, const char *, p, int, f, int, m) f 1921 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall2(int, fstat64, int, f, f 1928 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h int, f, int, d, f 1937 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h int, f, int, d, f 398 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc AllocList *f = reinterpret_cast<AllocList *>( f 399 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc reinterpret_cast<char *>(v) - sizeof (f->header)); f 400 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc RAW_CHECK(f->header.magic == Magic(kMagicAllocated, &f->header), f 402 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc RAW_CHECK(f->header.arena == arena, f 404 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc f->levels = LLA_SkiplistLevels(f->header.size, arena->min_size, true); f 406 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc LLA_SkiplistInsert(&arena->freelist, f, prev); f 407 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc f->header.magic = Magic(kMagicUnallocated, &f->header); f 408 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc Coalesce(f); // maybe coalesce with successor f 416 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc AllocList *f = reinterpret_cast<AllocList *>( f 417 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc reinterpret_cast<char *>(v) - sizeof (f->header)); f 418 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc RAW_CHECK(f->header.magic == Magic(kMagicAllocated, &f->header), f 420 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc LowLevelAlloc::Arena *arena = f->header.arena; f 408 third_party/tcmalloc/vendor/src/gperftools/heap-checker.h HeapCleaner(void_function f); f 1899 third_party/tcmalloc/vendor/src/heap-checker.cc HeapCleaner::HeapCleaner(void_function f) { f 1902 third_party/tcmalloc/vendor/src/heap-checker.cc heap_cleanups_->push_back(f); f 1910 third_party/tcmalloc/vendor/src/heap-checker.cc void (*f)(void) = (*heap_cleanups_)[i]; f 1911 third_party/tcmalloc/vendor/src/heap-checker.cc f(); f 183 third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.cc inline Callback0(FunctionSignature f) : f_(f) {} f 194 third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.cc inline Callback1<P1>(FunctionSignature f, P1 p1) : f_(f), p1_(p1) {} f 206 third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.cc inline Callback2<P1,P2>(FunctionSignature f, P1 p1, P2 p2) : f_(f), p1_(p1), p2_(p2) {} f 1930 third_party/wtl/include/atlmisc.h double f = va_arg(argList, double); f 1940 third_party/wtl/include/atlmisc.h SecureHelper::sprintf_x(pszTemp, cchLen, _T("%*.*f"), nWidth, nPrecision + 6, f); f 61 third_party/zlib/contrib/minizip/minizip.c uLong filetime(f, tmzip, dt) f 62 third_party/zlib/contrib/minizip/minizip.c char *f; /* name of file to get info on */ f 72 third_party/zlib/contrib/minizip/minizip.c hFind = FindFirstFileA(f,&ff32); f 85 third_party/zlib/contrib/minizip/minizip.c uLong filetime(f, tmzip, dt) f 86 third_party/zlib/contrib/minizip/minizip.c char *f; /* name of file to get info on */ f 95 third_party/zlib/contrib/minizip/minizip.c if (strcmp(f,"-")!=0) f 98 third_party/zlib/contrib/minizip/minizip.c int len = strlen(f); f 102 third_party/zlib/contrib/minizip/minizip.c strncpy(name, f,MAXFILENAME-1); f 127 third_party/zlib/contrib/minizip/minizip.c uLong filetime(f, tmzip, dt) f 128 third_party/zlib/contrib/minizip/minizip.c char *f; /* name of file to get info on */ f 508 third_party/zlib/trees.c ush f; /* frequency */ f 530 third_party/zlib/trees.c f = tree[n].Freq; f 531 third_party/zlib/trees.c s->opt_len += (ulg)f * (bits + xbits); f 532 third_party/zlib/trees.c if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits); f 27 tools/android/ps_ext/ps_ext.c FILE *f = fopen("/proc/uptime", "r"); f 28 tools/android/ps_ext/ps_ext.c if (!f) f 30 tools/android/ps_ext/ps_ext.c fscanf(f, "%f", &uptime_secs); f 31 tools/android/ps_ext/ps_ext.c fclose(f); f 37 tools/android/ps_ext/ps_ext.c FILE *f = fopen("/proc/stat", "r"); f 38 tools/android/ps_ext/ps_ext.c if (!f) f 43 tools/android/ps_ext/ps_ext.c while (!feof(f)) { f 50 tools/android/ps_ext/ps_ext.c fgets(line, sizeof(line), f); f 66 tools/android/ps_ext/ps_ext.c fclose(f); f 71 tools/android/ps_ext/ps_ext.c FILE *f = fopen("/proc/meminfo", "r"); f 72 tools/android/ps_ext/ps_ext.c if (!f) f 77 tools/android/ps_ext/ps_ext.c while (!feof(f)) { f 82 tools/android/ps_ext/ps_ext.c fgets(line, sizeof(line), f); f 91 tools/android/ps_ext/ps_ext.c fclose(f); f 115 tools/android/ps_ext/ps_ext.c FILE *f; f 119 tools/android/ps_ext/ps_ext.c f = fopen(fpath, "r"); f 120 tools/android/ps_ext/ps_ext.c if (!f) f 123 tools/android/ps_ext/ps_ext.c fgets(cmdline, sizeof(cmdline), f); f 124 tools/android/ps_ext/ps_ext.c fclose(f); f 137 tools/android/ps_ext/ps_ext.c f = fopen(fpath, "r"); f 138 tools/android/ps_ext/ps_ext.c if (!f) f 140 tools/android/ps_ext/ps_ext.c fscanf(f, "%*d %s %*c %*d %*d %*d %*d %*d %*u %lu %*u %lu %*u %lu %lu " f 143 tools/android/ps_ext/ps_ext.c fclose(f); f 11 tools/clang/plugins/tests/inline_copy_ctor.h int a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p , q, r, s, t, u, v, w, x; f 30 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-expected.cc scoped_ptr_malloc<int> f; f 31 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-original.cc scoped_ptr_malloc<int> f; f 51 tools/gn/build_settings.h void set_build_config_file(const SourceFile& f) { build_config_file_ = f; } f 501 tools/gn/functions.cc scoped_ptr<PatternList> f(new PatternList); f 502 tools/gn/functions.cc f->SetFromValue(args[0], err); f 504 tools/gn/functions.cc scope->set_sources_assignment_filter(f.Pass()); f 97 tools/gn/generate_test_gn_data.cc for (int f = 0; f < files_per_target; f++) f 98 tools/gn/generate_test_gn_data.cc file << " \"" << base::IntToString(f) << ".cc\",\n"; f 38 tools/gn/input_file.h void set_friendly_name(const std::string& f) { friendly_name_ = f; } f 40 tools/gn/loader.cc LoadID(const SourceFile& f, const Label& tc_name) f 41 tools/gn/loader.cc : file(f), f 37 tools/gn/loader_unittest.cc bool HasOnePending(const SourceFile& f) const; f 89 tools/gn/loader_unittest.cc bool MockInputFileManager::HasOnePending(const SourceFile& f) const { f 90 tools/gn/loader_unittest.cc return pending_.size() == 1u && pending_[0].first == f; f 236 tools/gn/parse_tree.h void set_if_false(scoped_ptr<ParseNode> f) { f 237 tools/gn/parse_tree.h if_false_ = f.Pass(); f 199 tools/gn/scope.h scoped_ptr<PatternList> f) { f 200 tools/gn/scope.h sources_assignment_filter_ = f.Pass(); f 99 tools/imagediff/image_diff.cc FILE* f = base::OpenFile(path, "rb"); f 100 tools/imagediff/image_diff.cc if (!f) f 107 tools/imagediff/image_diff.cc while ((num_read = fread(buf, 1, buf_size, f)) > 0) { f 111 tools/imagediff/image_diff.cc base::CloseFile(f); f 370 ui/events/event.cc int f = flags(); f 373 ui/events/event.cc f &= ~EF_IS_DOUBLE_CLICK; f 374 ui/events/event.cc f &= ~EF_IS_TRIPLE_CLICK; f 377 ui/events/event.cc f |= EF_IS_DOUBLE_CLICK; f 378 ui/events/event.cc f &= ~EF_IS_TRIPLE_CLICK; f 381 ui/events/event.cc f &= ~EF_IS_DOUBLE_CLICK; f 382 ui/events/event.cc f |= EF_IS_TRIPLE_CLICK; f 385 ui/events/event.cc set_flags(f); f 73 ui/gfx/animation/tween.cc uint8 FloatToColorByte(float f) { f 74 ui/gfx/animation/tween.cc return std::min(std::max(ToRoundedInt(f * 255.f), 0), 255); f 829 ui/gfx/geometry/rect_unittest.cc RectF f(1.1f, 2.2f, 3.3f, 4.4f); f 831 ui/gfx/geometry/rect_unittest.cc (f + Vector2dF(1.1f, -1.1f)).ToString()); f 833 ui/gfx/geometry/rect_unittest.cc (Vector2dF(1.1f, -1.1f) + f).ToString()); f 834 ui/gfx/geometry/rect_unittest.cc f += Vector2dF(1.1f, -1.1f); f 835 ui/gfx/geometry/rect_unittest.cc EXPECT_EQ(RectF(2.2f, 1.1f, 3.3f, 4.4f).ToString(), f.ToString()); f 837 ui/gfx/geometry/rect_unittest.cc (f - Vector2dF(1.1f, -1.1f)).ToString()); f 838 ui/gfx/geometry/rect_unittest.cc f -= Vector2dF(1.1f, -1.1f); f 839 ui/gfx/geometry/rect_unittest.cc EXPECT_EQ(RectF(1.1f, 2.2f, 3.3f, 4.4f).ToString(), f.ToString()); f 844 ui/gfx/geometry/rect_unittest.cc RectF f(1.1f, 2.1f, 3.1f, 4.1f); f 851 ui/gfx/geometry/rect_unittest.cc EXPECT_EQ(PointF(1.1f, 2.1f).ToString(), f.origin().ToString()); f 852 ui/gfx/geometry/rect_unittest.cc EXPECT_EQ(PointF(4.2f, 2.1f).ToString(), f.top_right().ToString()); f 853 ui/gfx/geometry/rect_unittest.cc EXPECT_EQ(PointF(1.1f, 6.2f).ToString(), f.bottom_left().ToString()); f 854 ui/gfx/geometry/rect_unittest.cc EXPECT_EQ(PointF(4.2f, 6.2f).ToString(), f.bottom_right().ToString()); f 871 ui/gfx/geometry/rect_unittest.cc RectF f(1.1f, 2.1f, 3.1f, 4.1f); f 872 ui/gfx/geometry/rect_unittest.cc EXPECT_FLOAT_EQ(0.f, f.ManhattanDistanceToPoint(PointF(1.1f, 2.1f))); f 873 ui/gfx/geometry/rect_unittest.cc EXPECT_FLOAT_EQ(0.f, f.ManhattanDistanceToPoint(PointF(4.2f, 6.f))); f 874 ui/gfx/geometry/rect_unittest.cc EXPECT_FLOAT_EQ(0.f, f.ManhattanDistanceToPoint(PointF(2.f, 4.f))); f 875 ui/gfx/geometry/rect_unittest.cc EXPECT_FLOAT_EQ(3.2f, f.ManhattanDistanceToPoint(PointF(0.f, 0.f))); f 876 ui/gfx/geometry/rect_unittest.cc EXPECT_FLOAT_EQ(2.1f, f.ManhattanDistanceToPoint(PointF(2.f, 0.f))); f 877 ui/gfx/geometry/rect_unittest.cc EXPECT_FLOAT_EQ(2.9f, f.ManhattanDistanceToPoint(PointF(5.f, 0.f))); f 878 ui/gfx/geometry/rect_unittest.cc EXPECT_FLOAT_EQ(.8f, f.ManhattanDistanceToPoint(PointF(5.f, 4.f))); f 879 ui/gfx/geometry/rect_unittest.cc EXPECT_FLOAT_EQ(2.6f, f.ManhattanDistanceToPoint(PointF(5.f, 8.f))); f 880 ui/gfx/geometry/rect_unittest.cc EXPECT_FLOAT_EQ(1.8f, f.ManhattanDistanceToPoint(PointF(3.f, 8.f))); f 881 ui/gfx/geometry/rect_unittest.cc EXPECT_FLOAT_EQ(1.9f, f.ManhattanDistanceToPoint(PointF(0.f, 7.f))); f 882 ui/gfx/geometry/rect_unittest.cc EXPECT_FLOAT_EQ(1.1f, f.ManhattanDistanceToPoint(PointF(0.f, 3.f))); f 894 ui/gfx/geometry/rect_unittest.cc RectF f(0.0f, 0.0f, 400.0f, 400.0f); f 898 ui/gfx/geometry/rect_unittest.cc 0.0f, f.ManhattanInternalDistance(gfx::RectF(-1.0f, 0.0f, 2.0f, 1.0f))); f 901 ui/gfx/geometry/rect_unittest.cc f.ManhattanInternalDistance(gfx::RectF(400.0f, 0.0f, 1.0f, 400.0f))); f 903 ui/gfx/geometry/rect_unittest.cc f.ManhattanInternalDistance( f 907 ui/gfx/geometry/rect_unittest.cc f.ManhattanInternalDistance(gfx::RectF(-101.0f, 100.0f, 100.0f, 100.0f))); f 909 ui/gfx/geometry/rect_unittest.cc f.ManhattanInternalDistance( f 913 ui/gfx/geometry/rect_unittest.cc f.ManhattanInternalDistance(gfx::RectF(630.0f, 603.0f, 100.0f, 100.0f))); f 916 ui/gfx/geometry/rect_unittest.cc 0.0f, f.ManhattanInternalDistance(gfx::RectF(-1.0f, 0.0f, 1.1f, 1.0f))); f 919 ui/gfx/geometry/rect_unittest.cc f.ManhattanInternalDistance(gfx::RectF(-1.5f, 0.0f, 1.4f, 1.0f))); f 922 ui/gfx/geometry/rect_unittest.cc f.ManhattanInternalDistance(gfx::RectF(-1.5f, 0.0f, 1.5f, 1.0f))); f 17 ui/gfx/geometry/vector2d_unittest.cc Vector2dF f = i; f 18 ui/gfx/geometry/vector2d_unittest.cc EXPECT_EQ(i, f); f 48 ui/views/focus/focus_manager_factory.cc void FocusManagerFactory::Install(FocusManagerFactory* f) { f 49 ui/views/focus/focus_manager_factory.cc if (f == focus_manager_factory) f 52 ui/views/focus/focus_manager_factory.cc focus_manager_factory = f ? f : new DefaultFocusManagerFactory(); f 592 url/url_parse_unittest.cc char f[] = "http://www.google.com?&&==&="; f 593 url/url_parse_unittest.cc EXPECT_TRUE(NthParameterIs(f, 1, "", "")); f 594 url/url_parse_unittest.cc EXPECT_TRUE(NthParameterIs(f, 2, "", "")); f 595 url/url_parse_unittest.cc EXPECT_TRUE(NthParameterIs(f, 3, "", "=")); f 596 url/url_parse_unittest.cc EXPECT_TRUE(NthParameterIs(f, 4, "", "")); f 597 url/url_parse_unittest.cc EXPECT_TRUE(NthParameterIs(f, 5, NULL, NULL));