HomeSort by relevance Sort by last modified time
    Searched full:initialvalue (Results 1 - 25 of 215) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/base/libs/hwui/
CanvasProperty.h 31 CanvasPropertyPrimitive(float initialValue) : value(initialValue) {}
39 CanvasPropertyPaint(const SkPaint& initialValue) : value(initialValue) {}
  /external/smali/util/src/main/java/ds/tree/
VisitorImpl.java 18 public VisitorImpl(R initialValue) {
19 this.result = initialValue;
  /frameworks/base/graphics/java/android/graphics/
CanvasProperty.java 29 public static CanvasProperty<Float> createFloat(float initialValue) {
30 return new CanvasProperty<Float>(nCreateFloat(initialValue));
33 public static CanvasProperty<Paint> createPaint(Paint initialValue) {
34 return new CanvasProperty<Paint>(nCreatePaint(initialValue.mNativePaint));
46 private static native long nCreateFloat(float initialValue);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedEnumeration.h 41 static PassRefPtr<SVGAnimatedEnumeration<Enum> > create(SVGElement* contextElement, const QualifiedName& attributeName, Enum initialValue)
43 return adoptRef(new SVGAnimatedEnumeration(contextElement, attributeName, SVGEnumeration<Enum>::create(initialValue)));
46 static PassRefPtr<SVGAnimatedEnumeration<Enum> > create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGEnumeration<Enum> > initialValue)
48 return adoptRef(new SVGAnimatedEnumeration(contextElement, attributeName, initialValue));
67 SVGAnimatedEnumeration(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGEnumeration<Enum> > initialValue)
68 : SVGAnimatedEnumerationBase(contextElement, attributeName, initialValue)
SVGAnimatedBoolean.h 41 static PassRefPtr<SVGAnimatedBoolean> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGBoolean> initialValue)
43 return adoptRef(new SVGAnimatedBoolean(contextElement, attributeName, initialValue));
47 SVGAnimatedBoolean(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGBoolean> initialValue)
48 : SVGAnimatedProperty<SVGBoolean>(contextElement, attributeName, initialValue)
SVGAnimatedLength.h 41 static PassRefPtr<SVGAnimatedLength> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGLength> initialValue, SVGLengthNegativeValuesMode negativeValuesMode)
43 return adoptRef(new SVGAnimatedLength(contextElement, attributeName, initialValue, negativeValuesMode));
50 SVGAnimatedLength(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGLength> initialValue, SVGLengthNegativeValuesMode negativeValuesMode)
51 : SVGAnimatedProperty<SVGLength>(contextElement, attributeName, initialValue)
SVGAnimatedPreserveAspectRatio.h 41 static PassRefPtr<SVGAnimatedPreserveAspectRatio> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGPreserveAspectRatio> initialValue)
43 return adoptRef(new SVGAnimatedPreserveAspectRatio(contextElement, attributeName, initialValue));
47 SVGAnimatedPreserveAspectRatio(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGPreserveAspectRatio> initialValue)
48 : SVGAnimatedProperty<SVGPreserveAspectRatio>(contextElement, attributeName, initialValue)
SVGAnimatedString.h 41 static PassRefPtr<SVGAnimatedString> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGString> initialValue)
43 return adoptRef(new SVGAnimatedString(contextElement, attributeName, initialValue));
47 SVGAnimatedString(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGString> initialValue)
48 : SVGAnimatedProperty<SVGString>(contextElement, attributeName, initialValue)
SVGAnimatedInteger.h 44 static PassRefPtr<SVGAnimatedInteger> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGInteger> initialValue)
46 return adoptRef(new SVGAnimatedInteger(contextElement, attributeName, initialValue));
57 SVGAnimatedInteger(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGInteger> initialValue)
58 : SVGAnimatedProperty<SVGInteger>(contextElement, attributeName, initialValue)
SVGAnimatedNumber.h 44 static PassRefPtr<SVGAnimatedNumber> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGNumber> initialValue)
46 return adoptRef(new SVGAnimatedNumber(contextElement, attributeName, initialValue));
57 SVGAnimatedNumber(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGNumber> initialValue)
58 : SVGAnimatedProperty<SVGNumber>(contextElement, attributeName, initialValue)
SVGAnimatedEnumerationBase.h 46 SVGAnimatedEnumerationBase(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGEnumerationBase> initialValue)
47 : SVGAnimatedProperty<SVGEnumerationBase>(contextElement, attributeName, initialValue)
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderField.java 44 @Nullable final BuilderEncodedValue initialValue;
49 @Nullable BuilderEncodedValue initialValue,
53 this.initialValue = initialValue;
62 return initialValue;
  /external/chromium-trace/trace-viewer/src/ui/
