Searched defs:model (Results 176 - 200 of 359) sorted by relevance

1234567891011>>

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTableTooltipHelper.java11 package org.eclipse.wb.internal.core.model.property.table;
21 import org.eclipse.wb.internal.core.model.property.Property;
28 * @coverage core.model.property.table
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/
H A DRagdollUtils.java39 public static Map<Integer, List<Float>> buildPointMap(Spatial model) { argument
43 if (model instanceof Geometry) {
44 Geometry g = (Geometry) model;
46 } else if (model instanceof Node) {
47 Node node = (Node) model;
101 * @param model
153 * @param model
156 public static HullCollisionShape makeShapeFromVerticeWeights(Spatial model, List<Integer> boneIndices, Vector3f initialScale, Vector3f initialPosition, float weightThreshold) { argument
159 if (model instanceof Geometry) {
160 Geometry g = (Geometry) model;
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestBoneRagdoll.java72 Node model; field in class:TestBoneRagdoll
104 model = (Node) assetManager.loadModel("Models/Sinbad/Sinbad.mesh.xml");
106 // model.setLocalRotation(new Quaternion().fromAngleAxis(FastMath.HALF_PI, Vector3f.UNIT_X));
109 AnimControl control = model.getControl(AnimControl.class);
116 skeletonDebug.setLocalTranslation(model.getLocalTranslation());
122 model.addControl(ragdoll);
135 rootNode.attachChild(model);
150 v.set(model.getLocalTranslation());
152 model.setLocalTranslation(v);
155 model
[all...]
H A DTestRagdollCharacter.java64 Node model; field in class:TestRagdollCharacter
92 model = (Node) assetManager.loadModel("Models/Sinbad/Sinbad.mesh.xml");
93 model.lookAt(new Vector3f(0,0,-1), Vector3f.UNIT_Y);
94 model.setLocalTranslation(4, 0, -7f);
97 model.addControl(ragdoll);
102 rootNode.attachChild(model);
105 AnimControl control = model.getControl(AnimControl.class);
219 model.move(model.getLocalRotation().multLocal(new Vector3f(0,0,1)).multLocal(tpf));
221 model
[all...]
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DStripInfo.java33 package jme3tools.converters.model.strip;
/external/junit/src/org/junit/runners/model/
H A DTestClass.java1 package org.junit.runners.model;
/external/quake/quake/src/WinQuake/
H A Dgl_rmisc.cpp246 model_t *model; local
282 model = currententity->model;
283 if (!model)
284 return; // player doesn't have a model yet
285 if (model->type != mod_alias)
288 paliashdr = (aliashdr_t *)Mod_Extradata (model);
409 r_worldentity.model = cl.worldmodel;
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DElement.java99 Return the content model vector of the element's type.
101 @return The content model vector
104 public int model() { return theType.model(); } method in class:Element
H A DElementType.java18 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) { argument
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; } argument
[all...]
H A DSchema.java49 @param model Models of the element's content as a vector of bits
54 public void elementType(String name, int model, int memberOf, int flags) { argument
55 ElementType e = new ElementType(name, model, memberOf, flags, this);
/external/valgrind/main/cachegrind/
H A Dcg-x86-amd64.c67 Int model; local
85 /* family/model needed to distinguish code reuse (currently 0x49) */
89 model = (((cpuid1_eax >> 16) & 0xf) << 4) + ((cpuid1_eax >> 4) & 0xf);
187 if (family == 15 && model == 6) {
188 /* On Xeon MP (family F, model 6), this is for L3 */
336 * Also, according to Cyrille Chepelov, Duron stepping A0 processors (model
369 UInt dummy, model; local
383 VG_(cpuid)(0x1, 0, &model, &dummy, &dummy, &dummy);
386 if (model == 0x630) {
/external/valgrind/main/tests/
H A Ds390x_features.c17 // model, if specified, matches the machine
19 // cpu model, if specified, does not match the machine
22 // - 2 for an unknown cpu model in /proc/cpu_info
27 // s390x_features <feature> [<machine-model>]
32 // z9: -- Host needs to be a z9 or any later model
33 // :z9 -- Host needs to be a model up to and including z9
35 // Any model in between is OK, too.
68 and return the machine model or NULL on error.
90 /* Locate a machine model by name. Name can be either the cpuinfo
115 model_info *model; local
[all...]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DQtFallbackWebPopup.cpp226 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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime.compatibility_3.2.100.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit_view_win.h87 virtual AutocompleteEditModel* model() { return model_.get(); } function in class:AutocompleteEditViewWin
88 virtual const AutocompleteEditModel* model() const { return model_.get(); } function in class:AutocompleteEditViewWin
489 // Set at the same time the model's original_* members are set, and valid in
H A Dkeyword_provider.cc75 TemplateURLModel* model)
77 model_(model),
118 // Make sure the model is loaded. This is cheap and quickly bails out if
119 // the model is already loaded.
120 TemplateURLModel* model = profile->GetTemplateURLModel();
121 DCHECK(model);
122 model->Load();
124 const TemplateURL* template_url = model->GetTemplateURLForKeyword(keyword);
161 // Make sure the model is loaded. This is cheap and quickly bails out if
162 // the model i
74 KeywordProvider(ACProviderListener* listener, TemplateURLModel* model) argument
382 CreateAutocompleteMatch( TemplateURLModel* model, const string16& keyword, const AutocompleteInput& input, size_t prefix_length, const string16& remaining_input, int relevance) argument
451 TemplateURLModel* model = profile_ ? profile_->GetTemplateURLModel() : model_; local
[all...]
/external/chromium/chrome/browser/
H A Dbackground_application_list_model.cc50 Application(BackgroundApplicationListModel* model,
113 BackgroundApplicationListModel* model,
117 model_(model),
291 // Update queries the extensions service of the profile with which the model was
112 Application( BackgroundApplicationListModel* model, const Extension* extension) argument
H A Dbrowsing_data_remover.cc316 TemplateURLModel* model = Source<TemplateURLModel>(source).ptr(); local
317 if (model->profile() == profile_->GetOriginalProfile()) {
319 model->RemoveAutoGeneratedBetween(delete_begin_, delete_end_);
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_codec.cc45 Value* BookmarkCodec::Encode(BookmarkModel* model) { argument
46 return Encode(model->GetBookmarkBarNode(), model->other_node());
H A Dbookmark_codec_unittest.cc39 scoped_ptr<BookmarkModel> model(new BookmarkModel(NULL));
40 const BookmarkNode* bookmark_bar = model->GetBookmarkBarNode();
41 model->AddURL(bookmark_bar, 0, ASCIIToUTF16(kUrl1Title), GURL(kUrl1Url));
42 return model.release();
45 scoped_ptr<BookmarkModel> model(new BookmarkModel(NULL));
46 const BookmarkNode* bookmark_bar = model->GetBookmarkBarNode();
47 model->AddURL(bookmark_bar, 0, ASCIIToUTF16(kUrl1Title), GURL(kUrl1Url));
48 model->AddURL(bookmark_bar, 1, ASCIIToUTF16(kUrl2Title), GURL(kUrl2Url));
49 return model.release();
52 scoped_ptr<BookmarkModel> model(ne
91 EncodeHelper(BookmarkModel* model, std::string* checksum) argument
110 Decode(BookmarkCodec* codec, BookmarkModel* model, const Value& value) argument
160 ExpectIDsUnique(BookmarkModel* model) argument
[all...]
H A Dbookmark_html_writer_unittest.cc152 BookmarkModel* model = profile.GetBookmarkModel(); local
191 const BookmarkNode* f1 = model->AddFolder(
192 model->GetBookmarkBarNode(), 0, f1_title);
193 model->AddURLWithCreationTime(f1, 0, url1_title, url1, t1);
199 const BookmarkNode* f2 = model->AddFolder(f1, 1, f2_title);
200 model->AddURLWithCreationTime(f2, 0, url2_title, url2, t2);
201 model->AddURLWithCreationTime(model->GetBookmarkBarNode(),
204 model->AddURLWithCreationTime(model
[all...]
H A Dbookmark_storage.cc96 // Adds node to the model's index, recursing through all children as well.
132 BookmarkStorage::BookmarkStorage(Profile* profile, BookmarkModel* model) argument
134 model_(model),
196 // the model is gone.
229 // after the model is created and done loading.
257 // We should only get here if we have a valid model and it's finished
/external/chromium/chrome/browser/chromeos/frame/
H A Ddom_browser_view.cc97 void DOMBrowserView::InitTabStrip(TabStripModel* model) {} argument
/external/chromium/chrome/browser/diagnostics/
H A Ddiagnostics_main.cc260 // and the model (DiagnosticsModel) do not talk to each other directly but they
270 // Run all the diagnostics of |model| and invoke the view as the model
272 void Run(DiagnosticsModel* model) { argument
275 if (!model) {
276 writer_->WriteResult(false, L"Diagnostics start", L"model is null");
284 int count = model->GetTestAvailableCount();
286 model->RunAll(this);
290 virtual void OnProgress(int id, int percent, DiagnosticsModel* model) { argument
293 virtual void OnSkipped(int id, DiagnosticsModel* model) { argument
297 OnFinished(int id, DiagnosticsModel* model) argument
302 OnDoneAll(DiagnosticsModel* model) argument
351 DiagnosticsModel* model = MakeDiagnosticsModel(command_line); local
[all...]
H A Drecon_diagnostics.cc80 EnumerateModulesModel* model = EnumerateModulesModel::GetInstance(); local
81 model->set_limited_mode(true);
82 model->ScanNow();
83 ListValue* list = model->GetModuleList();
84 if (!model->confirmed_bad_modules_detected() &&
85 !model->suspected_bad_modules_detected()) {

Completed in 471 milliseconds

1234567891011>>