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

1 2 3 4 5

  /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/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/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/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/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/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))
  /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;
  /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/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/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(); }

Completed in 921 milliseconds

1 2 3 4 5