Searched refs:initialValue (Results 1 - 25 of 124) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimatedBoolean.h41 static PassRefPtr<SVGAnimatedBoolean> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGBoolean> initialValue) argument
43 return adoptRef(new SVGAnimatedBoolean(contextElement, attributeName, initialValue));
47 SVGAnimatedBoolean(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGBoolean> initialValue) argument
48 : SVGAnimatedProperty<SVGBoolean>(contextElement, attributeName, initialValue)
H A DSVGAnimatedPreserveAspectRatio.h41 static PassRefPtr<SVGAnimatedPreserveAspectRatio> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGPreserveAspectRatio> initialValue) argument
43 return adoptRef(new SVGAnimatedPreserveAspectRatio(contextElement, attributeName, initialValue));
47 SVGAnimatedPreserveAspectRatio(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGPreserveAspectRatio> initialValue) argument
48 : SVGAnimatedProperty<SVGPreserveAspectRatio>(contextElement, attributeName, initialValue)
H A DSVGAnimatedString.h41 static PassRefPtr<SVGAnimatedString> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGString> initialValue) argument
43 return adoptRef(new SVGAnimatedString(contextElement, attributeName, initialValue));
47 SVGAnimatedString(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGString> initialValue) argument
48 : SVGAnimatedProperty<SVGString>(contextElement, attributeName, initialValue)
H A DSVGAnimatedInteger.h44 static PassRefPtr<SVGAnimatedInteger> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGInteger> initialValue) argument
46 return adoptRef(new SVGAnimatedInteger(contextElement, attributeName, initialValue));
57 SVGAnimatedInteger(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGInteger> initialValue) argument
58 : SVGAnimatedProperty<SVGInteger>(contextElement, attributeName, initialValue)
H A DSVGAnimatedLength.h41 static PassRefPtr<SVGAnimatedLength> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGLength> initialValue, SVGLengthNegativeValuesMode negativeValuesMode) argument
43 return adoptRef(new SVGAnimatedLength(contextElement, attributeName, initialValue, negativeValuesMode));
50 SVGAnimatedLength(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGLength> initialValue, SVGLengthNegativeValuesMode negativeValuesMode) argument
51 : SVGAnimatedProperty<SVGLength>(contextElement, attributeName, initialValue)
H A DSVGAnimatedNumber.h44 static PassRefPtr<SVGAnimatedNumber> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGNumber> initialValue) argument
46 return adoptRef(new SVGAnimatedNumber(contextElement, attributeName, initialValue));
57 SVGAnimatedNumber(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGNumber> initialValue) argument
58 : SVGAnimatedProperty<SVGNumber>(contextElement, attributeName, initialValue)
H A DSVGAnimatedEnumerationBase.h46 SVGAnimatedEnumerationBase(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGEnumerationBase> initialValue) argument
47 : SVGAnimatedProperty<SVGEnumerationBase>(contextElement, attributeName, initialValue)
H A DSVGAnimatedEnumeration.h41 static PassRefPtr<SVGAnimatedEnumeration<Enum> > create(SVGElement* contextElement, const QualifiedName& attributeName, Enum initialValue) argument
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) argument
48 return adoptRef(new SVGAnimatedEnumeration(contextElement, attributeName, initialValue));
67 SVGAnimatedEnumeration(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGEnumeration<Enum> > initialValue) argument
68 : SVGAnimatedEnumerationBase(contextElement, attributeName, initialValue)
/external/deqp/framework/delibs/decpp/
H A DdeSemaphore.cpp34 * \param initialValue Initial value for semaphore. Must be 0 or greater.
37 Semaphore::Semaphore (int initialValue, deUint32 flags) argument
43 m_semaphore = deSemaphore_create(initialValue, &attribs);
/external/smali/util/src/main/java/ds/tree/
H A DVisitorImpl.java18 public VisitorImpl(R initialValue) { argument
19 this.result = initialValue;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderField.java44 @Nullable final BuilderEncodedValue initialValue; field in class:BuilderField
49 @Nullable BuilderEncodedValue initialValue,
53 this.initialValue = initialValue;
62 return initialValue;
47 BuilderField(@onnull BuilderFieldReference fieldReference, int accessFlags, @Nullable BuilderEncodedValue initialValue, @Nonnull BuilderAnnotationSet annotations) argument
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DFieldDefinition.java44 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/zlib/src/contrib/dotzlib/DotZLib/
H A DChecksumImpl.cs39 /// <param name="initialValue">The value to set the current checksum to</param>
40 public ChecksumGeneratorBase(uint initialValue) argument
42 _current = initialValue;
121 /// <param name="initialValue">The value to set the current checksum to</param>
122 public CRC32Checksum(uint initialValue) : base(initialValue) {} argument
172 /// <param name="initialValue">The value to set the current checksum to</param>
173 public AdlerChecksum(uint initialValue) : base(initialValue) {} argument
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DThreadLocalOutputBufferProvider.java29 protected StringBuilder initialValue() {
34 protected Boolean initialValue() {
/external/webrtc/src/system_wrappers/source/
H A Datomic32_mac.cc21 Atomic32::Atomic32(WebRtc_Word32 initialValue) : _value(initialValue) argument
H A Datomic32_posix.cc21 Atomic32::Atomic32(WebRtc_Word32 initialValue) : _value(initialValue) argument
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFileChooserParams.h50 // |initialValue| is a filename which the dialog should select by default.
52 WebString initialValue; member in struct:blink::WebFileChooserParams
/external/deqp/framework/delibs/dethread/
H A DdeSemaphore.h41 deSemaphore deSemaphore_create (int initialValue, const deSemaphoreAttributes* attributes);
/external/guava/guava/src/com/google/common/base/
H A DPlatform.java47 protected char[] initialValue() {
/external/javassist/src/main/javassist/runtime/
H A DCflow.java34 protected synchronized Object initialValue() { method in class:Cflow
/external/proguard/src/proguard/util/
H A DArrayUtil.java353 * @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);
357 ensureArraySize(boolean[] array, int size, boolean initialValue) argument
473 ensureArraySize(byte[] array, int size, byte initialValue) argument
589 ensureArraySize(short[] array, int size, short initialValue) argument
705 ensureArraySize(int[] array, int size, int initialValue) argument
821 ensureArraySize(long[] array, int size, long initialValue) argument
937 ensureArraySize(Object[] array, int size, Object initialValue) argument
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomics.java49 * @param initialValue the initial value
52 public static <V> AtomicReference<V> newReference(@Nullable V initialValue) { argument
53 return new AtomicReference<V>(initialValue);
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java29 public AtomicInteger(int initialValue) { argument
30 value = initialValue;
H A DAtomicLong.java29 public AtomicLong(long initialValue) { argument
30 this.value = initialValue;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableField.java55 @Nullable protected final ImmutableEncodedValue initialValue; field in class:ImmutableField
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;}
58 ImmutableField(@onnull String definingClass, @Nonnull String name, @Nonnull String type, int accessFlags, @Nullable EncodedValue initialValue, @Nullable Collection<? extends Annotation> annotations) argument
72 ImmutableField(@onnull String definingClass, @Nonnull String name, @Nonnull String type, int accessFlags, @Nullable ImmutableEncodedValue initialValue, @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations) argument

Completed in 5296 milliseconds

12345