/external/webkit/Source/WebCore/svg/ |
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(); }
|
SVGAngle.h | 64 static SVGAngle initialValue() { return SVGAngle(); }
|
SVGPreserveAspectRatio.h | 91 static SVGPreserveAspectRatio initialValue() { return SVGPreserveAspectRatio(); }
|
/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);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
ThreadLocalTest.java | 37 protected String initialValue() { 62 protected Object initialValue() {
|
/external/proguard/src/proguard/optimize/info/ |
FieldOptimizationInfo.java | 48 value = initialValue(field.getDescriptor(clazz)); 118 private Value initialValue(String type)
|
/external/icu4c/test/cintltst/ |
trie2test.c | 113 uint32_t initialValue, errorValue; 121 countSpecials=getSpecialValues(checkRanges, countCheckRanges, &initialValue, &errorValue); 224 value=initialValue; 375 uint32_t initialValue, errorValue; 381 countSpecials=getSpecialValues(checkRanges, countCheckRanges, &initialValue, &errorValue); 801 uint32_t initialValue, errorValue; 810 getSpecialValues(checkRanges, countCheckRanges, &initialValue, &errorValue); 811 trie=utrie2_open(initialValue, errorValue, &errorCode); [all...] |
trietest.c | 197 value=trie->initialValue; 205 value=trie->initialValue; 817 return -1; /* never get non-initialValue data for supplementary code points */ 828 uint32_t value, initialValue, leadUnitValue; 831 initialValue=0x313; 834 initialValue=0x01234567; 839 utrie_unserializeDummy(&trie, mem, sizeof(mem), initialValue, leadUnitValue, make16BitTrie, &errorCode); 846 /* test that all code points have initialValue */ 853 if(value!=initialValue) { 855 make16BitTrie ? "16" : "32", (long)c, (long)value, (long)initialValue); [all...] |
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/ |
InputSystemJme.java | 256 String initialValue = textField.getText();
257 if (initialValue == null) {
258 initialValue = "";
261 softTextDialogInput.requestDialog(SoftTextDialogInput.TEXT_ENTRY_DIALOG, "Enter Text", initialValue, new SoftTextDialogInputListener() {
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldInheritableThreadLocalTest.java | 55 protected String initialValue() {
|
/external/smali/baksmali/src/main/resources/templates/templates/ |
baksmali.stg | 83 field(AccessFlags, FieldName, FieldType, Annotations, InitialValue, Comments) ::= 88 .field <AccessFlags: {<it> }><FieldName>:<FieldType><if(InitialValue)> = <InitialValue><endif>
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicInteger.java | 42 * @param initialValue the initial value 44 public AtomicInteger(int initialValue) { 45 value = initialValue;
|
AtomicLong.java | 56 * @param initialValue the initial value 58 public AtomicLong(long initialValue) { 59 value = initialValue;
|
/libcore/luni/src/main/java/java/lang/ |
ThreadLocal.java | 46 * {@link #initialValue()}. 74 protected T initialValue() { 97 * {@code #get()} will call {@link #initialValue()} and create a new 430 Object value = key.initialValue(); 442 // The table changed during initialValue(). 460 Object value = key.initialValue(); 489 // The table changed during initialValue().
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/ |
AddonSitesDialog.java | 318 final String initialValue = !isEdit || sel.isEmpty() ? null : 321 if (isEdit && initialValue == null) { 330 initialValue, 349 if (isEdit && newText.equals(initialValue)) { 370 if (!url.equals(initialValue)) { 371 if (isEdit && initialValue != null) { 375 if (initialValue.equals(source.getUrl())) {
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
AtomicDouble.java | 68 * @param initialValue the initial value 70 public AtomicDouble(double initialValue) { 71 value = doubleToRawLongBits(initialValue);
|
/external/webkit/Source/JavaScriptCore/assembler/ |
MacroAssemblerX86_64.h | 418 DataLabelPtr moveWithPatch(TrustedImmPtr initialValue, RegisterID dest) 420 m_assembler.movq_i64r(initialValue.asIntptr(), dest); 436 DataLabelPtr storePtrWithPatch(TrustedImmPtr initialValue, ImplicitAddress address) 438 DataLabelPtr label = moveWithPatch(initialValue, scratchRegister);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
ListSetTester.java | 66 E initialValue = getList().get(index); 68 initialValue, getList().set(index, newValue));
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
MoreExecutorsTest.java | 53 protected Integer initialValue() { 99 protected Integer initialValue() {
|
/external/icu4c/common/ |
propsvec.h | 54 * Special pseudo code points for storing the initialValue and the errorValue, 161 int32_t initialValue;
|