HomeSort by relevance Sort by last modified time
    Searched refs:model (Results 276 - 300 of 892) sorted by null

<<11121314151617181920>>

  /cts/tools/signature-tools/test/signature/converter/dex/
GenericSignatureParserTest.java 33 import signature.model.impl.SigClassDefinition;
34 import signature.model.util.TypePool;
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view.h 8 // communication with the view. Since the model is shared between platforms,
36 // Used by the automation system for getting at the model from the view.
37 virtual AutocompleteEditModel* model() = 0;
38 virtual const AutocompleteEditModel* model() const = 0;
130 // Called when the temporary text in the model may have changed.
137 // Called when the inline autocomplete text in the model may have changed.
keyword_provider.h 56 KeywordProvider(ACProviderListener* listener, TemplateURLModel* model);
125 TemplateURLModel* model,
140 // Model for the keywords. This is only non-null when testing, otherwise the
autocomplete_edit_unittest.cc 19 virtual AutocompleteEditModel* model() { return NULL; } function in class:__anon2447::TestingAutocompleteEditView
20 virtual const AutocompleteEditModel* model() const { return NULL; } function in class:__anon2447::TestingAutocompleteEditView
144 AutocompleteEditModel model(&view, &controller, &profile);
147 model.UpdatePermanentText(ASCIIToUTF16(input[i].perm_text));
152 model.AdjustTextForCopy(input[i].sel_start, input[i].is_all_selected,
  /external/chromium/chrome/browser/importer/
importer_host.h 116 // True if we're waiting for the model to finish loading.
119 // Have we installed a listener on the bookmark model?
135 // template model are not yet loaded. If load is not detected, this method
136 // will be called when the loading observer sees that model loading is
141 virtual void Loaded(BookmarkModel* model) OVERRIDE;
142 virtual void BookmarkModelBeingDeleted(BookmarkModel* model) OVERRIDE;
profile_writer.h 63 // These functions return true if the corresponding model has been loaded.
126 string16 GenerateUniqueFolderName(BookmarkModel* model,
132 bool DoesBookmarkExist(BookmarkModel* model,
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_controller.h 358 - (void)loaded:(BookmarkModel*)model;
359 - (void)beingDeleted:(BookmarkModel*)model;
360 - (void)nodeAdded:(BookmarkModel*)model
362 - (void)nodeChanged:(BookmarkModel*)model
364 - (void)nodeMoved:(BookmarkModel*)model
367 - (void)nodeRemoved:(BookmarkModel*)model
369 - (void)nodeFaviconLoaded:(BookmarkModel*)model
371 - (void)nodeChildrenReordered:(BookmarkModel*)model
bookmark_bubble_controller.h 35 // Ping me when the bookmark model changes out from under us.
56 model:(BookmarkModel*)model
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk.h 139 // bookmark bar model has.
207 // Invoked when the bookmark model has finished loading. Creates a button
208 // for each of the children of the root node from the model.
209 virtual void Loaded(BookmarkModel* model);
211 // Invoked when the model is being deleted.
212 virtual void BookmarkModelBeingDeleted(BookmarkModel* model);
215 virtual void BookmarkNodeMoved(BookmarkModel* model,
220 virtual void BookmarkNodeAdded(BookmarkModel* model,
223 virtual void BookmarkNodeRemoved(BookmarkModel* model,
227 virtual void BookmarkNodeChanged(BookmarkModel* model,
    [all...]
bookmark_utils_gtk.cc 160 GdkPixbuf* GetPixbufForNode(const BookmarkNode* node, BookmarkModel* model,
165 if (model->GetFavicon(node).width() != 0) {
166 pixbuf = gfx::GdkPixbufFromSkBitmap(&model->GetFavicon(node));
220 BookmarkModel* model,
222 GdkPixbuf* pixbuf = GetPixbufForNode(node, model, provider->UseGtkTheme());
228 void ConfigureButtonForNode(const BookmarkNode* node, BookmarkModel* model,
230 GdkPixbuf* pixbuf = bookmark_utils::GetPixbufForNode(node, model,
232 PackButton(pixbuf, node->GetTitle(), node != model->other_node(), provider,
411 BookmarkModel* model, const BookmarkNode* parent, int idx) {
417 model->AddURL(parent, idx, title, url)
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtFallbackWebPopup.cpp 226 QStandardItemModel* model = qobject_cast<QStandardItemModel*>(m_combo->model()); local
227 Q_ASSERT(model);
241 model->item(i)->setEnabled(false);
245 model->item(i)->setEnabled(data.itemIsEnabled(i));
247 model->item(i)->setToolTip(data.itemToolTip(i));
249 model->item(i)->setBackground(data.itemBackgroundColor(i));
250 model->item(i)->setForeground(data.itemForegroundColor(i));
  /external/webkit/Tools/QueueStatusServer/handlers/
dashboard.py 34 from model.attachment import Attachment
35 from model.queues import Queue
submittoews.py 33 from model.attachment import Attachment
34 from model.queues import Queue
updatestatus.py 34 from model.attachment import Attachment
35 from model.queuestatus import QueueStatus
updateworkitems.py 33 from model.queues import Queue
34 from model.workitems import WorkItems
  /frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
FBOSyncRS.java 130 private void initMeshes(FileA3D model) {
131 int numEntries = model.getIndexEntryCount();
134 FileA3D.IndexEntry entry = model.getIndexEntry(i);
144 FileA3D.IndexEntry entry = model.getIndexEntry(i);
161 FileA3D model = FileA3D.createFromFile(mRS, path); local
162 initMeshes(model);
200 FileA3D model = FileA3D.createFromResource(mRS, mRes, R.raw.robot); local
201 initMeshes(model);
FBOTestRS.java 129 private void initMeshes(FileA3D model) {
130 int numEntries = model.getIndexEntryCount();
133 FileA3D.IndexEntry entry = model.getIndexEntry(i);
143 FileA3D.IndexEntry entry = model.getIndexEntry(i);
160 FileA3D model = FileA3D.createFromFile(mRS, path); local
161 initMeshes(model);
192 FileA3D model = FileA3D.createFromResource(mRS, mRes, R.raw.robot); local
193 initMeshes(model);
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SimpleModelRS.java 128 private void initMeshes(FileA3D model) {
129 int numEntries = model.getIndexEntryCount();
132 FileA3D.IndexEntry entry = model.getIndexEntry(i);
142 FileA3D.IndexEntry entry = model.getIndexEntry(i);
159 FileA3D model = FileA3D.createFromFile(mRS, path); local
160 initMeshes(model);
174 FileA3D model = FileA3D.createFromResource(mRS, mRes, R.raw.robot); local
175 initMeshes(model);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupDetailDisplayUtils.java 20 import com.android.contacts.model.AccountType;
21 import com.android.contacts.model.AccountTypeManager;
  /external/chromium/chrome/browser/ui/gtk/
gtk_tree.cc 25 gint GetRowNumForIter(GtkTreeModel* model, GtkTreeIter* iter) {
26 GtkTreePath* path = gtk_tree_model_get_path(model, iter);
42 GtkTreeModel* model = gtk_tree_view_get_model(tree_view); local
43 if (!model) {
48 if (!gtk_tree_model_iter_nth_child(model, &iter, NULL, row)) {
52 GtkTreePath* path = gtk_tree_model_get_path(model, &iter);
284 // When this method is called, the model has already removed the items, so
285 // accessing items in the model from |start| on may not be possible anymore.
313 gboolean TableAdapter::OnCheckRowIsSeparator(GtkTreeModel* model,
317 gtk_tree_model_get(model,
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.cpp 91 peers->setModel(&model);
187 ctx_item = model.itemFromIndex(idx);
433 if (model.rowCount() > 0) {
434 QModelIndexList lst = model.match(model.index(0, 0),
439 item = model.itemFromIndex(lst[i]);
444 model.removeRow(lst[i].row());
455 model.appendRow(item);
560 model.appendRow(item);
567 if (model.rowCount() == 0
    [all...]
  /cts/tools/signature-tools/test/signature/converter/
ConvertVisibilityTest.java 30 import signature.model.IApi;
31 import signature.model.IClassDefinition;
32 import signature.model.IMethod;
33 import signature.model.IPackage;
34 import signature.model.util.ModelUtil;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 18 An element type has a name, a content model vector, a member-of vector,
38 The content model, member-of, and flags vectors are specified as ints.
40 @param model ORed-together bits representing the content models
50 public ElementType(String name, int model, int memberOf, int flags, Schema schema) {
52 theModel = model;
124 public int model() { return theModel; } method in class:ElementType
169 That is, if any of the models in this element's model vector
250 @param model The content models of this element type as a vector of bits
253 public void setModel(int model) { theModel = model; }
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_fetcher_unittest.cc 190 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword));
204 const TemplateURL* t_url = test_util_.model()->GetTemplateURLForKeyword(
216 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword));
263 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword));
287 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword));
309 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword));
321 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword));
333 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword));
360 test_util_.model()->Add(t_url);
363 ASSERT_TRUE(test_util_.model()->GetTemplateURLForKeyword(keyword))
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowActivity.java 25 import com.android.mms.model.LayoutModel;
26 import com.android.mms.model.RegionModel;
27 import com.android.mms.model.SlideshowModel;
28 import com.android.mms.model.SmilHelper;
164 final SlideshowModel model; local
167 model = SlideshowModel.createFromMessageUri(this, msg);
168 mSlideCount = model.size();
176 PresenterFactory.getPresenter("SlideshowPresenter", this, mSlideView, model);
196 mSmilDoc = SmilHelper.getDocument(model);
202 LayoutModel layout = model.getLayout()
    [all...]

Completed in 1928 milliseconds

<<11121314151617181920>>