Searched defs:model (Results 1 - 20 of 20) sorted by relevance

/frameworks/av/libvideoeditor/vss/inc/
H A DM4EXIFC_CommonAPI.h85 M4OSA_Char *model; /**< model of image input equipment */ member in struct:__anon217
/frameworks/native/services/sensorservice/
H A DSensorDevice.cpp59 Info model; local
61 mActivationCount.add(list[i].handle, model);
/frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
H A DFBOTestRS.java129 private void initMeshes(FileA3D model) { argument
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);
161 initMeshes(model);
192 FileA3D model = FileA3D.createFromResource(mRS, mRes, R.raw.robot);
193 initMeshes(model);
H A DFBOSyncRS.java130 private void initMeshes(FileA3D model) { argument
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);
162 initMeshes(model);
200 FileA3D model = FileA3D.createFromResource(mRS, mRes, R.raw.robot);
201 initMeshes(model);
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DSimpleModelRS.java128 private void initMeshes(FileA3D model) { argument
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);
160 initMeshes(model);
174 FileA3D model = FileA3D.createFromResource(mRS, mRes, R.raw.robot);
175 initMeshes(model);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DShaderParam.java49 static final String model = "model"; field in class:ShaderParam
/frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
H A DShadersTestRS.java141 private void initMeshes(FileA3D model) { argument
142 int numEntries = model.getIndexEntryCount();
145 FileA3D.IndexEntry entry = model.getIndexEntry(i);
155 FileA3D.IndexEntry entry = model.getIndexEntry(i);
182 FileA3D model = FileA3D.createFromResource(mRS, mRes, R.raw.robot);
183 initMeshes(model);
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/java/android/bordeaux/learning/
H A DStochasticLinearRanker.java84 * Get the current model and parameters of ranker
106 * load the given model and parameters to the ranker
108 public boolean loadModel(Model model) { argument
109 String[] wKeys = new String[model.weights.size()];
110 float[] wValues = new float[model.weights.size()];
112 for (Map.Entry<String, Float> e : model.weights.entrySet()){
117 boolean res = setModelWeights(wKeys, wValues, model.weightNormalizer);
121 for (Map.Entry<String, String> e : model.parameters.entrySet()){
139 * Print a model for debugging
141 public void print(Model model){ argument
[all...]
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxSessionStorage.java39 // data of the learning model
40 public static final String COLUMN_MODEL = "model";
84 private ContentValues createSessionEntry(String key, Class learner, byte[] model) { argument
88 entry.put(COLUMN_MODEL, model);
93 boolean saveSession(String key, Class learner, byte[] model) { argument
94 ContentValues content = createSessionEntry(key, learner, model);
110 byte[] model = cursor.getBlob(cursor.getColumnIndex(COLUMN_MODEL));
111 session.learner.setModel(model);
/frameworks/wilhelm/src/itf/
H A DI3DSource.c196 static SLresult I3DSource_SetRolloffModel(SL3DSourceItf self, SLuint8 model) argument
200 switch (model) {
206 thiz->mDistanceModel = model;
226 SLuint8 model = thiz->mDistanceModel; local
228 *pModel = model;
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.java29 * <p>When the accessory connects, it reports its manufacturer and model names,
31 * The manufacturer, model and version strings are used by the USB Manager to choose
75 public UsbAccessory(String manufacturer, String model, String description, argument
78 mModel = model;
108 * Returns the model name of the accessory.
110 * @return the accessory model
148 * between individual accessories of the same model and manufacturer
199 String model = in.readString();
204 return new UsbAccessory(manufacturer, model, description, version, uri, serial);
/frameworks/base/tests/BrowserTestPlugin/jni/
H A Dmain.cpp150 // select the drawing model
151 ANPDrawingModel model = kBitmap_ANPDrawingModel; local
153 // notify the plugin API of the drawing model we wish to use. This must be
156 reinterpret_cast<void*>(model));
158 gLogI.log(kError_ANPLogType, "request model %d err %d", model, err);
/frameworks/base/opengl/java/android/opengl/
H A DGLU.java122 * 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, modelOffse
147 gluProject(float objX, float objY, float objZ, float[] model, int modelOffset, float[] project, int projectOffset, int[] view, int viewOffset, float[] win, int winOffset) argument
213 gluUnProject(float winX, float winY, float winZ, float[] model, int modelOffset, float[] project, int projectOffset, int[] view, int viewOffset, float[] obj, int objOffset) argument
[all...]
H A DGLLogWrapper.java333 private String getShadeModel(int model) { argument
334 switch(model) {
340 return getHex(model);
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/jni/
H A Djni_stochastic_linear_ranker.cpp84 SparseWeightVector<string> model; local
85 CreateSparseWeightVector(env, key_array_model, values_m, values_m_len, &model);
86 model.SetNormalizer(normalizer_model);
87 classifier->LoadWeights(model);
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
H A Dstochastic_linear_ranker.h167 // Load an existing model
168 void LoadWeights(const SparseWeightVector<Key, Hash> &model) { argument
169 weight_.LoadWeightVector(model);
171 // Save current model
172 void SaveWeights(SparseWeightVector<Key, Hash> *model) { argument
173 model->LoadWeightVector(weight_);
/frameworks/base/services/java/com/android/server/usb/
H A DUsbSettingsManager.java257 // USB accessory model (or null for unspecified)
262 public AccessoryFilter(String manufacturer, String model, String version) { argument
264 mModel = model;
277 String model = null;
287 } else if ("model".equals(name)) {
288 model = value;
293 return new AccessoryFilter(manufacturer, model, version);
302 serializer.attribute(null, "model", mModel);
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselController.java653 * Sets the current model for dragging. There are currently four drag models:
659 * @param model
661 public void setDragModel(int model) { argument
662 mDragModel = model;
664 mRenderScript.setDragModel(model);
H A DCarouselView.java522 public void setDragModel(int model) { argument
523 mController.setDragModel(model);
H A DCarouselRS.java319 public void setDragModel(int model) { argument
320 mScript.set_dragModel(model);
939 FileA3D model = FileA3D.createFromResource(mRS, mRes, resId);
940 if (model == null) {
943 FileA3D.IndexEntry entry = model.getIndexEntry(0);

Completed in 450 milliseconds