/frameworks/native/opengl/libs/tools/ |
glenumsgen | 29 my $enumValue = $2; 30 next if exists($enumHash { $enumValue }); 31 $enumHash { $enumValue } = $enumName; 32 printf("GL_ENUM(%s,%s)\n", $enumValue, $enumName);
|
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/ |
MarshalQueryableEnum.java | 60 int enumValue = getEnumValue(value); 63 buffer.putInt(enumValue); 65 if (enumValue < UINT8_MIN || enumValue > UINT8_MAX) { 67 "Enum value %x too large to fit into unsigned byte", enumValue)); 69 buffer.put((byte)enumValue); 77 int enumValue; 81 enumValue = buffer.getInt(); 85 enumValue = buffer.get() & UINT8_MASK; 92 return getEnumFromValue(mClass, enumValue); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGResourceMasker.h | 51 SVGUnitTypes::SVGUnitType maskUnits() const { return toSVGMaskElement(element())->maskUnits()->currentValue()->enumValue(); } 52 SVGUnitTypes::SVGUnitType maskContentUnits() const { return toSVGMaskElement(element())->maskContentUnits()->currentValue()->enumValue(); }
|
RenderSVGResourceFilter.h | 74 SVGUnitTypes::SVGUnitType filterUnits() const { return toSVGFilterElement(element())->filterUnits()->currentValue()->enumValue(); } 75 SVGUnitTypes::SVGUnitType primitiveUnits() const { return toSVGFilterElement(element())->primitiveUnits()->currentValue()->enumValue(); }
|
RenderSVGResourceMarker.h | 59 SVGMarkerUnitsType markerUnits() const { return toSVGMarkerElement(element())->markerUnits()->currentValue()->enumValue(); } 60 SVGMarkerOrientType orientType() const { return toSVGMarkerElement(element())->orientType()->currentValue()->enumValue(); }
|
RenderSVGResourceClipper.h | 66 SVGUnitTypes::SVGUnitType clipPathUnits() const { return toSVGClipPathElement(element())->clipPathUnits()->currentValue()->enumValue(); }
|
RenderSVGResourceMarker.cpp | 112 if (marker->orientType()->currentValue()->enumValue() == SVGMarkerOrientAngle) 124 bool useStrokeWidth = marker->markerUnits()->currentValue()->enumValue() == SVGMarkerUnitsStrokeWidth;
|
RenderSVGResourceMasker.cpp | 115 SVGUnitTypes::SVGUnitType contentUnits = toSVGMaskElement(element())->maskContentUnits()->currentValue()->enumValue(); 170 FloatRect maskBoundaries = SVGLengthContext::resolveRectangle<SVGMaskElement>(maskElement, maskElement->maskUnits()->currentValue()->enumValue(), objectBoundingBox);
|
RenderSVGResourceFilter.cpp | 96 effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement->primitiveUnits()->currentValue()->enumValue(), targetBoundingBox)); 206 filterData->boundaries = SVGLengthContext::resolveRectangle<SVGFilterElement>(filterElement, filterElement->filterUnits()->currentValue()->enumValue(), targetBoundingBox); 215 bool primitiveBoundingBoxMode = filterElement->primitiveUnits()->currentValue()->enumValue() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX; 268 return SVGLengthContext::resolveRectangle<SVGFilterElement>(element, element->filterUnits()->currentValue()->enumValue(), object->objectBoundingBox());
|
ReferenceFilterBuilder.cpp | 166 effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement.primitiveUnits()->currentValue()->enumValue(), parentFilter->sourceImageRect()));
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGAnimatedAngle.cpp | 54 if (m_orientType->currentValue()->enumValue() == SVGMarkerOrientAuto)
|
SVGFEDisplacementMapElement.cpp | 101 return displacementMap->setXChannelSelector(m_xChannelSelector->currentValue()->enumValue()); 103 return displacementMap->setYChannelSelector(m_yChannelSelector->currentValue()->enumValue()); 141 RefPtr<FilterEffect> effect = FEDisplacementMap::create(filter, m_xChannelSelector->currentValue()->enumValue(), m_yChannelSelector->currentValue()->enumValue(), m_scale->currentValue()->value());
|
SVGFETurbulenceElement.cpp | 89 return turbulence->setType(m_type->currentValue()->enumValue()); 91 return turbulence->setStitchTiles(m_stitchTiles->currentValue()->enumValue()); 131 return FETurbulence::create(filter, m_type->currentValue()->enumValue(), baseFrequencyX()->currentValue()->value(), baseFrequencyY()->currentValue()->value(), m_numOctaves->currentValue()->value(), m_seed->currentValue()->value(), m_stitchTiles->currentValue()->enumValue() == SVG_STITCHTYPE_STITCH);
|
SVGEnumeration.h | 117 return create(enumValue()); 120 Enum enumValue() const
|
SVGAngle.cpp | 107 return adoptRef(new SVGAngle(m_unitType, m_valueInSpecifiedUnits, m_orientType->enumValue())); 368 if (orientType()->enumValue() != SVGMarkerOrientAngle || otherAngle->orientType()->enumValue() != SVGMarkerOrientAngle) 383 SVGMarkerOrientType fromOrientType = fromAngle->orientType()->enumValue(); 384 SVGMarkerOrientType toOrientType = toAngle->orientType()->enumValue(); 439 if (orientType()->enumValue() == SVGMarkerOrientAuto || orientType()->enumValue() == SVGMarkerOrientAutoStartReverse) {
|
SVGFEColorMatrixElement.cpp | 76 return colorMatrix->setType(m_type->currentValue()->enumValue()); 114 ColorMatrixType filterType = m_type->currentValue()->enumValue();
|
SVGFEMorphologyElement.cpp | 90 return morphology->setMorphologyOperator(m_svgOperator->currentValue()->enumValue()); 136 RefPtr<FilterEffect> effect = FEMorphology::create(filter, m_svgOperator->currentValue()->enumValue(), xRadius, yRadius);
|
SVGLinearGradientElement.cpp | 109 attributes.setSpreadMethod(element->spreadMethod()->currentValue()->enumValue()); 112 attributes.setGradientUnits(element->gradientUnits()->currentValue()->enumValue());
|
SVGComponentTransferFunctionElement.cpp | 99 func.type = m_type->currentValue()->enumValue();
|
SVGFEBlendElement.cpp | 124 return blend->setBlendMode(toWebBlendMode(m_mode->currentValue()->enumValue())); 160 RefPtr<FilterEffect> effect = FEBlend::create(filter, toWebBlendMode(m_mode->currentValue()->enumValue()));
|
SVGFECompositeElement.cpp | 114 return composite->setOperation(m_svgOperator->currentValue()->enumValue()); 163 RefPtr<FilterEffect> effect = FEComposite::create(filter, m_svgOperator->currentValue()->enumValue(), m_k1->currentValue()->value(), m_k2->currentValue()->value(), m_k3->currentValue()->value(), m_k4->currentValue()->value());
|
SVGPatternElement.cpp | 163 attributes.setPatternUnits(element->patternUnits()->currentValue()->enumValue()); 166 attributes.setPatternContentUnits(element->patternContentUnits()->currentValue()->enumValue());
|
SVGRadialGradientElement.cpp | 123 attributes.setSpreadMethod(element->spreadMethod()->currentValue()->enumValue()); 126 attributes.setGradientUnits(element->gradientUnits()->currentValue()->enumValue());
|
/external/chromium_org/third_party/icu/source/common/ |
utrie2.cpp | 504 * The values are transformed from the raw trie entries by the enumValue function. 518 UTrie2EnumValue *enumValue, UTrie2EnumRange *enumRange, const void *context) { 529 if(enumValue==NULL) { 530 enumValue=enumSameValue; 554 initialValue=enumValue(context, trie->initialValue); 650 value=enumValue(context, data32!=NULL ? data32[block+j] : idx[block+j]); 678 value=enumValue(context, highValue); 695 UTrie2EnumValue *enumValue, UTrie2EnumRange *enumRange, const void *context) { 696 enumEitherTrie(trie, 0, 0x110000, enumValue, enumRange, context); 701 UTrie2EnumValue *enumValue, UTrie2EnumRange *enumRange [all...] |
/external/icu/icu4c/source/common/ |
utrie2.cpp | 533 * The values are transformed from the raw trie entries by the enumValue function. 547 UTrie2EnumValue *enumValue, UTrie2EnumRange *enumRange, const void *context) { 558 if(enumValue==NULL) { 559 enumValue=enumSameValue; 583 initialValue=enumValue(context, trie->initialValue); 679 value=enumValue(context, data32!=NULL ? data32[block+j] : idx[block+j]); 707 value=enumValue(context, highValue); 724 UTrie2EnumValue *enumValue, UTrie2EnumRange *enumRange, const void *context) { 725 enumEitherTrie(trie, 0, 0x110000, enumValue, enumRange, context); 730 UTrie2EnumValue *enumValue, UTrie2EnumRange *enumRange [all...] |