OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:enumValue
(Results
1 - 25
of
51
) sorted by null
1
2
3
/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
78
SVGUnitTypes::SVGUnitType filterUnits() const { return toSVGFilterElement(element())->filterUnits()->currentValue()->
enumValue
(); }
79
SVGUnitTypes::SVGUnitType primitiveUnits() const { return toSVGFilterElement(element())->primitiveUnits()->currentValue()->
enumValue
(); }
RenderSVGResourceMarker.h
59
SVGMarkerUnitsType markerUnits() const { return toSVGMarkerElement(element())->markerUnits()->currentValue()->
enumValue
(); }
RenderSVGResourceClipper.h
73
SVGUnitTypes::SVGUnitType clipPathUnits() const { return toSVGClipPathElement(element())->clipPathUnits()->currentValue()->
enumValue
(); }
RenderSVGResourceClipper.cpp
131
if (toSVGClipPathElement(element())->clipPathUnits()->currentValue()->
enumValue
() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
165
&& toSVGClipPathElement(element())->clipPathUnits()->currentValue()->
enumValue
() == SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEONUSE) {
241
SVGUnitTypes::SVGUnitType contentUnits = toSVGClipPathElement(element())->clipPathUnits()->currentValue()->
enumValue
();
335
if (clipPathElement->clipPathUnits()->currentValue()->
enumValue
() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
368
if (toSVGClipPathElement(element())->clipPathUnits()->currentValue()->
enumValue
() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
RenderSVGResourceMarker.cpp
112
if (marker->orientType()->currentValue()->
enumValue
() == SVGMarkerOrientAngle)
124
bool useStrokeWidth = marker->markerUnits()->currentValue()->
enumValue
() == SVGMarkerUnitsStrokeWidth;
RenderSVGResourceMasker.cpp
118
SVGUnitTypes::SVGUnitType contentUnits = toSVGMaskElement(element())->maskContentUnits()->currentValue()->
enumValue
();
173
FloatRect maskBoundaries = SVGLengthContext::resolveRectangle<SVGMaskElement>(maskElement, maskElement->maskUnits()->currentValue()->
enumValue
(), objectBoundingBox);
RenderSVGResourceFilter.cpp
97
effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement->primitiveUnits()->currentValue()->
enumValue
(), targetBoundingBox));
231
filterData->boundaries = SVGLengthContext::resolveRectangle<SVGFilterElement>(filterElement, filterElement->filterUnits()->currentValue()->
enumValue
(), targetBoundingBox);
268
bool primitiveBoundingBoxMode = filterElement->primitiveUnits()->currentValue()->
enumValue
() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX;
395
return SVGLengthContext::resolveRectangle<SVGFilterElement>(element, element->filterUnits()->currentValue()->
enumValue
(), object->objectBoundingBox());
ReferenceFilterBuilder.cpp
165
effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement.primitiveUnits()->currentValue()->
enumValue
(), parentFilter->sourceImageRect()));
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedAngle.cpp
53
if (m_orientType->currentValue()->
enumValue
() == SVGMarkerOrientAuto)
SVGFEDisplacementMapElement.cpp
103
return displacementMap->setXChannelSelector(m_xChannelSelector->currentValue()->
enumValue
());
105
return displacementMap->setYChannelSelector(m_yChannelSelector->currentValue()->
enumValue
());
143
RefPtr<FilterEffect> effect = FEDisplacementMap::create(filter, m_xChannelSelector->currentValue()->
enumValue
(), m_yChannelSelector->currentValue()->
enumValue
(), m_scale->currentValue()->value());
SVGFETurbulenceElement.cpp
111
return turbulence->setType(m_type->currentValue()->
enumValue
());
113
return turbulence->setStitchTiles(m_stitchTiles->currentValue()->
enumValue
());
153
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
103
return create(
enumValue
());
106
Enum
enumValue
() const
SVGAngle.cpp
103
return adoptRef(new SVGAngle(m_unitType, m_valueInSpecifiedUnits, m_orientType->
enumValue
()));
366
if (orientType()->
enumValue
() != SVGMarkerOrientAngle || otherAngle->orientType()->
enumValue
() != SVGMarkerOrientAngle)
381
SVGMarkerOrientType fromOrientType = fromAngle->orientType()->
enumValue
();
382
SVGMarkerOrientType toOrientType = toAngle->orientType()->
enumValue
();
430
if (orientType()->
enumValue
() == SVGMarkerOrientAuto) {
SVGFEBlendElement.cpp
94
return blend->setBlendMode(m_mode->currentValue()->
enumValue
());
130
RefPtr<FilterEffect> effect = FEBlend::create(filter, m_mode->currentValue()->
enumValue
());
SVGFEColorMatrixElement.cpp
94
return colorMatrix->setType(m_type->currentValue()->
enumValue
());
132
ColorMatrixType filterType = m_type->currentValue()->
enumValue
();
SVGFEMorphologyElement.cpp
99
return morphology->setMorphologyOperator(m_svgOperator->currentValue()->
enumValue
());
145
RefPtr<FilterEffect> effect = FEMorphology::create(filter, m_svgOperator->currentValue()->
enumValue
(), xRadius, yRadius);
SVGLinearGradientElement.cpp
111
attributes.setSpreadMethod(element->spreadMethod()->currentValue()->
enumValue
());
114
attributes.setGradientUnits(element->gradientUnits()->currentValue()->
enumValue
());
SVGFECompositeElement.cpp
116
return composite->setOperation(m_svgOperator->currentValue()->
enumValue
());
165
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
165
attributes.setPatternUnits(element->patternUnits()->currentValue()->
enumValue
());
168
attributes.setPatternContentUnits(element->patternContentUnits()->currentValue()->
enumValue
());
SVGRadialGradientElement.cpp
125
attributes.setSpreadMethod(element->spreadMethod()->currentValue()->
enumValue
());
128
attributes.setGradientUnits(element->gradientUnits()->currentValue()->
enumValue
());
/external/chromium_org/third_party/icu/source/common/
utrie2.cpp
500
* The values are transformed from the raw trie entries by the
enumValue
function.
514
UTrie2EnumValue *
enumValue
, UTrie2EnumRange *enumRange, const void *context) {
525
if(
enumValue
==NULL) {
526
enumValue
=enumSameValue;
548
initialValue=
enumValue
(context, trie->initialValue);
644
value=
enumValue
(context, data32!=NULL ? data32[block+j] : idx[block+j]);
672
value=
enumValue
(context, highValue);
689
UTrie2EnumValue *
enumValue
, UTrie2EnumRange *enumRange, const void *context) {
690
enumEitherTrie(trie, 0, 0x110000,
enumValue
, enumRange, context);
695
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
...]
Completed in 1619 milliseconds
1
2
3