Searched defs:model (Results 51 - 75 of 544) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DRule.java30 package org.antlr.gunit.swingui.model;
H A DTestCaseInputFile.java29 package org.antlr.gunit.swingui.model;
H A DTestCaseInputMultiString.java29 package org.antlr.gunit.swingui.model;
H A DTestCaseInputString.java29 package org.antlr.gunit.swingui.model;
H A DTestCaseOutputAST.java29 package org.antlr.gunit.swingui.model;
H A DTestCaseOutputResult.java29 package org.antlr.gunit.swingui.model;
H A DTestCaseOutputReturn.java28 package org.antlr.gunit.swingui.model;
H A DTestCaseOutputStdOut.java28 package org.antlr.gunit.swingui.model;
/external/chromium_org/ash/shelf/
H A Dapp_list_shelf_item_delegate.cc32 ShelfModel* model = Shell::GetInstance()->shelf_model(); local
33 DCHECK(model);
34 return model->status() == ShelfModel::STATUS_LOADING ?
H A Dshelf_navigator.cc24 int GetNextActivatedItemIndex(const ShelfModel& model, argument
26 const ShelfItems& items = model.items();
27 int item_count = model.item_count();
H A Dshelf_navigator_unittest.cc64 const ShelfModel& model() { return *model_.get(); } function in class:ash::__anon1956::ShelfNavigatorTest
83 EXPECT_EQ(4, GetNextActivatedItemIndex(model(), CYCLE_FORWARD));
87 EXPECT_EQ(5, GetNextActivatedItemIndex(model(), CYCLE_BACKWARD));
99 EXPECT_EQ(3, GetNextActivatedItemIndex(model(), CYCLE_FORWARD));
104 EXPECT_EQ(-1, GetNextActivatedItemIndex(model(), CYCLE_FORWARD));
105 EXPECT_EQ(-1, GetNextActivatedItemIndex(model(), CYCLE_BACKWARD));
114 EXPECT_EQ(-1, GetNextActivatedItemIndex(model(), CYCLE_FORWARD));
115 EXPECT_EQ(-1, GetNextActivatedItemIndex(model(), CYCLE_BACKWARD));
126 EXPECT_EQ(2, GetNextActivatedItemIndex(model(), CYCLE_FORWARD));
127 EXPECT_EQ(2, GetNextActivatedItemIndex(model(), CYCLE_BACKWAR
[all...]
/external/chromium_org/base/
H A Datomicops_internals_x86_gcc.cc62 // get feature flags in ecx/edx, and family/model in eax
65 int family = (eax >> 8) & 0xf; // family and model fields
66 int model = (eax >> 4) & 0xf; local
67 if (family == 0xf) { // use extended family and model fields
69 model += ((eax >> 16) & 0xf) << 4;
76 // so we test only for Rev E, which is family 15, model 32..63 inclusive.
79 32 <= model && model <= 63) {
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Dremovable_storage_provider_mac.cc82 std::string model = base::SysCFStringRefToUTF8(cf_model); local
89 device->model = model;
/external/chromium_org/chrome/browser/task_manager/
H A Dtask_manager_unittest.cc70 TaskManagerModel* model = task_manager.model_.get(); local
71 EXPECT_EQ(0, model->ResourceCount());
76 TaskManagerModel* model = task_manager.model_.get(); local
81 ASSERT_EQ(1, model->ResourceCount());
82 EXPECT_TRUE(model->IsResourceFirstInGroup(0));
83 EXPECT_EQ(ASCIIToUTF16("test title"), model->GetResourceTitle(0));
84 EXPECT_EQ(ASCIIToUTF16("test profile"), model->GetResourceProfileName(0));
86 model->GetResourceNetworkUsage(0));
87 EXPECT_EQ(ASCIIToUTF16(kZeroCPUUsage), model->GetResourceCPUUsage(0));
90 ASSERT_EQ(2, model
117 TaskManagerModel* model = task_manager.model_.get(); local
[all...]
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dlauncher_context_menu_unittest.cc22 TestChromeLauncherController(Profile* profile, ash::ShelfModel* model) argument
23 : ChromeLauncherController(profile, model) {}
/external/chromium_org/chrome/browser/ui/autofill/
H A Dcountry_combobox_model_unittest.cc28 CountryComboboxModel* model() { return model_.get(); } function in class:autofill::CountryComboboxModelTest
38 std::string default_country = model()->GetDefaultCountryCode();
43 EXPECT_EQ(country.name(), model()->GetItemAt(0));
47 for (int i = 0; i < model()->GetItemCount(); ++i) {
48 if (model()->IsItemSeparatorAt(i))
51 std::string country_code = model()->countries()[i]->country_code();
H A Ddata_model_wrapper_unittest.cc25 MonthComboboxModel model; local
29 EXPECT_EQ(model.GetItemAt(month),
160 MonthComboboxModel model; local
164 EXPECT_EQ(model.GetItemAt(month),
/external/chromium_org/chrome/browser/ui/cocoa/translate/
H A Dtranslate_bubble_controller.h46 // The combobox model which is used to deny translation at the view before
50 // The combobox model for source languages on the advanced (option) panel.
53 // The combobox model for target languages on the advanced (option) panel.
61 @property(readonly, nonatomic) const TranslateBubbleModel* model; variable
64 model:(scoped_ptr<TranslateBubbleModel>)model
/external/chromium_org/chrome/browser/ui/content_settings/
H A Dcontent_setting_image_model_unittest.cc27 explicit NotificationForwarder(ContentSettingImageModel* model) argument
28 : model_(model) {
/external/chromium_org/chrome/browser/ui/search/
H A Dsearch_tab_helper.h37 // search UI model.
50 SearchModel* model() { function in class:SearchTabHelper
195 // Sets the mode of the model based on the current URL of web_contents().
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dsystem_menu_model_builder.cc38 ui::SimpleMenuModel* model = new ui::SimpleMenuModel(&menu_delegate_); local
39 menu_model_.reset(model);
40 BuildMenu(model);
46 model->AddSeparator(ui::NORMAL_SEPARATOR);
50 void SystemMenuModelBuilder::BuildMenu(ui::SimpleMenuModel* model) { argument
54 BuildSystemMenuForBrowserWindow(model);
56 BuildSystemMenuForAppOrPopupWindow(model);
57 AddFrameToggleItems(model);
61 ui::SimpleMenuModel* model) {
62 model
60 BuildSystemMenuForBrowserWindow( ui::SimpleMenuModel* model) argument
78 BuildSystemMenuForAppOrPopupWindow( ui::SimpleMenuModel* model) argument
114 AddFrameToggleItems(ui::SimpleMenuModel* model) argument
123 AppendTeleportMenu(ui::SimpleMenuModel* model) argument
[all...]
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dlocation_icon_view.cc27 OmniboxEditModel* model = local
28 page_info_helper_.location_bar()->GetOmniboxView()->model();
29 if (model->CanPasteAndGo(text))
30 model->PasteAndGo(text);
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dback_button.cc12 ui::MenuModel* model)
13 : ToolbarButton(listener, model),
11 BackButton(views::ButtonListener* listener, ui::MenuModel* model) argument
/external/chromium_org/chrome/test/base/
H A Dmenu_model_test.cc31 void MenuModelTest::CountEnabledExecutable(ui::MenuModel* model, argument
33 for (int i = 0; i < model->GetItemCount(); ++i) {
34 ui::MenuModel::ItemType type = model->GetTypeAt(i);
39 CountEnabledExecutable(model->GetSubmenuModelAt(i), count);
44 model->IsEnabledAt(i); // Check if it's enabled (ignore answer).
45 model->ActivatedAt(i); // Execute it.
/external/chromium_org/gpu/tools/compositor_model_bench/
H A Drender_models.cc16 return "(unknown render model name)";
26 RenderModelSimulator* ConstructSimulationModel(RenderModel model, argument
30 switch (model) {
36 LOG(ERROR) << "Unrecognized render model. "
37 "If we know its name, then it's..." << ModelToString(model);

Completed in 7696 milliseconds

1234567891011>>