Searched defs:second (Results 1 - 25 of 320) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DCheck.cs88 public static void FirstAndSecond (object first, object second) argument
92 if (second == null)
93 throw new ArgumentNullException ("second");
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDateTest.java100 int minute, int second) {
101 aCal.set(year, month, date, hour, minute, second);
99 getTime(int year, int month, int date, int hour, int minute, int second) argument
/external/bison/src/
H A Dsymtab.c151 location second)
154 complain_at_indent (second, &i, _("%s redeclaration for %s"), what, s->tag);
161 location second)
164 complain_at_indent (second, &i, _("%s redeclaration for <%s>"), what, s->tag);
520 user_token_number_redeclaration (int num, symbol *first, symbol *second) argument
524 second step, via a traversal of the symbol table sorted on tag.
528 if (location_cmp (first->location, second->location) > 0)
531 first = second;
532 second = tmp;
534 complain_at_indent (second
150 symbol_redeclaration(symbol *s, const char *what, location first, location second) argument
160 semantic_type_redeclaration(semantic_type *s, const char *what, location first, location second) argument
[all...]
/external/chromium_org/ash/wm/panels/
H A Dpanel_layout_manager.cc148 std::vector<VisiblePanelPositionInfo>::iterator second = first + 1; local
149 int separation = (*first).major_length / 2 + (*second).major_length / 2 +
151 int overlap = (*first).major_pos + separation - (*second).major_pos;
154 (*second).major_pos = std::min((*second).max_major,
156 // Recalculate the first panel position in case the second one was
159 (*second).major_pos - separation);
792 it != window_ordering.end() && it->second != active_panel; ++it) {
794 panel_container_->StackChildAbove(it->second, previous_panel);
795 previous_panel = it->second;
[all...]
/external/chromium_org/ash/wm/
H A Dsystem_gesture_event_filter_unittest.cc303 views::Widget* second = views::Widget::CreateWindowWithContextAndBounds( local
305 second->Show();
308 // drag to move |second|. The attempt to move |second| should fail.
310 const gfx::Rect& second_bounds = second->GetWindowBoundsInScreen();
328 second->GetWindowBoundsInScreen().ToString());
/external/chromium_org/athena/wm/
H A Dwindow_list_provider_impl_unittest.cc99 scoped_ptr<aura::Window> second = local
104 container->AddChild(second.get());
124 scoped_ptr<aura::Window> second = local
131 container->AddChild(second.get());
139 EXPECT_EQ(list.end(), std::find(list.begin(), list.end(), second.get()));
/external/chromium_org/base/profiler/
H A Dtracked_time_unittest.cc40 Duration second = Duration::FromMilliseconds(kSecondMilliseconds); local
43 EXPECT_EQ(kSecondMilliseconds, second.InMilliseconds());
45 Duration sum = first + second;
/external/chromium_org/base/test/
H A Dtrace_event_analyzer.cc120 *arg = i->second;
130 *arg = i->second;
475 *num = num_i->second;
520 *str = str_i->second;
730 const Query& second,
743 if (second.Evaluate(this_event)) {
763 // Even if this_event is a |second| event that has matched an earlier
765 // with a later |second| event.
829 thread_names_[this_event.thread] = string_it->second;
729 AssociateEvents(const Query& first, const Query& second, const Query& match) argument
/external/chromium_org/base/time/
H A Dtime.h250 int second; // Second within the current minute (0-59 plus leap member in struct:base::Time::Exploded
252 int millisecond; // Milliseconds within the current second (0-999)
309 // having a 1 second resolution, which agrees with
/external/chromium_org/cc/layers/
H A Dlayer_iterator_unittest.cc105 scoped_refptr<TestLayer> second = TestLayer::Create(); local
110 root_layer->AddChild(second);
126 EXPECT_COUNT(second, -1, -1, 2);
/external/chromium_org/chrome/browser/
H A Dbrowser_commands_unittest.cc38 // Select the second tab.
47 // Navigate to the second tab using the next accelerators.
186 // Select the second tab and make it go forward in a new background tab.
204 WebContents* second = browser()->tab_strip_model()->GetWebContentsAt(2); local
207 EXPECT_EQ(url2, second->GetVisibleURL());
208 EXPECT_TRUE(second->GetController().CanGoBack());
209 EXPECT_FALSE(second->GetController().CanGoForward());
215 CommitPendingLoad(&second->GetController());
/external/chromium_org/chrome/browser/chromeos/login/users/avatar/
H A Duser_image_manager_test_util.cc22 bool AreImagesEqual(const gfx::ImageSkia& first, const gfx::ImageSkia& second) { argument
23 if (first.width() != second.width() || first.height() != second.height())
26 const SkBitmap* second_bitmap = second.bitmap();
/external/chromium_org/chrome/browser/chromeos/memory/
H A Doom_priority_manager.cc421 // than |second|.
423 TabStats second) {
425 if (first.is_selected != second.is_selected)
430 if (first.is_reloadable_ui != second.is_reloadable_ui)
434 if (first.is_pinned != second.is_pinned)
439 if (first.is_app != second.is_app)
443 if (first.is_playing_audio != second.is_playing_audio)
454 return first.last_active > second.last_active;
504 || it->second != chrome::kLowestRendererOomScore) {
610 bool inserted = already_seen.insert(iterator->renderer_handle).second;
422 CompareTabStats(TabStats first, TabStats second) argument
[all...]
/external/chromium_org/chrome/browser/content_settings/
H A Dcontent_settings_pref_provider_unittest.cc470 base::Time second = pref_content_settings_provider.GetLastUsage( local
473 base::TimeDelta delta = second - first;
/external/chromium_org/chrome/browser/extensions/api/dial/
H A Ddial_device_data_unittest.cc14 void ExpectEqual(const DialDeviceData& first, const DialDeviceData& second) { argument
15 EXPECT_EQ(first.device_id(), second.device_id());
16 EXPECT_EQ(first.label(), second.label());
17 EXPECT_EQ(first.device_description_url(), second.device_description_url());
18 EXPECT_EQ(first.response_time(), second.response_time());
19 EXPECT_EQ(first.max_age(), second.max_age());
20 EXPECT_EQ(first.config_id(), second.config_id());
/external/chromium_org/chrome/browser/extensions/api/downloads/
H A Ddownloads_api_browsertest.cc74 bool operator() (DownloadItem* first, DownloadItem* second) { argument
75 return first->GetId() < second->GetId();
3972 // does not need to be re-done. So, there will not be a second
/external/chromium_org/chrome/browser/extensions/
H A Dchrome_extensions_browser_client.cc78 content::BrowserContext* second) {
80 static_cast<Profile*>(second));
76 IsSameContext( content::BrowserContext* first, content::BrowserContext* second) argument
H A Dconvert_web_app_unittest.cc71 int second, int millisecond) {
78 exploded.second = second;
70 GetTestTime(int year, int month, int day, int hour, int minute, int second, int millisecond) argument
/external/chromium_org/chrome/browser/history/
H A Dtop_sites_impl.cc69 const MostVisitedURL& second) {
71 !second.last_forced_time.is_null());
72 return first.last_forced_time < second.last_forced_time;
294 *score = i->second.thumbnail_score;
422 DCHECK(found->second != kAlreadyFoundMarker)
424 int old_rank = found->second >= num_old_forced ?
425 found->second - num_old_forced : -1;
427 old_list[found->second].last_forced_time !=
434 found->second = kAlreadyFoundMarker;
442 if (i->second !
68 ForcedURLComparator(const MostVisitedURL& first, const MostVisitedURL& second) argument
[all...]
/external/chromium_org/chrome/browser/media_galleries/
H A Dmedia_galleries_scan_result_controller_unittest.cc328 gallery_prefs()->known_galleries().find(unselected_update)->second;
337 gallery_prefs()->known_galleries().find(selected_update)->second;
386 controller()->DidToggleEntry(scan2, false); // Uncheck the second.
408 MediaGalleryPrefId second = local
409 AddGallery("second", MediaGalleryPrefInfo::kAutoDetected, 9, 0, 0);
419 EXPECT_EQ(second, results[1].pref_info.pref_id);
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Dlast_download_finder.cc31 // Returns true if |first| is more recent than |second|, preferring opened over
35 const history::DownloadRow& second) {
36 if (first.end_time < second.end_time)
44 return (first.end_time != second.end_time ||
45 (first.opened && !second.opened));
34 IsMoreInterestingThan(const history::DownloadRow& first, const history::DownloadRow& second) argument
/external/chromium_org/chrome/browser/ui/find_bar/
H A Dfind_bar_host_browsertest.cc340 gfx::Rect first, second, first_reverse; local
347 kFwd, kIgnoreCase, NULL, &second);
350 // be the same even for second search.
351 ASSERT_EQ(first.y(), second.y());
352 ASSERT_EQ(first.bottom(), second.bottom());
353 ASSERT_LT(first.x(), second.x());
354 ASSERT_LT(first.right(), second.right());
599 // active match, the second one is after it. This verifies that refining a
1124 // Create a second tab.
1205 // Now create a second ta
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dmenu_view_drag_and_drop_test.cc105 views::View* second = new TestDragView(); local
106 AddChildView(second);
107 second->SetBounds(15, 2, 10, 2);
295 // We're going to drag the second menu element.
418 // Drop the item so that it's now the second item.
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dpreferences_browsertest.cc64 bool operator==(const base::Value& first, const base::Value& second) { argument
65 return first.Equals(&second);
/external/chromium_org/chrome/renderer/plugins/
H A Dplugin_uma.cc87 bool PluginUMAReporter::CompareCStrings(const char* first, const char* second) { argument
88 return strcmp(first, second) < 0;

Completed in 982 milliseconds

1234567891011>>