/developers/samples/android/content/multiuser/AppRestrictions/Application/src/main/java/com/example/android/apprestrictions/ |
CustomRestrictionsFragment.java | 181 public boolean onPreferenceChange(Preference preference, Object newValue) { 183 mBooleanEntry.setSelectedState((Boolean) newValue); 185 mChoiceEntry.setSelectedString((String) newValue); 187 String[] selectedStrings = new String[((Set<String>)newValue).size()]; 189 for (String value : (Set<String>) newValue) {
|
/development/samples/browseable/AppRestrictions/src/com.example.android.apprestrictions/ |
CustomRestrictionsFragment.java | 181 public boolean onPreferenceChange(Preference preference, Object newValue) { 183 mBooleanEntry.setSelectedState((Boolean) newValue); 185 mChoiceEntry.setSelectedString((String) newValue); 187 String[] selectedStrings = new String[((Set<String>)newValue).size()]; 189 for (String value : (Set<String>) newValue) {
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Attr.cpp | 180 AtomicString newValue = valueBuilder.toAtomicString(); 182 m_element->willModifyAttribute(qualifiedName(), value(), newValue); 185 elementAttribute().setValue(newValue); 187 m_standaloneValueOrAttachedLocalName = newValue; 190 m_element->attributeChanged(qualifiedName(), newValue);
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
StepRange.cpp | 74 Decimal StepRange::alignValueForStep(const Decimal& currentValue, const Decimal& newValue) const 77 if (newValue >= tenPowerOf21) 78 return newValue; 80 return stepMismatch(currentValue) ? newValue : roundByStep(newValue, m_stepBase);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/ |
feedWatch.emf.properties | 43 # -oldvalue "2006-05-04T12:14:33Z" -newvalue "2006-05-11T12:14:33Z" -debug 0"/> 61 # feedWatchAction.NewValue.0 - The changed value of the node you asked for, from the latest version of the feed; 76 # If the node is found and the feed has been changed, the property feedWatchAction.NewValue.0 77 # (and/or feedWatchAction.NewValue.1, feedWatchAction.NewValue.2, etc.) will be set to the new changed value.
|
feedWatch.uml2.properties | 40 # -oldvalue "2006-05-04T12:14:33Z" -newvalue "2006-05-11T12:14:33Z" -debug 0"/> 58 # feedWatchAction.NewValue.0 - The changed value of the node you asked for, from the latest version of the feed; 73 # If the node is found and the feed has been changed, the property feedWatchAction.NewValue.0 74 # (and/or feedWatchAction.NewValue.1, feedWatchAction.NewValue.2, etc.) will be set to the new changed value.
|
/external/icu/icu4c/source/common/ |
sharedptr.h | 87 SharedPtr<T> newValue(other); 88 swap(newValue); 111 SharedPtr<T> newValue(adopted); 112 if (adopted != NULL && newValue.ptr == NULL) { 116 swap(newValue);
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
PreferenceTest.java | 216 for(Integer newValue : values) { 217 assertThat(preference.callChangeListener(newValue), equalTo(true)); 218 assertThat(shadow.getCallChangeListenerValue(), sameInstance((Object)newValue)); 262 public boolean callChangeListener(Object newValue) { 263 return super.callChangeListener(newValue);
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
RespondViaSmsSettings.java | 102 public boolean onPreferenceChange(Preference preference, Object newValue) { 105 Log.d(this, " newValue = '%s'", newValue); 111 // Preference itself gets updated, so we need to use newValue here 113 pref.setTitle((String) newValue);
|
/development/samples/ApiDemos/src/com/example/android/apis/preference/ |
MyPreference.java | 57 int newValue = mClickCounter + 1; 60 if (!callChangeListener(newValue)) { 66 mClickCounter = newValue;
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebStorageArea.h | 66 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& pageUrl, Result& result) 69 setItem(key, newValue, pageUrl, result, unused); 92 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL&, Result&, WebString& oldValue) { }
|
/external/chromium_org/ui/android/java/src/org/chromium/ui/ |
ColorPickerAdvancedComponent.java | 74 * @param newValue The value to give the component. 76 public void setValue(float newValue) { 77 mSeekBar.setProgress((int) newValue);
|
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/ |
ConcurrentHashMap.java | 73 public boolean replace(K key, V oldValue, V newValue) { 74 if (oldValue == null || newValue == null) { 77 put(key, newValue);
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXGenericToNVVM.cpp | 213 Value *NewValue = C; 225 NewValue = getOrInsertCVTA(M, F, I->second, Builder); 232 NewValue = remapConstantVectorOrConstantAggregate(M, F, C, Builder); 237 NewValue = remapConstantExpr(M, F, cast<ConstantExpr>(C), Builder); 240 ConstantToValueMap[C] = NewValue; 241 return NewValue; 267 Value *NewValue = UndefValue::get(C->getType()); 271 NewValue = Builder.CreateInsertElement(NewValue, NewOperands[i], Idx); 275 NewValue [all...] |
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
getAttributeNS04.java | 41 * the string "NewValue" since the attribute had a specified value. 82 testAddr.setAttributeNS(namespaceURI, qualifiedName, "NewValue"); 84 assertEquals("throw_Equals", "NewValue", attrValue);
|
setAttributeNS05.java | 43 * The new attribute "<newValue>" contains markup and therefore is escaped 83 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "<newValue>"); 85 assertEquals("throw_Equals", "<newValue>", resultAttr);
|
setNamedItemNS03.java | 39 * "prefix:newAttr" and value "newValue". 81 arg.setNodeValue("newValue"); 88 assertEquals("throw_Equals", "newValue", value);
|
/external/chromium_org/third_party/WebKit/Source/core/storage/ |
StorageArea.cpp | 158 void StorageArea::dispatchLocalStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, WebStorageArea* sourceAreaInstance, bool originatedInProcess) 169 frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage)); 171 InspectorInstrumentation::didDispatchDOMStorageEvent(*it, key, oldValue, newValue, LocalStorage, securityOrigin); 188 void StorageArea::dispatchSessionStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, const WebStorageNamespace& sessionNamespace, WebStorageArea* sourceAreaInstance, bool originatedInProcess) 200 frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage)); 202 InspectorInstrumentation::didDispatchDOMStorageEvent(page, key, oldValue, newValue, SessionStorage, securityOrigin);
|
/external/clang/lib/ASTMatchers/Dynamic/ |
VariantValue.cpp | 218 void VariantValue::setUnsigned(unsigned NewValue) { 221 Value.Unsigned = NewValue; 233 void VariantValue::setString(const std::string &NewValue) { 236 Value.String = new std::string(NewValue); 248 void VariantValue::setMatcher(const VariantMatcher &NewValue) { 251 Value.Matcher = new VariantMatcher(NewValue);
|
/frameworks/rs/scriptc/ |
rs_atomic.rsh | 153 * If the value at addr matches compareValue then newValue is written. 157 * @param newValue The value to write if the test passes. 162 rsAtomicCas(volatile int32_t* addr, int32_t compareValue, int32_t newValue); 167 * If the value at addr matches compareValue then newValue is written. 171 * @param newValue The value to write if the test passes. 176 rsAtomicCas(volatile uint32_t* addr, uint32_t compareValue, uint32_t newValue);
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastSettings.java | 126 public boolean onPreferenceChange(Preference pref, Object newValue) { 132 ((Boolean) newValue).booleanValue(); 160 public boolean onPreferenceChange(Preference pref, Object newValue) { 162 final int idx = listPref.findIndexOfValue((String) newValue); 181 public boolean onPreferenceChange(Preference pref, Object newValue) { 183 final int idx = listPref.findIndexOfValue((String) newValue);
|
/packages/apps/Settings/src/com/android/settings/notification/ |
AppNotificationSettings.java | 167 public boolean onPreferenceChange(Preference preference, Object newValue) { 168 final boolean block = (Boolean) newValue; 175 public boolean onPreferenceChange(Preference preference, Object newValue) { 176 final boolean priority = (Boolean) newValue; 184 public boolean onPreferenceChange(Preference preference, Object newValue) { 185 final boolean sensitive = (Boolean) newValue;
|
/prebuilts/sdk/renderscript/include/ |
rs_atomic.rsh | 153 * If the value at addr matches compareValue then newValue is written. 157 * @param newValue The value to write if the test passes. 162 rsAtomicCas(volatile int32_t* addr, int32_t compareValue, int32_t newValue); 167 * If the value at addr matches compareValue then newValue is written. 171 * @param newValue The value to write if the test passes. 176 rsAtomicCas(volatile uint32_t* addr, uint32_t compareValue, uint32_t newValue);
|
/external/chromium_org/extensions/browser/value_store/ |
value_store_change_unittest.cc | 85 .Set("newValue", v2)) 88 .Set("newValue", v4))
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXScrollbar.cpp | 105 float newValue = value * m_scrollbar->maximum(); 106 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
|