HomeSort by relevance Sort by last modified time
    Searched refs:newValue (Results 276 - 300 of 508) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/wtf/
ListHashSet.h 142 AddResult insertBefore(const ValueType& beforeValue, const ValueType& newValue);
764 typename ListHashSet<T, inlineCapacity, U>::AddResult ListHashSet<T, inlineCapacity, U>::insertBefore(iterator it, const ValueType& newValue)
766 typename ImplType::AddResult result = m_impl.template add<BaseTranslator>(newValue, m_allocator.get());
773 typename ListHashSet<T, inlineCapacity, U>::AddResult ListHashSet<T, inlineCapacity, U>::insertBefore(const ValueType& beforeValue, const ValueType& newValue)
775 return insertBefore(find(beforeValue), newValue);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 160 final @Nullable String valueId, final @Nullable Boolean newValue) {
247 value = newValue ? "true" : ""; //$NON-NLS-1$ //$NON-NLS-2$
249 value = newValue ? "false" : "";//$NON-NLS-1$ //$NON-NLS-2$
262 if (newValue) {
287 value = newValue ? valueId : ""; //$NON-NLS-1$
    [all...]
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 808 char[] newValue = new char[count];
809 System.arraycopy(value, 0, newValue, 0, count);
810 value = newValue;
  /packages/services/Telephony/src/com/android/phone/sip/
SipEditor.java 433 public boolean onPreferenceChange(Preference pref, Object newValue) {
444 String value = (newValue == null) ? "" : newValue.toString();
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 622 final String newValue = (args == null)
642 values.put(Settings.NameValueTable.VALUE, newValue);
644 if (LOCAL_LOGV) Slog.v(TAG, "call_put(system:" + request + "=" + newValue + ") for " + callingUser);
647 if (LOCAL_LOGV) Slog.v(TAG, "call_put(secure:" + request + "=" + newValue + ") for " + callingUser);
650 if (LOCAL_LOGV) Slog.v(TAG, "call_put(global:" + request + "=" + newValue + ") for " + callingUser);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebSettingsImpl.cpp 570 void WebSettingsImpl::setValidationMessageTimerMagnification(int newValue)
572 m_settings->setValidationMessageTimerMagnification(newValue);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
SmallSortedMap.java 430 public V setValue(V newValue) {
433 this.value = newValue;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
  /external/guava/guava/src/com/google/common/collect/
AbstractBiMap.java 120 K key, boolean containedKey, V oldValue, V newValue) {
124 inverse.delegate.put(newValue, key);
MapMaker.java     [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultiset.java 152 public boolean compareAndSet(T expected, T newValue) {
154 value = newValue;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextView.java 128 private void sendBeforeTextChanged(CharSequence newValue) {
130 watcher.beforeTextChanged(this.text, 0, this.text.length(), newValue.length());
  /libcore/luni/src/main/java/java/text/
DecimalFormat.java     [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MessagingPreferenceActivity.java 402 public boolean onPreferenceChange(Preference preference, Object newValue) {
405 setRingtoneSummary((String)newValue);
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/include/gcc/darwin/4.2/
ppc_intrinsics.h 943 #define __mtfsf(mask, newValue) \
944 __asm__ volatile ("mtfsf %0, %1" : : "n" (mask), "f" (newValue))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
ProjectState.java 612 * @param newValue the new value to set.
615 private IStatus replaceLibraryProperty(String oldValue, String newValue) {
629 workingCopy.setProperty(propName, newValue);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMAgent.js 1041 * @param {string} newValue
1043 _characterDataModified: function(nodeId, newValue)
1046 node._nodeValue = newValue;
1105 * @param {number} newValue
1107 _childNodeCountUpdated: function(nodeId, newValue)
1110 node._childNodeCount = newValue;
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
ucal.h 829 * @param newValue The new value of attr.
836 int32_t newValue);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MinMaxPriorityQueueTest.java 798 int newValue) {
799 if (replica.containsKey(newValue)) {
800 replica.get(newValue).incrementAndGet();
802 replica.put(newValue, new AtomicInteger(1));
  /frameworks/base/core/java/android/transition/
Transition.java     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapActivity.java 271 public boolean onPreferenceChange(Preference preference, Object newValue) {
  /external/chromium_org/third_party/icu/source/common/
normalizer2impl.cpp     [all...]
  /external/icu4c/common/
normalizer2impl.cpp     [all...]
  /frameworks/base/core/java/android/os/
StrictMode.java     [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 554 final boolean replace(K key, int hash, V oldValue, V newValue) {
565 e.value = newValue;
    [all...]

Completed in 3601 milliseconds

<<11121314151617181920>>