HomeSort by relevance Sort by last modified time
    Searched defs:currentValue (Results 1 - 25 of 66) sorted by null

1 2 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
FlagValueCellEditor.java 41 String currentValue = (String)getValue();
42 return mUiFlagAttribute.showDialog(cellEditorWindow.getShell(), currentValue);
ResourceValueCellEditor.java 42 String currentValue = (String)getValue();
43 return mUiResourceAttribute.showDialog(cellEditorWindow.getShell(), currentValue);
  /external/webkit/Source/WebCore/html/parser/
HTMLEntitySearch.h 42 UChar32 currentValue() const { return m_currentValue; }
  /external/emma/ant/ant14/com/vladium/emma/ant/
GenericCfg.java 113 final String currentValue = genericSettings.getProperty (name);
114 if ((currentValue != null) && ! value.equals (currentValue))
  /external/webkit/Source/WebKit/chromium/public/mac/
WebThemeEngine.h 68 int currentValue;
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
ExpressionEvaluator.java 62 private Value currentValue;
82 assert currentValue == null;
85 Value result = currentValue;
86 currentValue = null;
245 currentValue = value;
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
AreaCodeMap.java 183 int currentValue = areaCodeMapStorage.getPrefix(current);
184 if (currentValue == value) {
186 } else if (currentValue > value) {
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 250 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
256 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
  /external/webkit/Source/WebCore/html/
HTMLTextAreaElement.cpp 97 String currentValue = value();
98 if (currentValue == defaultValue())
100 result = currentValue;
NumberInputType.cpp 222 String currentValue = element()->value();
223 if (currentValue.isEmpty())
224 return currentValue;
227 parseToDoubleForNumberTypeWithDecimalPlaces(currentValue, &doubleValue, &decimalPlace);
229 return localized.isEmpty() ? currentValue : localized;
InputType.cpp 142 String currentValue = element()->value();
143 if (currentValue == element()->defaultValue())
145 result = currentValue;
  /external/webkit/Source/WebCore/svg/
SVGPathBlender.cpp 63 float currentValue = blendAnimatedFloat(fromValue, toValue, m_progress);
64 return m_toMode == AbsoluteCoordinates ? animValue + currentValue : animValue - currentValue;
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DeviceInfoResult.java 375 String currentValue = mMetrics.get(metricEntry.getKey());
376 if (keyCheckSet.contains(metricEntry.getKey()) && currentValue != null
377 && !metricEntry.getValue().equals(currentValue)) {
381 metricEntry.getKey(), currentValue, metricEntry.getValue());
384 metricEntry.getValue(), currentValue));
TestPackageResult.java 248 String currentValue = mMetrics.get(metricEntry.getKey());
249 if (keyCheckSet.contains(metricEntry.getKey()) && currentValue != null
250 && !metricEntry.getValue().equals(currentValue)) {
254 metricEntry.getKey(), currentValue, metricEntry.getValue());
257 metricEntry.getValue(), currentValue));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrintGraph.java 231 double currentValue = currentBuildResults.getValue();
278 if (baselineValue < currentValue) {
289 double currentGraphValue = kind == TIME_LOG ? Math.log(currentValue) : currentValue;
296 String tooltip = "Time for current build "+currentBuildResults.getName()+": "+Util.timeString((long)currentValue);
316 tooltip.append(Util.timeString((long)currentValue));
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
MotionTrack.java 64 protected float currentValue;
267 control.currentValue = currentValue;
299 return currentValue;
306 public void setCurrentValue(float currentValue) {
307 this.currentValue = currentValue;
  /external/webkit/Source/WebCore/html/shadow/
MediaControlElements.h 419 float currentValue() const { return m_currentValue; }
  /libcore/luni/src/main/java/java/text/
AttributedString.java 206 private Object currentValue(List<Range> ranges) {
228 return currentValue(ranges);
240 Object value = currentValue(entry.getValue());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
ConfigResults.java 507 double currentValue = this.current.getValue();
508 this.delta = (currentValue - baselineValue) / baselineValue;
  /external/webkit/Source/WebCore/platform/chromium/
PlatformBridge.h 393 int currentValue;
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapeBrowserFuncs.cpp 177 String currentValue = headerFields.get(lastHeaderKey);
180 headerFields.set(lastHeaderKey, currentValue + newValue);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 361 String currentValue = (String) property.getValue();
362 dlg.setCurrentResource(currentValue);
382 String currentValue = (String) property.getValue();
385 type, currentValue, null /* validator */);
  /external/webkit/Source/WebCore/plugins/
PluginView.cpp     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 597 String compareValue = "", currentValue;
610 currentValue = nameList.get(pos);
611 if (D) Log.d(TAG, "currentValue=" + currentValue);
612 if (currentValue.startsWith(compareValue)) {
615 + currentValue + "\"" + "/>");
628 currentValue = nameList.get(pos);
629 if (D) Log.d(TAG, "currentValue=" + currentValue);
630 if (searchValue == null || currentValue.startsWith(compareValue))
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 315 int currentValue = stack.get(i).mChars[0];
316 if (currentValue <= lastValue)
319 lastValue = currentValue;

Completed in 1578 milliseconds

1 2 3