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

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGPropertyTraits.h 33 static bool initialValue() { return false; }
39 static unsigned initialValue() { return 0; }
45 static int initialValue() { return 0; }
51 static float initialValue() { return 0; }
57 static String initialValue() { return String(); }
SVGPropertyTearOff.h 49 static PassRefPtr<Self> create(const PropertyType& initialValue)
51 return adoptRef(new Self(initialValue));
136 SVGPropertyTearOff(const PropertyType& initialValue)
139 , 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/chromium_org/third_party/WebKit/Source/core/svg/
SVGPointList.h 39 static SVGPointList initialValue() { return SVGPointList(); }
SVGPathSegList.h 51 static SVGPathSegList initialValue() { return SVGPathSegList(PathSegUndefinedRole); }
SVGTransformList.h 46 static SVGTransformList initialValue() { return SVGTransformList(); }
SVGLengthList.h 45 static SVGLengthList initialValue() { return SVGLengthList(); }
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
SoftTextDialogInput.java 11 public void requestDialog(int id, String title, String initialValue, SoftTextDialogInputListener listener);
  /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/chromium_org/third_party/WebKit/public/web/
WebFileChooserParams.h 50 // |initialValue| is a filename which the dialog should select by default.
52 WebString 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() {
  /libcore/benchmarks/src/benchmarks/regression/
ThreadLocalBenchmark.java 25 @Override protected char[] initialValue() {
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Platform.java 49 protected char[] initialValue() {
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Platform.java 49 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/chromium_org/third_party/icu/source/common/
utrie.c 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 829 milliseconds

1 2 3 4 5 6 7 8