HomeSort by relevance Sort by last modified time
    Searched refs:initialValue (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /external/webkit/Source/WebCore/svg/properties/
SVGPropertyTraits.h 34 static bool initialValue() { return false; }
40 static int initialValue() { return 0; }
46 static long initialValue() { return 0; }
52 static float initialValue() { return 0; }
58 static String initialValue() { return String(); }
SVGPropertyTearOff.h 44 static PassRefPtr<Self> create(const PropertyType& initialValue)
46 return adoptRef(new Self(initialValue));
107 SVGPropertyTearOff(const PropertyType& initialValue)
110 , m_value(new PropertyType(initialValue))
  /external/smali/util/src/main/java/ds/tree/
VisitorImpl.java 18 public VisitorImpl(R initialValue) {
19 this.result = initialValue;
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
SoftTextDialogInput.java 11 public void requestDialog(int id, String title, String initialValue, SoftTextDialogInputListener listener);
  /external/webkit/Source/WebKit/chromium/public/
WebFileChooserParams.h 47 // |initialValue| is a filename which the dialog should select by default.
49 WebString initialValue;
  /external/jsilver/src/com/google/clearsilver/jsilver/output/
ThreadLocalOutputBufferProvider.java 29 protected StringBuilder initialValue() {
34 protected Boolean 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/guava/guava/src/com/google/common/base/
Platform.java 47 protected char[] initialValue() {
  /external/javassist/src/main/javassist/runtime/
Cflow.java 34 protected synchronized Object initialValue() {
  /external/webkit/Source/WebCore/svg/
SVGLengthList.h 42 static SVGLengthList initialValue() { return SVGLengthList(); }
SVGNumberList.h 42 static SVGNumberList initialValue() { return SVGNumberList(); }
SVGPointList.h 44 static SVGPointList initialValue() { return SVGPointList(); }
SVGPathSegList.h 52 static SVGPathSegList initialValue() { return SVGPathSegList(PathSegUndefinedRole); }
SVGTransformList.h 46 static SVGTransformList initialValue() { return SVGTransformList(); }
SVGAngle.h 64 static SVGAngle initialValue() { return SVGAngle(); }
  /libcore/benchmarks/src/benchmarks/regression/
ThreadLocalBenchmark.java 25 @Override protected char[] initialValue() {
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
FieldDefinition.java 43 EncodedValue initialValue, AnnotationSetItem annotationSet,
51 initialValue != null &&
55 initialValue != NullEncodedValue.NullValue
66 if (initialValue != null) {
68 EncodedValueAdaptor.writeTo(writer, initialValue);
  /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/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
AtomicInteger.java 29 public AtomicInteger(int initialValue) {
30 value = initialValue;
AtomicLong.java 29 public AtomicLong(long initialValue) {
30 this.value = initialValue;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
InheritableThreadLocalTest.java 35 protected String initialValue() {
  /external/webrtc/src/system_wrappers/interface/
atomic32.h 33 Atomic32(WebRtc_Word32 initialValue = 0);
  /external/icu4c/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...]

Completed in 931 milliseconds

1 2 3 4 5 6 7