Searched defs:initialValue (Results 1 - 25 of 86) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimatedEnumerationBase.h46 SVGAnimatedEnumerationBase(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGEnumerationBase> initialValue) argument
47 : SVGAnimatedProperty<SVGEnumerationBase>(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 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 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)
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 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 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)
/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/deqp/framework/delibs/dethread/unix/
H A DdeSemaphoreUnix.c34 deSemaphore deSemaphore_create (int initialValue, const deSemaphoreAttributes* attributes) argument
43 if (sem_init(sem, 0, initialValue) != 0)
H A DdeNamedSemaphoreUnix.c46 deSemaphore deSemaphore_create (int initialValue, const deSemaphoreAttributes* attributes) argument
59 sem->semaphore = sem_open(name, O_CREAT|O_EXCL, mode, initialValue);
/external/smali/util/src/main/java/ds/tree/
H A DVisitorImpl.java18 public VisitorImpl(R initialValue) { argument
19 this.result = initialValue;
/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/chromium_org/third_party/icu/source/common/
H A Dpropsvec.h54 * Special pseudo code points for storing the initialValue and the errorValue,
161 int32_t initialValue; member in struct:UPVecToUTrie2Context
/external/deqp/framework/delibs/dethread/win32/
H A DdeSemaphoreWin32.c36 deSemaphore deSemaphore_create (int initialValue, const deSemaphoreAttributes* attributes) argument
42 handle = CreateSemaphore(DE_NULL, initialValue, WIN32_SEM_MAX_VALUE, DE_NULL);
/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/icu/icu4c/source/common/
H A Dpropsvec.h54 * Special pseudo code points for storing the initialValue and the errorValue,
161 int32_t initialValue; member in struct:UPVecToUTrie2Context
/external/javassist/src/main/javassist/runtime/
H A DCflow.java34 protected synchronized Object initialValue() { method in class:Cflow
/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/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
H A Datomic32_win.cc21 Atomic32::Atomic32(WebRtc_Word32 initialValue) : _value(initialValue) argument
/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/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/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java29 public AtomicInteger(int initialValue) { argument
30 value = initialValue;

Completed in 1643 milliseconds

1234