dom_helpers.js 88 var initialValue = base.Settings.get(settingsKey, defaultValue);
91 if (selectorEl.children[i].targetPropertyValue == initialValue) {
93 targetEl[targetElProperty] = initialValue;
113 var initialValue = base.Settings.get(settingsKey, defaultValue);
114 buttonEl.checked = !!initialValue;
115 targetEl[targetElProperty] = initialValue;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
FieldDefinition.java 44 EncodedValue initialValue = field.getInitialValue();
50 initialValue != null) {
51 if (!EncodedValueUtils.isDefaultValue(initialValue)) {
56 initialValue = null;
65 if (initialValue != null) {
67 EncodedValueAdaptor.writeTo(writer, initialValue);
  /external/jsilver/src/com/google/clearsilver/jsilver/output/
ThreadLocalOutputBufferProvider.java 29 protected StringBuilder initialValue() {
34 protected Boolean initialValue() {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableField.java 55 @Nullable protected final ImmutableEncodedValue initialValue;
62 @Nullable EncodedValue initialValue,
68 this.initialValue = ImmutableEncodedValueFactory.ofNullable(initialValue);
76 @Nullable ImmutableEncodedValue initialValue,
82 this.initialValue = initialValue;
103 @Override public EncodedValue getInitialValue() { return initialValue;}
  /external/webrtc/src/system_wrappers/source/
atomic32_mac.cc 21 Atomic32::Atomic32(WebRtc_Word32 initialValue) : _value(initialValue)
atomic32_posix.cc 21 Atomic32::Atomic32(WebRtc_Word32 initialValue) : _value(initialValue)
atomic32_win.cc 21 Atomic32::Atomic32(WebRtc_Word32 initialValue) : _value(initialValue)
  /external/chromium_org/third_party/icu/source/common/
utrie.cpp 49 uint32_t initialValue, uint32_t leadUnitValue,
102 trie->data[--j]=initialValue;
262 uint32_t value, uint32_t initialValue, UBool overwrite) {
273 if(*block==initialValue) {
288 uint32_t initialValue;
301 initialValue=trie->data[0];
314 value, initialValue, overwrite);
318 value, initialValue, overwrite);
330 if(value==initialValue) {
340 utrie_fillBlock(trie->data+block, 0, UTRIE_DATA_BLOCK_LENGTH, value, initialValue, overwrite)
    [all...]
  /external/icu/icu4c/source/common/
utrie.cpp 49 uint32_t initialValue, uint32_t leadUnitValue,
102 trie->data[--j]=initialValue;
262 uint32_t value, uint32_t initialValue, UBool overwrite) {
273 if(*block==initialValue) {
288 uint32_t initialValue;
301 initialValue=trie->data[0];
314 value, initialValue, overwrite);
318 value, initialValue, overwrite);
330 if(value==initialValue) {
340 utrie_fillBlock(trie->data+block, 0, UTRIE_DATA_BLOCK_LENGTH, value, initialValue, overwrite)
    [all...]
  /external/proguard/src/proguard/util/
ArrayUtil.java 353 * @param initialValue the initial value of the elements.
359 boolean initialValue)
365 Arrays.fill(array, 0, size, initialValue);
372 if (initialValue)
374 Arrays.fill(array, 0, size, initialValue);
469 * @param initialValue the initial value of the elements.
475 byte initialValue)
481 Arrays.fill(array, 0, size, initialValue);
488 if (initialValue != 0)
490 Arrays.fill(array, 0, size, initialValue);
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Atomics.java 49 * @param initialValue the initial value
52 public static <V> AtomicReference<V> newReference(@Nullable V initialValue) {
53 return new AtomicReference<V>(initialValue);
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedProperty.h 163 SVGAnimatedPropertyCommon(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<Property> initialValue)
165 , m_baseValue(initialValue)
223 SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<Property> initialValue)
224 : SVGAnimatedPropertyCommon<Property>(contextElement, attributeName, initialValue)
239 static PassRefPtr<SVGAnimatedProperty<Property> > create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<Property> initialValue)
241 return adoptRef(new SVGAnimatedProperty<Property>(contextElement, attributeName, initialValue));
287 SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<Property> initialValue)
288 : SVGAnimatedPropertyCommon<Property>(contextElement, attributeName, initialValue)
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
AtomicInteger.java 29 public AtomicInteger(int initialValue) {
30 value = initialValue;

Completed in 1175 milliseconds

1 2 3 4 5 6 7 8 9