OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ownerType
(Results
1 - 22
of
22
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGViewSpec.cpp
170
PassRefPtr<SVGAnimatedProperty> SVGViewSpec::lookupOrCreateViewBoxWrapper(SVGViewSpec*
ownerType
)
172
ASSERT(
ownerType
);
173
ASSERT(
ownerType
->contextElement());
174
return SVGAnimatedProperty::lookupOrCreateWrapper<SVGElement, SVGAnimatedRect, SVGRect>(
ownerType
->contextElement(), viewBoxPropertyInfo(),
ownerType
->m_viewBox);
177
PassRefPtr<SVGAnimatedProperty> SVGViewSpec::lookupOrCreatePreserveAspectRatioWrapper(SVGViewSpec*
ownerType
)
179
ASSERT(
ownerType
);
180
ASSERT(
ownerType
->contextElement());
181
return SVGAnimatedProperty::lookupOrCreateWrapper<SVGElement, SVGAnimatedPreserveAspectRatio, SVGPreserveAspectRatio>(
ownerType
->contextElement(), preserveAspectRatioPropertyInfo(),
ownerType
->m_preserveAspectRatio)
[
all
...]
SVGPolyElement.cpp
139
SVGPolyElement*
ownerType
= toSVGPolyElement(contextElement);
140
if (!
ownerType
->m_points.shouldSynchronize)
142
ownerType
->m_points.synchronize(
ownerType
, pointsPropertyInfo()->attributeName,
ownerType
->m_points.value.valueAsString());
148
SVGPolyElement*
ownerType
= toSVGPolyElement(contextElement);
150
(
ownerType
, pointsPropertyInfo(),
ownerType
->m_points.value);
SVGMarkerElement.cpp
228
SVGMarkerElement*
ownerType
= toSVGMarkerElement(contextElement);
229
if (!
ownerType
->m_orientType.shouldSynchronize)
233
if (
ownerType
->m_orientType.value != SVGMarkerOrientAuto)
237
ownerType
->m_orientType.synchronize(
ownerType
, orientTypePropertyInfo()->attributeName, autoString);
243
SVGMarkerElement*
ownerType
= toSVGMarkerElement(contextElement);
245
(
ownerType
, orientTypePropertyInfo(),
ownerType
->m_orientType.value);
SVGTextContentElement.cpp
78
SVGTextContentElement*
ownerType
= toSVGTextContentElement(contextElement);
79
if (!
ownerType
->m_textLength.shouldSynchronize)
81
AtomicString value(SVGPropertyTraits<SVGLength>::toString(
ownerType
->m_specifiedTextLength));
82
ownerType
->m_textLength.synchronize(
ownerType
, textLengthPropertyInfo()->attributeName, value);
88
SVGTextContentElement*
ownerType
= toSVGTextContentElement(contextElement);
90
(
ownerType
, textLengthPropertyInfo(),
ownerType
->m_textLength.value);
SVGPathElement.cpp
312
SVGPathElement*
ownerType
= toSVGPathElement(contextElement);
314
if (SVGAnimatedProperty* property = SVGAnimatedProperty::lookupWrapper<SVGPathElement, SVGAnimatedPathSegListPropertyTearOff>(
ownerType
, dPropertyInfo()))
318
buildSVGPathSegListFromByteStream(
ownerType
->m_pathByteStream.get(),
ownerType
,
ownerType
->m_pathSegList.value, UnalteredParsing);
321
(
ownerType
, dPropertyInfo(),
ownerType
->m_pathSegList.value);
327
SVGPathElement*
ownerType
= toSVGPathElement(contextElement);
328
if (!
ownerType
->m_pathSegList.shouldSynchronize)
330
ownerType
->m_pathSegList.synchronize(ownerType, dPropertyInfo()->attributeName, ownerType->m_pathSegList.val (…)
[
all
...]
/cts/tools/signature-tools/src/signature/compare/model/subst/
ParameterizedTypeProjection.java
41
ITypeReference
ownerType
= original.getOwnerType();
42
if (
ownerType
== null) {
45
return ViewpointAdapter.substitutedTypeReference(
ownerType
, mappings);
/cts/tools/signature-tools/src/signature/model/impl/
SigParameterizedType.java
30
private ITypeReference
ownerType
;
34
public SigParameterizedType(ITypeReference
ownerType
,
36
this.
ownerType
=
ownerType
;
42
ITypeReference returnValue =
ownerType
;
/libcore/luni/src/main/java/libcore/reflect/
ParameterizedTypeImpl.java
30
public ParameterizedTypeImpl(ParameterizedTypeImpl
ownerType
, String rawTypeName,
32
this.ownerType0 =
ownerType
;
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedPropertyMacros.h
66
#define BEGIN_REGISTER_ANIMATED_PROPERTIES(
OwnerType
) \
67
SVGAttributeToPropertyMap&
OwnerType
::attributeToPropertyMap() \
73
SVGAttributeToPropertyMap&
OwnerType
::localAttributeToPropertyMap() const \
78
void
OwnerType
::registerAnimatedPropertiesFor##
OwnerType
() \
80
OwnerType
::m_cleanupAnimatedPropertiesCaller.setOwner(this); \
81
SVGAttributeToPropertyMap& map =
OwnerType
::attributeToPropertyMap(); \
84
typedef
OwnerType
UseOwnerType;
95
#define DEFINE_ANIMATED_PROPERTY(AnimatedPropertyTypeEnum,
OwnerType
, DOMAttribute, SVGDOMAttributeIdentifier, UpperProperty, LowerProperty, TearOffType, PropertyType) \
96
const SVGPropertyInfo*
OwnerType
::LowerProperty##PropertyInfo() {
[
all
...]
SVGAttributeToPropertyMap.cpp
64
void SVGAttributeToPropertyMap::animatedPropertiesForAttribute(SVGElement*
ownerType
, const QualifiedName& attributeName, Vector<RefPtr<SVGAnimatedProperty> >& properties)
66
ASSERT(
ownerType
);
74
properties.append(animatedProperty(
ownerType
, attributeName, *vectorIt));
/cts/tools/signature-tools/test/signature/converter/
ConvertParameterizedTypeTest.java
59
ITypeReference
ownerType
= parametrizedType.getOwnerType();
60
assertNotNull(
ownerType
);
/cts/tools/signature-tools/src/signature/model/util/
ITypeFactory.java
56
* @param
ownerType
64
public SigParameterizedType getParameterizedType(ITypeReference
ownerType
,
TypePool.java
75
public SigParameterizedType getParameterizedType(ITypeReference
ownerType
,
79
return new SigParameterizedType(
ownerType
, rawType, typeArguments);
/cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java
346
ITypeReference
ownerType
= null;
349
ownerType
= convertTypeReference(containingType);
360
return pool.getParameterizedType(
ownerType
, rawType,
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar
/libcore/benchmarks/libs/
caliper.jar
/prebuilts/tools/common/asm-tools/
asm-debug-all-4.0.jar
/external/droiddriver/libs/
guava-13.0.jar
/prebuilts/devtools/tools/lib/
guava-13.0.1.jar
/prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar
/prebuilts/tools/common/guava-tools/
guava-13.0.1.jar
/prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar
Completed in 414 milliseconds