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

1 2 3 4 56 7 8 91011>>

  /cts/tools/signature-tools/src/signature/compare/model/
IExecutableMemberDelta.java 17 package signature.compare.model;
21 import signature.model.IExecutableMember;
IMemberDelta.java 17 package signature.compare.model;
21 import signature.model.IField;
IPackageDelta.java 17 package signature.compare.model;
21 import signature.model.IPackage;
IParameterizedTypeDelta.java 17 package signature.compare.model;
21 import signature.model.IParameterizedType;
ITypeVariableDefinitionDelta.java 17 package signature.compare.model;
19 import signature.model.ITypeVariableDefinition;
IUpperBoundsDelta.java 17 package signature.compare.model;
22 import signature.model.ITypeReference;
IWildcardTypeDelta.java 17 package signature.compare.model;
19 import signature.model.IWildcardType;
  /cts/tools/signature-tools/src/signature/io/html/
FieldByNameComparator.java 21 import signature.compare.model.IMemberDelta;
22 import signature.model.IField;
PackageByNameComparator.java 19 import signature.compare.model.IPackageDelta;
20 import signature.model.IPackage;
TemplateStore.java 33 .getResourceAsStream("model/model.stg");
  /cts/tools/signature-tools/src/signature/model/
IApi.java 17 package signature.model;
52 * this visibility are contained in this api model.
  /cts/tools/signature-tools/src/signature/model/impl/
SigPrimitiveType.java 17 package signature.model.impl;
19 import signature.model.IPrimitiveType;
  /external/kernel-headers/original/linux/
platform_device.h 2 * platform_device.h - generic, centralized driver model
8 * See Documentation/driver-model/ for more information.
  /external/zlib/msdos/
Makefile.bor 6 # To compile in small model, set below: MODEL=s
8 # WARNING: the small model is supported but only for small values of
26 # memory model: one of s, m, c, l (small, medium, compact, large)
27 MODEL=l
36 CFLAGS=-O2 -Z -m$(MODEL) $(LOC)
38 LDFLAGS=-m$(MODEL) -f-
42 ZLIB_LIB = zlib_$(MODEL).lib
Makefile.tc 6 # To compile in small model, set below: MODEL=s
8 # WARNING: the small model is supported but only for small values of
17 MODEL=l
21 # CFLAGS=-O2 -G -Z -m$(MODEL) -DMAX_WBITS=11 -DMAX_MEM_LEVEL=3
22 CFLAGS=-O2 -G -Z -m$(MODEL)
23 LDFLAGS=-m$(MODEL) -f-
27 ZLIB_LIB = zlib_$(MODEL).lib
  /frameworks/base/awt/java/awt/
GraphicsConfiguration.java 49 * Creates BufferedImage image object with a data layout and color model
64 * transparency and has a data layout and color model compatible with this
79 * data layout and color model compatible with this GraphicsConfiguration.
91 * transparency and has a data layout and color model compatible with this
155 * data layout and color model compatible with this GraphicsConfiguration.
163 * @return the VolatileImage which data layout and color model compatible
181 * ImageCapabilities; a data layout and color model compatible with this
192 * @return the VolatileImage which data layout and color model compatible
  /packages/apps/Mms/src/com/android/mms/model/
Model.java 18 package com.android.mms.model;
22 public class Model {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/
UiDocumentTreeEditPart.java 30 public UiDocumentTreeEditPart(UiDocumentNode model) {
31 super(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/WebKit/qt/WebCoreSupport/
QtFallbackWebPopup.cpp 138 QStandardItemModel* model = qobject_cast<QStandardItemModel*>(m_combo->model()); local
139 Q_ASSERT(model);
151 model->item(i)->setEnabled(false);
155 model->item(i)->setEnabled(itemIsEnabled(i));
  /external/webkit/WebKitTools/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)
  /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/awt/java/awt/image/
AreaAveragingScaleFilter.java 113 public void setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int off,
116 super.setPixels(x, y, w, h, model, pixels, off, scansize);
118 setFilteredPixels(x, y, w, h, model, pixels, off, scansize);
123 public void setPixels(int x, int y, int w, int h, ColorModel model, byte[] pixels, int off,
126 super.setPixels(x, y, w, h, model, pixels, off, scansize);
128 setFilteredPixels(x, y, w, h, model, pixels, off, scansize);
155 * @param model
156 * the color model of the source pixels.
164 private void setFilteredPixels(int x, int y, int w, int h, ColorModel model, Object pixels,
211 rgb = model.getRGB(pix)
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/
Surface.java 56 // Color Model Types
57 public static final int DCM = 1; // Direct Color Model
58 public static final int ICM = 2; // Index Color Model
59 public static final int CCM = 3; // Component Color Model
61 // Sample Model Types
62 public static final int SPPSM = 1; // Single Pixel Packed Sample Model
63 public static final int MPPSM = 2; // Multi Pixel Packed Sample Model
64 public static final int CSM = 3; // Component Sample Model
65 public static final int PISM = 4; // Pixel Interleaved Sample Model
66 public static final int BSM = 5; // Banded Sample 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...]

Completed in 170 milliseconds

1 2 3 4 56 7 8 91011>>