Searched refs:staticValue (Results 1 - 2 of 2) sorted by relevance

/external/dexmaker/src/main/java/com/google/dexmaker/
H A DDexMaker.java282 * @param staticValue a constant representing the initial value for the
286 public void declare(FieldId<?, ?> fieldId, int flags, Object staticValue) { argument
299 if ((flags & Modifier.STATIC) == 0 && staticValue != null) {
300 throw new IllegalArgumentException("staticValue is non-null, but field is not static");
303 FieldDeclaration fieldDeclaration = new FieldDeclaration(fieldId, flags, staticValue);
442 out.addStaticField(encoded, Constants.getConstant(field.staticValue));
455 private final Object staticValue; field in class:DexMaker.FieldDeclaration
457 FieldDeclaration(FieldId<?, ?> fieldId, int accessFlags, Object staticValue) { argument
458 if ((accessFlags & STATIC) == 0 && staticValue != null) {
463 this.staticValue
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGMatrixTearOff.cpp40 SVGMatrixTearOff::SVGMatrixTearOff(const AffineTransform& staticValue) argument
41 : m_staticValue(staticValue)

Completed in 149 milliseconds