HomeSort by relevance Sort by last modified time
    Searched full:initialvalue (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /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/jsilver/src/com/google/clearsilver/jsilver/output/
ThreadLocalOutputBufferProvider.java 29 protected StringBuilder initialValue() {
34 protected Boolean initialValue() {
  /external/icu4c/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...]
utrie2_builder.c 109 utrie2_open(uint32_t initialValue, uint32_t errorValue, UErrorCode *pErrorCode) {
131 trie->initialValue=initialValue;
138 newTrie->initialValue=initialValue;
151 newTrie->data[i]=initialValue;
157 newTrie->data[i]=initialValue;
229 utrie2_set32(trie, i, initialValue, pErrorCode);
269 trie->initialValue=other->initialValue;
    [all...]
utrie2.cpp 210 trie->initialValue=trie->index[trie->dataNullOffset];
216 trie->initialValue=trie->data32[trie->dataNullOffset];
232 uint32_t initialValue, uint32_t errorValue,
287 trie->initialValue=initialValue;
328 *dest16++=(uint16_t)initialValue;
335 *dest16++=(uint16_t)initialValue;
344 *p++=initialValue;
351 *p++=initialValue;
518 uint32_t value, prevValue, initialValue;
    [all...]
  /external/webrtc/src/system_wrappers/source/
atomic32_linux.h 26 inline Atomic32Impl(WebRtc_Word32 initialValue);
48 inline Atomic32Impl::Atomic32Impl(WebRtc_Word32 initialValue)
56 *_value = initialValue;
atomic32_mac.h 25 inline Atomic32Impl(WebRtc_Word32 initialValue);
47 inline Atomic32Impl::Atomic32Impl(WebRtc_Word32 initialValue)
56 *_value = initialValue;
atomic32.cc 24 Atomic32Wrapper::Atomic32Wrapper(WebRtc_Word32 initialValue)
25 : _impl(*new Atomic32Impl(initialValue))
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicBoolean.java 39 * @param initialValue the initial value
41 public AtomicBoolean(boolean initialValue) {
42 value = initialValue ? 1 : 0;
AtomicReference.java 36 * @param initialValue the initial value
38 public AtomicReference(V initialValue) {
39 value = initialValue;
  /external/webkit/Source/WebKit/chromium/public/
WebFileChooserParams.h 47 // |initialValue| is a filename which the dialog should select by default.
49 WebString initialValue;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
InheritableThreadLocalTest.java 35 protected String initialValue() {
  /external/javassist/src/main/javassist/runtime/
Cflow.java 34 protected synchronized Object initialValue() {
  /external/webkit/LayoutTests/storage/domstorage/localstorage/
private-browsing-affects-storage.html 25 localStorage.setItem("testItem", "InitialValue");
  /external/webkit/LayoutTests/storage/domstorage/sessionstorage/
private-browsing-affects-storage.html 25 sessionStorage.setItem("testItem", "InitialValue");
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerX86.h 139 DataLabelPtr moveWithPatch(TrustedImmPtr initialValue, RegisterID dest)
141 m_assembler.movl_i32r(initialValue.asIntptr(), dest);
159 DataLabelPtr storePtrWithPatch(TrustedImmPtr initialValue, ImplicitAddress address)
161 m_assembler.movl_i32m(initialValue.asIntptr(), address.offset, address.base);
  /external/webkit/Source/WebCore/svg/
SVGLengthList.h 42 static SVGLengthList initialValue() { return SVGLengthList(); }
SVGNumberList.h 42 static SVGNumberList initialValue() { return SVGNumberList(); }
SVGPathSegList.h 52 static SVGPathSegList initialValue() { return SVGPathSegList(PathSegUndefinedRole); }
SVGPointList.h 44 static SVGPointList initialValue() { return SVGPointList(); }
SVGRect.h 32 static FloatRect initialValue() { return FloatRect(); }
SVGTransformList.h 46 static SVGTransformList initialValue() { return SVGTransformList(); }
  /external/webrtc/src/system_wrappers/interface/
atomic32_wrapper.h 24 Atomic32Wrapper(WebRtc_Word32 initialValue = 0);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunner.java 139 args = {"message", "initialValue", "title", "okTitle", "cancelTitle"},
154 String initialValue = ap.getString(1, "");
157 return input(message, initialValue, title);
234 * @param initialValue the initial value to display in the dialog
238 public static String input(String message, String initialValue, String title) {
240 JOptionPane.QUESTION_MESSAGE, null, null, initialValue);

Completed in 466 milliseconds

1 2 3 4