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

123

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPointList.h39 static SVGPointList initialValue() { return SVGPointList(); } function in struct:WebCore::SVGPropertyTraits
H A DSVGLengthList.h45 static SVGLengthList initialValue() { return SVGLengthList(); } function in struct:WebCore::SVGPropertyTraits
H A DSVGPathSegList.h51 static SVGPathSegList initialValue() { return SVGPathSegList(PathSegUndefinedRole); } function in struct:WebCore::SVGPropertyTraits
H A DSVGTransformList.h46 static SVGTransformList initialValue() { return SVGTransformList(); } function in struct:WebCore::SVGPropertyTraits
H A DSVGNumberList.h55 static SVGNumberList initialValue() { return SVGNumberList(); } function in struct:WebCore::SVGPropertyTraits
H A DSVGAngle.h65 static SVGAngle initialValue() { return SVGAngle(); } function in struct:WebCore::SVGPropertyTraits
H A DSVGNumber.h70 static SVGNumber initialValue() { return SVGNumber(); } function in struct:WebCore::SVGPropertyTraits
H A DSVGRect.h58 static SVGRect initialValue() { return SVGRect(SVGRect::InvalidSVGRectTag()); } function in struct:WebCore::SVGPropertyTraits
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGPropertyTraits.h33 static bool initialValue() { return false; } function in struct:WebCore::SVGPropertyTraits
39 static unsigned initialValue() { return 0; } function in struct:WebCore::SVGPropertyTraits
45 static int initialValue() { return 0; } function in struct:WebCore::SVGPropertyTraits
51 static float initialValue() { return 0; } function in struct:WebCore::SVGPropertyTraits
57 static String initialValue() { return String(); } function in struct:WebCore::SVGPropertyTraits
H A DSVGMatrixTearOff.h39 static PassRefPtr<SVGMatrixTearOff> create(const SVGMatrix& initialValue) argument
41 return adoptRef(new SVGMatrixTearOff(initialValue));
86 SVGMatrixTearOff(const SVGMatrix& initialValue) argument
87 : SVGPropertyTearOff<SVGMatrix>(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/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/icu4c/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/jmonkeyengine/engine/src/core/com/jme3/input/
H A DSoftTextDialogInput.java11 public void requestDialog(int id, String title, String initialValue, SoftTextDialogInputListener listener); argument
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DFieldDefinition.java43 EncodedValue initialValue, AnnotationSetItem annotationSet,
51 initialValue != null &&
55 initialValue != NullEncodedValue.NullValue
66 if (initialValue != null) {
68 EncodedValueAdaptor.writeTo(writer, initialValue);
42 writeTo(IndentingWriter writer, ClassDataItem.EncodedField encodedField, EncodedValue initialValue, AnnotationSetItem annotationSet, boolean setInStaticConstructor) 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/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;
H A DAtomicLong.java29 public AtomicLong(long initialValue) { argument
30 this.value = initialValue;
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestChatClient.java96 public static String getString(Component owner, String title, String message, String initialValue) { argument
98 null, null, initialValue);

Completed in 528 milliseconds

123