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

/frameworks/media/libvideoeditor/vss/inc/
H A DM4EXIFC_CommonAPI.h85 M4OSA_Char *model; /**< model of image input equipment */ member in struct:__anon1501
/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
56 public UsbAccessory(String manufacturer, String model, String description, argument
59 mModel = model;
89 * Returns the model name of the accessory.
91 * @return the accessory model
129 * between individual accessories of the same model and manufacturer
180 String model = in.readString();
185 return new UsbAccessory(manufacturer, model, description, version, uri, serial);
/frameworks/base/services/sensorservice/
H A DSensorDevice.cpp121 Info model; local
123 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/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/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/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/services/java/com/android/server/usb/
H A DUsbSettingsManager.java248 // USB accessory model (or null for unspecified)
253 public AccessoryFilter(String manufacturer, String model, String version) { argument
255 mModel = model;
268 String model = null;
278 } else if ("model".equals(name)) {
279 model = value;
284 return new AccessoryFilter(manufacturer, model, version);
293 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 384 milliseconds