HomeSort by relevance Sort by last modified time
    Searched full:model (Results 201 - 225 of 1417) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/awt/java/awt/image/
DirectColorModel.java 32 * The Class DirectColorModel represents a standard (packed) RGB color model
81 private boolean is_LINEAR_RGB; // Color Model has Linear RGB Color
96 * Instantiates a new direct color model.
111 * whether the alpha is pre-multiplied in this color model.
129 * Instantiates a new direct color model, determining the transfer type from
154 * Instantiates a new direct color model with no alpha channel, determining
214 // awt.214=This Color Model doesn't support this transferType
340 // awt.214=This Color Model doesn't support this transferType
385 // awt.214=This Color Model doesn't support this
410 // awt.214=This Color Model doesn't support thi
    [all...]
  /cts/tools/signature-tools/src/signature/compare/model/impl/
SigDelta.java 17 package signature.compare.model.impl;
26 import signature.compare.model.IDelta;
27 import signature.compare.model.DeltaType;
  /external/junit/src/junit/swingui/
TestSuitePanel.java 59 TreeModel model= tree.getModel(); local
60 if (model instanceof TestTreeModel) {
61 TestTreeModel testModel= (TestTreeModel)model;
FailureRunView.java 94 ListModel model= fFailureList.getModel();
95 TestFailure failure= (TestFailure)model.getElementAt(index);
  /external/qemu/hw/
android_arm.c 102 if (nd_table[i].model == NULL
103 || strcmp(nd_table[i].model, "smc91c111") == 0) {
113 fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd_table[0].model);
  /external/quake/quake/src/QW/client/
asm_draw.h 107 // !!! if this is changed, it must be changed in model.h too !!!
113 // !!! if this is changed, it must be changed in model.h too !!!
145 // !!! if this is changed, it must be changed in model.h too !!!
asm_i386.h 36 // !!! if this is changed, it must be changed in model.h too !!!
47 // !!! if this is changed, it must be changed in model.h too !!!
model.h 123 int firstedge; // look up in model->surfedges[], negative numbers
287 int model; member in struct:__anon5029
297 // Whole model
323 // volume occupied by the model graphics
335 // brush model
385 // additional model data
399 mleaf_t *Mod_PointInLeaf (float *p, model_t *model);
400 byte *Mod_LeafPVS (mleaf_t *leaf, model_t *model);
modelgen.h 21 // modelgen.h: header file for model generation program
27 // * pass data from one to the other via model files. *
  /external/quake/quake/src/WinQuake/
asm_draw.h 107 // !!! if this is changed, it must be changed in model.h too !!!
113 // !!! if this is changed, it must be changed in model.h too !!!
145 // !!! if this is changed, it must be changed in model.h too !!!
asm_i386.h 36 // !!! if this is changed, it must be changed in model.h too !!!
47 // !!! if this is changed, it must be changed in model.h too !!!
model.h 112 int firstedge; // look up in model->surfedges[], negative numbers
276 int model; member in struct:__anon5389
286 // Whole model
312 // volume occupied by the model
318 // brush model
365 // additional model data
379 mleaf_t *Mod_PointInLeaf (float *p, model_t *model);
380 byte *Mod_LeafPVS (mleaf_t *leaf, model_t *model);
modelgen.h 21 // modelgen.h: header file for model generation program
27 // * pass data from one to the other via model files. *
  /external/srec/srec/include/
hmm_desc.h 39 #define DIAG (1<<4) /* Diagonal covariance model */
40 #define FULL (2<<4) /* Full covariance model */
43 #define EXPDUR (1<<6) /* Exponential duration model */
  /packages/apps/Contacts/src/com/android/contacts/ui/
ViewIdGenerator.java 19 import com.android.contacts.model.EntityDelta;
20 import com.android.contacts.model.ContactsSource.DataKind;
21 import com.android.contacts.model.EntityDelta.ValuesDelta;
  /development/pdk/docs/source/
report-bugs.jd 118 org.eclipse.jdt.internal.debug.core.model.JDILocalVariable.retrieveValue(JDILocalVariable.java:57)
120 org.eclipse.jdt.internal.debug.core.model.JDIVariable.getCurrentValue(JDIVariable.java:66)
122 org.eclipse.jdt.internal.debug.core.model.JDIVariable.getValue(JDIVariable.java:88)
124 org.eclipse.debug.internal.ui.model.elements.VariableContentProvider.hasChildren(VariableContentProvider.java:62)
128 org.eclipse.debug.internal.ui.model.elements.ElementContentProvider.updateHasChildren(ElementContentProvider.java:223)
130 org.eclipse.debug.internal.ui.model.elements.ElementContentProvider$3.run(ElementContentProvider.java:200)
  /development/samples/BrowserPlugin/
README 113 notify the plugin which sub-plugin to execute and which drawing model to use.
132 DRAWING MODEL: Bitmap
141 DRAWING MODEL: Bitmap
150 DRAWING MODEL: Surface
162 DRAWING MODEL: Bitmap
173 DRAWING MODEL: Surface
  /frameworks/base/awt/org/apache/harmony/x/imageio/plugins/png/
PNGImageWriter.java 145 SampleModel model = sourceRaster.getSampleModel(); local
148 int numBands = model.getNumBands();
223 System.out.println("**** model:" + model);
227 if (model instanceof SinglePixelPackedSampleModel) {
240 throw new RuntimeException("Color model not supported yet");
  /frameworks/base/tests/BrowserTestPlugin/jni/
main.cpp 150 // 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);
  /cts/tools/signature-tools/src/signature/compare/model/
IClassDefinitionDelta.java 17 package signature.compare.model;
21 import signature.model.IClassDefinition;
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 34 import signature.model.IAnnotation;
35 import signature.model.IApi;
36 import signature.model.IArrayType;
37 import signature.model.IClassDefinition;
38 import signature.model.IClassReference;
39 import signature.model.IConstructor;
40 import signature.model.IField;
41 import signature.model.IMethod;
42 import signature.model.IPackage;
43 import signature.model.IParameter
    [all...]
  /cts/tools/signature-tools/test/signature/converter/dex/
GenericSignatureParserTest.java 33 import signature.model.impl.SigClassDefinition;
34 import signature.model.util.TypePool;
  /dalvik/libcore/xml/src/main/java/javax/xml/transform/
overview.html 35 allow them to understand and apply a single model, write to consistent
37 define a model that is clean and generic, yet fills general application
44 document. Technical terminology will be explained in the Model section. In many
132 <br>Document Object Model, specifically referring to the
133 <A href="#http://www.w3.org/TR/DOM-Level-2%20">Document Object Model
146 <h3>Model</h3>
148 <p>The section defines the abstract model for TrAX, apart from the details
173 object model, or in the form of parse events, into a stream, is known as
  /external/quake/quake/src/QW/server/
asm_i386.h 36 // !!! if this is changed, it must be changed in model.h too !!!
47 // !!! if this is changed, it must be changed in model.h too !!!
profile.txt 19 427.858 0.7 427.858 0.7 15333 _Mod_DecompressVis (model.obj)
38 164.941 0.3 164.941 0.3 17116 _CalcSurfaceExtents (model.obj)

Completed in 136 milliseconds

1 2 3 4 5 6 7 891011>>