Searched refs:model (Results 501 - 525 of 1093) sorted by relevance

<<21222324252627282930>>

/external/junit/src/org/junit/runners/
H A DParentRunner.java18 import org.junit.internal.runners.model.EachTestNotifier;
32 import org.junit.runners.model.FrameworkMethod;
33 import org.junit.runners.model.InitializationError;
34 import org.junit.runners.model.MultipleFailureException;
35 import org.junit.runners.model.RunnerScheduler;
36 import org.junit.runners.model.Statement;
37 import org.junit.runners.model.TestClass;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.debug.core_3.6.0.v20100519.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Djsc_view.py15 import third_party.json_schema_compiler.model as model namespace
51 if node.parent is not None and not isinstance(node.parent, model.Namespace):
167 not isinstance(callback.parent, model.Namespace)):
248 in JSON Schema Compiler, we model them differently for the templates.
272 callback_object = model.Function(parent=event,
318 if type_.property_type == model.PropertyType.ARRAY:
337 if type_.property_type == model.PropertyType.FUNCTION:
361 not isinstance(src.parent, model.Namespace)):
366 dst_dict['is_object'] = type_.property_type == model
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/
H A DGenericRequestBuilder.java16 import com.bumptech.glide.load.model.ModelLoader;
17 import com.bumptech.glide.load.model.NullEncoder;
41 * models loaders to translate a model into generic resources for either an image or a video and decoders that can
44 * @param <ModelType> The type of model representing the image or video.
51 private final ModelType model; field in class:GenericRequestBuilder
76 GenericRequestBuilder(Context context, ModelType model, argument
89 if (model != null && loadProvider == null) {
93 this.model = model;
181 * Will be ignored if the data represented by the given model i
[all...]
/external/chromium_org/chrome/browser/search_engines/
H A Dsearch_provider_install_data_unittest.cc163 util_.model(), SearchTermsData().GoogleBaseURLValue(), NULL,
186 util_.model()->Add(t_url);
224 util()->model()->SetUserSelectedDefaultSearchProvider(default_url);
247 EXPECT_TRUE(util()->model()->is_default_search_managed());
270 util()->model()->SetUserSelectedDefaultSearchProvider(default_url);
/external/chromium_org/chrome/installer/util/
H A Dwmi.cc162 base::win::ScopedVariant model; local
163 class_object->Get(L"Model", 0, model.Receive(), 0, 0);
168 if (model.type() == VT_BSTR)
171 if (model.type() == VT_BSTR)
172 model_string += V_BSTR(&model);
/external/chromium_org/ui/base/models/
H A Dsimple_menu_model.h75 // Methods for adding items to the model.
83 // Adds a separator of the specified type to the model.
86 // - Adding a separator to an empty model is invalid, unless they are NORMAL
87 // or SPACING. NORMAL separators are silently ignored if the model is empty.
90 // Removes separators until the model's last entry is not a separator, or the
91 // model is empty.
96 void AddButtonItem(int command_id, ButtonMenuItemModel* model);
99 MenuModel* model);
100 void AddSubMenuWithStringId(int command_id, int string_id, MenuModel* model);
102 // Methods for inserting items into the model
[all...]
/external/chromium_org/ui/views/controls/table/
H A Dtable_view.h19 // TableView is driven by a TableModel. The model returns the contents
21 // TableView of changes to the model so that the display may be updated
27 // When a table is sorted the model coordinates do not necessarily match the
28 // view coordinates. All table methods are in terms of the model. If you need to
86 // Creates a new table using the model and columns specified.
89 TableView(ui::TableModel* model,
95 // Assigns a new model to the table view, detaching the old one if present.
96 // If |model| is NULL, the table view cannot be used after this call. This
98 // issues when the model needs to be deleted before the table.
99 void SetModel(ui::TableModel* model);
100 ui::TableModel* model() const { return model_; } function in class:views::TableView
[all...]
/external/chromium_org/ui/views/controls/tree/
H A Dtree_view.h52 // Sets the model. TreeView does not take ownership of the model.
53 void SetModel(ui::TreeModel* model);
54 ui::TreeModel* model() const { return model_; } function in class:views::TreeView
135 virtual void TreeNodesAdded(ui::TreeModel* model,
139 virtual void TreeNodesRemoved(ui::TreeModel* model,
143 virtual void TreeNodeChanged(ui::TreeModel* model,
189 // The model node this InternalNode represents.
213 // The node from the model.
254 // Configures an InternalNode from a node from the model
[all...]
/external/owasp/sanitizer/lib/junit/
H A Djunit-dep.jar ... internal/requests/ org/junit/internal/runners/ org/junit/internal/runners/model/ org/junit/internal/runners/statements/ org/junit/matchers/ org/junit ...
H A Djunit.jar ... internal/requests/ org/junit/internal/runners/ org/junit/internal/runners/model/ org/junit/internal/runners/statements/ org/junit/matchers/ org/junit ...
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dbrowser_actions_container_browsertest.cc67 // This extension should not be in the model (has no browser action).
85 // move (that's in the toolbar model tests), but just to check our ui.
104 extensions::ExtensionToolbarModel* model = local
106 ASSERT_TRUE(model);
114 model->MoveExtensionIcon(extension_c, 0);
120 model->MoveExtensionIcon(extension_b, 2);
126 model->MoveExtensionIcon(extension_b, 1);
180 // This order should be reflected in the underlying model.
181 extensions::ExtensionToolbarModel* model = local
183 EXPECT_EQ(extension_b, model
416 extensions::ExtensionToolbarModel* model = local
462 extensions::ExtensionToolbarModel* model() { return model_; } function in class:BrowserActionsContainerOverflowTest
[all...]
/external/chromium_org/ash/shelf/
H A Dshelf.cc108 const ShelfItem& item = shelf_view_->model()->items()[index];
117 *(shelf_view_->model()), direction);
155 ShelfModel* shelf_model = shelf_view_->model();
/external/chromium_org/chrome/browser/autocomplete/
H A Dkeyword_extensions_delegate_impl.cc123 TemplateURLService* model = provider_->GetTemplateURLService(); local
146 model->GetTemplateURLForKeyword(keyword));
165 model->GetTemplateURLForKeyword(keyword);
/external/chromium_org/chrome/browser/chromeos/memory/
H A Doom_priority_manager.cc295 TabStripModel* model = browser->tab_strip_model(); local
296 for (int idx = 0; idx < model->count(); idx++) {
298 if (model->IsTabDiscarded(idx) || (model->active_index() == idx))
300 WebContents* web_contents = model->GetWebContentsAt(idx);
308 model->DiscardWebContentsAt(idx);
570 const TabStripModel* model = browser->tab_strip_model(); local
571 for (int i = 0; i < model->count(); i++) {
572 WebContents* contents = model->GetWebContentsAt(i);
579 stats.is_pinned = model
[all...]
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Dremovable_storage_provider_chromeos_unittest.cc102 const std::string& model,
110 EXPECT_EQ(model, device->model);
99 ExpectDevice(StorageDeviceList* list, const std::string& device_path, const std::string& vendor, const std::string& model, uint64 capacity) argument
/external/chromium_org/chrome/browser/ui/tabs/
H A Dpinned_tab_codec.cc52 static void EncodePinnedTab(TabStripModel* model, argument
57 content::WebContents* web_contents = model->GetWebContentsAt(index);
58 if (model->IsAppTab(index)) {
/external/chromium_org/ui/app_list/views/
H A Dapp_list_view_unittest.cc285 AppListTestModel* model = delegate_->GetTestModel(); local
286 model->PopulateApps(kInitialItems);
288 model->MergeItems(model->top_level_item_list()->item_at(0)->id(),
289 model->top_level_item_list()->item_at(1)->id());
291 AppListFolderItem* folder_item = model->FindFolderItem(folder_id);
328 AppListTestModel* model = delegate_->GetTestModel(); local
329 model->PopulateApps(3);
358 model->results()->Add(new TestTileSearchResult());
361 model
471 AppListTestModel* model = delegate_->GetTestModel(); local
[all...]
/external/chromium_org/ui/views/controls/combobox/
H A Dcombobox.h62 // |model| is not owned by the combobox.
63 explicit Combobox(ui::ComboboxModel* model);
73 // Informs the combobox that its model changed.
80 // Looks for the first occurrence of |value| in |model()|. If found, selects
84 ui::ComboboxModel* model() const { return model_; } function in class:views::Combobox
122 virtual void OnComboboxModelChanged(ui::ComboboxModel* model) OVERRIDE;
133 // Updates the combobox's content from its model.
168 // Our model. Not owned.
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DAbstractComboBoxPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
37 * @coverage core.model.property.editor
H A DAbstractComboPropertyEditor.java11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
33 * @coverage core.model.property.editor
/external/llvm/test/MC/ARM/
H A Deh-compact-pr0.s4 @ Check the compact pr0 model
53 @ 0x80 = Compact model 0, personality routine: __aeabi_unwind_cpp_pr0
87 @ 0x80 = Compact model 0, personality routine: __aeabi_unwind_cpp_pr0
/external/chromium_org/chrome/browser/diagnostics/
H A Drecon_diagnostics.cc56 EnumerateModulesModel* model = EnumerateModulesModel::GetInstance(); variable
57 model->set_limited_mode(true);
58 model->ScanNow();
59 scoped_ptr<base::ListValue> list(model->GetModuleList());
60 if (!model->confirmed_bad_modules_detected() &&
61 !model->suspected_bad_modules_detected()) {
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dbrowser_shortcut_launcher_item_controller.cc59 ash::ShelfModel* model = launcher_controller()->model();
62 int browser_index = model->GetItemIndexForType(ash::TYPE_BROWSER_SHORTCUT);
64 ash::ShelfItem browser_item = model->items()[browser_index];
100 model->Set(browser_index, browser_item);
247 *(launcher_controller()->model()->ItemByID(shelf_id()));
/external/chromium_org/ash/test/
H A Dtest_shell_delegate.cc152 ShelfDelegate* TestShellDelegate::CreateShelfDelegate(ShelfModel* model) { argument
153 return new TestShelfDelegate(model);

Completed in 719 milliseconds

<<21222324252627282930>>