/external/chromium_org/third_party/WebKit/public/web/ |
WebDateTimeChooserParams.h | 46 WebString currentValue;
|
/frameworks/base/core/java/android/content/ |
RestrictionEntry.java | 100 private String currentValue; 113 this.currentValue = selectedString; 160 return currentValue; 177 return Boolean.parseBoolean(currentValue); 186 currentValue = selectedString; 195 currentValue = Boolean.toString(state); 328 // Make sure that either currentValue matches or currentValues matches. 332 && currentValue != null && currentValue.equals(other.currentValue)) [all...] |
/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/chromium_org/third_party/WebKit/Source/platform/ |
DateTimeChooser.h | 55 String currentValue;
|
/external/chromium_org/third_party/WebKit/public/platform/mac/ |
WebThemeEngine.h | 68 int currentValue;
|
/external/chromium_org/third_party/angle/src/compiler/ |
ForLoopUnroll.h | 18 int currentValue; 27 // Update the info.currentValue for the next loop iteration.
|
ForLoopUnroll.cpp | 66 info.currentValue = info.initValue; 85 info.currentValue += info.incrementValue; 95 return (info.currentValue == info.stopValue); 97 return (info.currentValue != info.stopValue); 99 return (info.currentValue < info.stopValue); 101 return (info.currentValue > info.stopValue); 103 return (info.currentValue <= info.stopValue); 105 return (info.currentValue >= info.stopValue); 129 return i->currentValue;
|
/external/smack/src/org/xbill/DNS/ |
Address.java | 28 int currentValue; 32 currentValue = 0; 41 if (numDigits > 0 && currentValue == 0) 44 currentValue *= 10; 45 currentValue += (c - '0'); 47 if (currentValue > 255) 56 values[currentOctet++] = (byte) currentValue; 57 currentValue = 0; 68 values[currentOctet] = (byte) currentValue;
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
PingParser.java | 154 * @param currentValue The current value of the property we're parsing. 160 private int getValue(final String name, final int currentValue, final int minValue, 162 if (currentValue != NO_VALUE) { 176 * @param currentValue The current value of the property we're parsing. 180 private int getValue(final String name, final int currentValue) throws IOException { 181 return getValue(name, currentValue, 1, -1);
|
/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/emma/ant/ant14/com/vladium/emma/ant/ |
GenericCfg.java | 113 final String currentValue = genericSettings.getProperty (name); 114 if ((currentValue != null) && ! value.equals (currentValue))
|
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/ |
json_reader.cpp | 203 currentValue().setComment( commentsBefore_, commentBefore ); 223 currentValue() = true; 226 currentValue() = false; 229 currentValue() = Value(); 238 lastValue_ = ¤tValue(); 484 currentValue() = Value( objectValue ); 508 Value &value = currentValue()[ name ]; 541 currentValue() = Value( arrayValue ); 552 Value &value = currentValue()[ index++ ]; 626 currentValue() = -Value::LargestInt( value ) [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
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));
|
DeviceInfoResult.java | 390 String currentValue = mMetrics.get(metricEntry.getKey()); 391 if (keyCheckSet.contains(metricEntry.getKey()) && currentValue != null 392 && !metricEntry.getValue().equals(currentValue)) { 396 metricEntry.getKey(), currentValue, metricEntry.getValue()); 399 metricEntry.getValue(), currentValue));
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
IDBBindingUtilities.cpp | 238 v8::Handle<v8::Value> currentValue(rootValue); 241 v8::Handle<v8::Value> parentValue(currentValue); 242 if (!get(parentValue, keyPathElements[i], currentValue, isolate)) 246 return currentValue; 254 v8::Handle<v8::Value> currentValue(rootValue); 258 v8::Handle<v8::Value> parentValue(currentValue); 260 if (!get(parentValue, keyPathElement, currentValue, isolate)) 269 v8::Handle<v8::Value> currentValue(rootValue); 273 v8::Handle<v8::Value> parentValue(currentValue); 275 if (!get(parentValue, keyPathElement, currentValue, isolate)) [all...] |
/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/chromium_org/third_party/WebKit/Source/web/ |
ExternalDateTimeChooser.cpp | 116 webParams.currentValue = parameters.currentValue;
|
/external/chromium/webkit/glue/ |
webthemeengine_impl_mac.cc | 42 trackInfo.value = scrollbarInfo.currentValue;
|
/external/chromium_org/webkit/child/ |
webthemeengine_impl_mac.cc | 43 trackInfo.value = scrollbarInfo.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/chromium_org/third_party/WebKit/Source/core/html/forms/ |
StepRange.cpp | 76 Decimal StepRange::alignValueForStep(const Decimal& currentValue, const Decimal& newValue) const 82 return stepMismatch(currentValue) ? newValue : roundByStep(newValue, m_stepBase);
|
StepRange.h | 75 Decimal alignValueForStep(const Decimal& currentValue, const Decimal& newValue) const;
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
MediaControlElementTypes.h | 130 double currentValue() const { return m_currentValue; }
|
/frameworks/ex/common/tests/src/com/android/common/widget/ |
GroupingListAdapterTests.java | 58 String currentValue = cursor.getString(GROUPING_COLUMN_INDEX); 62 if (TextUtils.equals(value, currentValue)) { 70 currentValue = value;
|