HomeSort by relevance Sort by last modified time
    Searched full:model (Results 351 - 375 of 3216) sorted by null

<<11121314151617181920>>

  /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);
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
shader_def.rsh 20 rs_matrix4x4 model;
34 rs_matrix4x4 model;
  /packages/apps/Mms/src/com/android/mms/model/
Model.java 18 package com.android.mms.model;
22 public class Model {
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
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...]
bookmark_editor_gtk.cc 142 int64 GetRowIdAt(GtkTreeModel* model, GtkTreeIter* iter) {
144 gtk_tree_model_get_value(model, iter, bookmark_utils::ITEM_ID, &value);
150 const BookmarkNode* GetNodeAt(GtkTreeModel* model, GtkTreeIter* iter) {
151 int64 id = GetRowIdAt(model, iter);
156 GtkTreeModel* model; local
159 &model,
164 return GetNodeAt(model, &iter);
167 // The model and view for the right click context menu.
215 // The tree model is deleted before the view. Reset the model otherwise th
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
FilterUtils.java 79 public static void setupMenuItems(GalleryActionBar model, Path path, boolean inAlbum) {
88 setMenuItemApplied(model, CLUSTER_BY_TIME,
90 setMenuItemApplied(model, CLUSTER_BY_LOCATION,
92 setMenuItemApplied(model, CLUSTER_BY_TAG,
94 setMenuItemApplied(model, CLUSTER_BY_FACE,
97 model.setClusterItemVisibility(CLUSTER_BY_ALBUM, !inAlbum || ctype == 0);
99 setMenuItemApplied(model, R.id.action_cluster_album, ctype == 0,
104 setMenuItemAppliedEnabled(model, R.string.show_images_only,
108 setMenuItemAppliedEnabled(model, R.string.show_videos_only,
112 setMenuItemAppliedEnabled(model, R.string.show_all
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFix.java 69 @SuppressWarnings("restriction") // XML model
213 IStructuredModel model = manager.getExistingModelForEdit(doc); local
214 if (model != null) {
216 perform(model);
218 model.releaseFromEdit();
227 IStructuredModel model; local
229 model = manager.getModelForEdit(file);
230 if (model != null) {
232 perform(model);
234 model.releaseFromEdit()
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_toolbar_model.h 17 // Model for the browser actions toolbar.
23 // Notifies the toolbar model that the Profile that suplied its
27 // A class which is informed of changes to the model; represents the view of
41 // Called when the model has finished loading.
90 // Save the model to prefs.
extension_context_menu_browsertest.cc 56 MenuModel* model = NULL;
58 if (!GetMenuModelAndItemIndex(command_id, &model, &index)) {
61 *result = model->GetLabelAt(index);
66 // value is true and the model and index where it appears in that model are
75 MenuModel* model = models_to_search.back(); local
77 for (int i = 0; i < model->GetItemCount(); i++) {
78 if (model->GetCommandIdAt(i) == command_id) {
79 *found_model = model;
82 } else if (model->GetTypeAt(i) == MenuModel::TYPE_SUBMENU)
339 MenuModel* model = NULL; local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
preference_model_associator.h 32 // Contains all model association related logic:
33 // * Algorithm to associate preferences model and sync model.
57 // Iterates through the sync model looking for matched pairs of items.
63 // Returns whether the sync model has nodes other than the permanent tagged
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_editor_controller.mm 119 BookmarkModel* model = [self bookmarkModel];
125 model->SetURL(node_, newURL);
126 model->SetTitle(node_, newTitle);
129 model->Move(node_, newParentNode, newParentNode->child_count());
132 model->AddURL(newParentNode, newParentNode->child_count(), newTitle,
  /external/oprofile/libop/
op_hw_specific.h 66 unsigned model = (eax & 0xf0) >> 4; local
68 return ext_model + model;
141 /* Already know is Intel family 6, so just check the model. */
142 int model = cpu_model(cpuid_signature()); local
143 switch(model) {
  /external/srec/srec/crec/
c47mulsp.c 30 int add_acoustic_model_for_recognition(multi_srec* recm, const SWIModel* model)
43 if (recm->rec[0].num_model_slots_allocated < model->num_hmmstates)
45 PLogError("recognizer max_model_states %d, acoustic model num states %d, set CREC.Recognizer.max_model_states higher\n",
47 model->num_hmmstates);
51 recm->swimodel[ recm->num_swimodels] = model;
  /external/webkit/Tools/android/flex-2.5.4a/MISC/Borland/
Makefile 13 # This will build flex with the large model. Don't use huge, but if you
47 MODEL = l
59 LOADER = c0$(MODEL).obj
60 LIBS = c$(MODEL).lib
67 COMMON = -A -c -m$(MODEL) $(SizeOPT) $(DATASEG) $(Defines) $(debugCompile)
  /packages/apps/Contacts/src/com/android/contacts/editor/
BaseRawContactEditorView.java 20 import com.android.contacts.model.AccountType;
21 import com.android.contacts.model.AccountType.EditType;
22 import com.android.contacts.model.EntityDelta;
23 import com.android.contacts.model.EntityDelta.ValuesDelta;
24 import com.android.contacts.model.EntityModifier;
  /external/chromium/chrome/browser/ui/views/
wrench_menu.cc 247 MenuModel* model, int item_index, int accessible_string_id) {
252 if (model->GetAcceleratorAt(item_index, &menu_accelerator)) {
308 // The menu model containing the increment/decrement/reset items.
540 // Index of the fullscreen menu item in the model.
570 void WrenchMenu::Init(ui::MenuModel* model) {
576 PopulateMenu(root_.get(), model, &next_id);
649 MenuModel* model,
651 int index_offset = model->GetFirstItemIndex(NULL);
652 for (int i = 0, max = model->GetItemCount(); i < max; ++i) {
656 AppendMenuItem(parent, model, index, model->GetTypeAt(index), next_id)
    [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...]
  /external/oprofile/module/x86/
op_nmi.c 19 static struct op_x86_model_spec const * model = NULL; variable
23 if (!model) {
24 /* pick out our per-model function table */
28 model = &op_athlon_spec;
31 model = &op_p4_spec;
35 model = &op_p4_ht2_spec;
39 model = &op_ppro_spec;
43 return model;
51 model->check_ctrs(cpu, msrs, regs);
219 model->fill_in_addresses(&cpu_msrs[cpu])
    [all...]
  /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...]
  /frameworks/base/opengl/java/android/opengl/
GLU.java 122 * specified object coordinates into window coordinates using model, proj,
131 * @param model the current modelview matrix
132 * @param modelOffset the offset into the model array where the modelview
148 float[] model, int modelOffset, float[] project, int projectOffset,
156 model, modelOffset);
188 * specified window coordinates into object coordinates using model, proj,
197 * @param model the current modelview matrix
198 * @param modelOffset the offset into the model array where the modelview
214 float[] model, int modelOffset, float[] project, int projectOffset,
222 model, modelOffset)
    [all...]
  /cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java 57 import signature.model.IAnnotation;
58 import signature.model.IAnnotationElement;
59 import signature.model.IAnnotationField;
60 import signature.model.IClassDefinition;
61 import signature.model.IClassReference;
62 import signature.model.IConstructor;
63 import signature.model.IEnumConstant;
64 import signature.model.IField;
65 import signature.model.IMethod;
66 import signature.model.IPackage
    [all...]
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFactory.java 41 * <p>Default Object Model URI.</p>
54 * <p>Get a new <code>XPathFactory</code> instance using the default object model,
73 "XPathFactory#newInstance() failed to create an XPathFactory for the default object model: "
82 * <p>Get a new <code>XPathFactory</code> instance using the specified object model.</p>
105 * The first service provider found in class loader order that supports the specified object model is returned.
122 * @param uri Identifies the underlying object model.
129 * @throws XPathFactoryConfigurationException If the specified object model is unavailable.
153 "No XPathFactory implementation found for the object model: "
163 * @throws XPathFactoryConfigurationException If the specified object model is unavailable.
188 "No XPathFactory implementation found for the object model:
    [all...]
  /cts/tools/signature-tools/src/signature/io/html/
ClassOverviewPage.java 25 import signature.compare.model.IAnnotationFieldDelta;
26 import signature.compare.model.IClassDefinitionDelta;
27 import signature.compare.model.IConstructorDelta;
28 import signature.compare.model.IEnumConstantDelta;
29 import signature.compare.model.IFieldDelta;
30 import signature.compare.model.IMethodDelta;
31 import signature.compare.model.impl.SigDelta;

Completed in 3011 milliseconds

<<11121314151617181920>>