HomeSort by relevance Sort by last modified time
    Searched refs:primitiveType (Results 1 - 25 of 44) sorted by null

1 2

  /external/skia/gpu/include/
GrContext_impl.h 37 GrPrimitiveType primitiveType,
94 this->doOffscreenAA(target, paint, GrIsPrimTypeLines(primitiveType))) {
105 target->drawNonIndexed(primitiveType, 0, vertexCount);
107 target->drawIndexed(primitiveType, 0, 0, vertexCount, indexCount);
134 GrPrimitiveType primitiveType,
139 GrNullIndexSource>(paint, primitiveType, posSrc,
145 GrPrimitiveType primitiveType,
150 GrNullIndexSource>(paint, primitiveType, posSrc,
156 GrPrimitiveType primitiveType,
161 GrNullIndexSource>(paint, primitiveType, posSrc,
    [all...]
GrInOrderDrawBuffer.h 84 virtual void drawIndexed(GrPrimitiveType primitiveType,
89 virtual void drawNonIndexed(GrPrimitiveType primitiveType,
GrContext.h 325 * @param primitiveType primitives type to draw.
338 GrPrimitiveType primitiveType,
351 * @param primitiveType primitives type to draw.
377 GrPrimitiveType primitiveType,
388 GrPrimitiveType primitiveType,
392 GrPrimitiveType primitiveType,
397 GrPrimitiveType primitiveType,
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstFieldRef.java 32 * @param primitiveType {@code non-null;} the primitive type
35 public static CstFieldRef forPrimitiveType(Type primitiveType) {
36 return new CstFieldRef(CstType.forBoxedPrimitiveType(primitiveType),
CstType.java 100 * @param primitiveType {@code non-null;} the primitive type
103 public static CstType forBoxedPrimitiveType(Type primitiveType) {
104 switch (primitiveType.getBasicType()) {
116 throw new IllegalArgumentException("not primitive: " + primitiveType);
  /dalvik/dx/src/com/android/dx/rop/cst/
CstFieldRef.java 32 * @param primitiveType {@code non-null;} the primitive type
35 public static CstFieldRef forPrimitiveType(Type primitiveType) {
36 return new CstFieldRef(CstType.forBoxedPrimitiveType(primitiveType),
CstType.java 100 * @param primitiveType {@code non-null;} the primitive type
103 public static CstType forBoxedPrimitiveType(Type primitiveType) {
104 switch (primitiveType.getBasicType()) {
116 throw new IllegalArgumentException("not primitive: " + primitiveType);
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 68 Class<?> primitiveType = primitiveTypes.get(parameterTypeNames[i]);
69 if (primitiveType != null) {
70 parameterTypes[i] = primitiveType;
  /external/webkit/Source/WebCore/css/
SVGCSSStyleSelector.cpp 290 int type = primitiveValue->primitiveType();
308 int type = primitiveValue->primitiveType();
326 int type = primitiveValue->primitiveType();
344 int type = primitiveValue->primitiveType();
360 int type = primitiveValue->primitiveType();
376 int type = primitiveValue->primitiveType();
399 int type = primitiveValue->primitiveType();
415 int type = primitiveValue->primitiveType();
431 int type = primitiveValue->primitiveType();
447 int type = primitiveValue->primitiveType();
    [all...]
CSSPrimitiveValue.idl 52 readonly attribute unsigned short primitiveType;
CSSStyleSelector.cpp     [all...]
CSSGradientValue.cpp 125 if (stop.m_position->primitiveType() == CSSPrimitiveValue::CSS_PERCENTAGE)
158 int type = stop.m_position->primitiveType();
369 switch (value->primitiveType()) {
417 unsigned short unitType = stop.m_position->primitiveType();
635 if (radius->primitiveType() == CSSPrimitiveValue::CSS_NUMBER) // Can the radius be a percentage?
637 else if (widthOrHeight && radius->primitiveType() == CSSPrimitiveValue::CSS_PERCENTAGE)
756 if (m_shape && m_shape->primitiveType() == CSSPrimitiveValue::CSS_IDENT && m_shape->getIdent() == CSSValueCircle)
762 if (m_sizingBehavior && m_sizingBehavior->primitiveType() == CSSPrimitiveValue::CSS_IDENT) {
    [all...]
MediaQueryEvaluator.cpp 181 if (i0->isPrimitiveValue() && static_cast<CSSPrimitiveValue*>(i0)->primitiveType() == CSSPrimitiveValue::CSS_NUMBER
182 && i1->isPrimitiveValue() && static_cast<CSSPrimitiveValue*>(i1)->primitiveType() == CSSPrimitiveValue::CSS_STRING
183 && i2->isPrimitiveValue() && static_cast<CSSPrimitiveValue*>(i2)->primitiveType() == CSSPrimitiveValue::CSS_NUMBER) {
213 && static_cast<CSSPrimitiveValue*>(value)->primitiveType() == CSSPrimitiveValue::CSS_NUMBER) {
CSSPrimitiveValue.h 127 unsigned short primitiveType() const { return m_type; }
  /dalvik/vm/native/
java_lang_reflect_Array.cpp 110 assert(elementClass->primitiveType != PRIM_NOT);
111 acDescriptor[numDim] = dexGetPrimitiveTypeDescriptorChar(elementClass->primitiveType);
java_lang_reflect_Field.cpp 532 PrimitiveType targetType = dexGetPrimitiveTypeFromDescriptorChar(descriptor);
549 if (dvmConvertPrimitiveValue(fieldType->primitiveType, targetType,
573 PrimitiveType srcType = dexGetPrimitiveTypeFromDescriptorChar(descriptor);
583 if (dvmConvertPrimitiveValue(srcType, fieldType->primitiveType,
  /external/skia/gpu/src/
GrInOrderDrawBuffer.cpp 182 void GrInOrderDrawBuffer::drawIndexed(GrPrimitiveType primitiveType,
195 draw.fPrimitiveType = primitiveType;
248 void GrInOrderDrawBuffer::drawNonIndexed(GrPrimitiveType primitiveType,
258 draw.fPrimitiveType = primitiveType;
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
utilities.h 64 bool ConvertPrimitiveType(GLenum primitiveType, GLsizei elementCount,
utilities.cpp 718 bool ConvertPrimitiveType(GLenum primitiveType, GLsizei elementCount,
721 switch (primitiveType)
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
FieldTest.java 145 Object getField(char primitiveType, Object o, Field f,
149 primitiveType = Character.toUpperCase(primitiveType);
150 switch (primitiveType) {
193 void setField(char primitiveType, Object o, Field f,
196 primitiveType = Character.toUpperCase(primitiveType);
197 switch (primitiveType) {
    [all...]
  /dalvik/vm/oo/
Array.cpp 190 dexGetPrimitiveTypeDescriptorChar(arrayClass->elementClass->primitiveType),
377 newClass->primitiveType = PRIM_NOT;
527 PrimitiveType typeIndex = dstElemClass->primitiveType;
Object.h 393 PrimitiveType primitiveType;
747 return clazz->primitiveType != PRIM_NOT;
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
FieldTest.java 254 Object getField(char primitiveType, Object o, Field f,
258 primitiveType = Character.toUpperCase(primitiveType);
259 switch (primitiveType) {
302 void setField(char primitiveType, Object o, Field f,
305 primitiveType = Character.toUpperCase(primitiveType);
306 switch (primitiveType) {
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
HTMLConverter.mm 220 unsigned short primitiveType = [computedValue primitiveType];
221 if (primitiveType == DOM_CSS_STRING || primitiveType == DOM_CSS_URI || primitiveType == DOM_CSS_IDENT || primitiveType == DOM_CSS_ATTR) {
235 unsigned short primitiveType = [specifiedValue primitiveType];
236 if (primitiveType == DOM_CSS_STRING || primitiveType == DOM_CSS_URI || primitiveType == DOM_CSS_IDENT || primitiveType == DOM_CSS_ATTR)
    [all...]
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 371 if (primitiveValue->primitiveType() != CSSPrimitiveValue::CSS_PX)
    [all...]

Completed in 515 milliseconds

1 2