HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 501 - 525 of 719) sorted by null

<<212223242526272829

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelinePanel.js 576 var newValue = !oldValue;
577 this._flameChartEnabledSetting.set(newValue);
578 button.toggled = newValue;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
attrib.c 494 #define TEST_AND_UPDATE(VALUE, NEWVALUE, ENUM) \
495 if ((VALUE) != (NEWVALUE)) { \
496 _mesa_set_enable( ctx, ENUM, (NEWVALUE) ); \
    [all...]
  /external/deqp/framework/referencerenderer/
rrFragmentOperations.cpp 43 // Return oldValue with the bits indicated by mask replaced by corresponding bits of newValue.
44 static inline int maskedBitReplace (int oldValue, int newValue, deUint32 mask)
46 return (oldValue & ~mask) | (newValue & mask);
    [all...]
  /external/mesa3d/src/mesa/main/
attrib.c 494 #define TEST_AND_UPDATE(VALUE, NEWVALUE, ENUM) \
495 if ((VALUE) != (NEWVALUE)) { \
496 _mesa_set_enable( ctx, ENUM, (NEWVALUE) ); \
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractHashedMap.java 441 * @param newValue the new value to store
443 protected void updateEntry(HashEntry<K, V> entry, V newValue) {
444 entry.setValue(newValue);
    [all...]
  /frameworks/base/docs/html/guide/topics/admin/
device-admin.jd 458 public boolean onPreferenceChange(Preference preference, Object newValue) {
459 if (super.onPreferenceChange(preference, newValue)) {
462 boolean value = (Boolean) newValue;
    [all...]
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.cpp 527 const int32_t newValue = enabled ? eventBit : 0;
529 if (newValue != oldValue) {
534 events = (events & ~eventBit) | newValue;
    [all...]
  /libcore/luni/src/main/java/java/text/
DecimalFormat.java     [all...]
  /prebuilts/sdk/13/
android.jar 
  /external/chromium_org/build/sanitizers/
tsan_suppressions.cc 194 "race:v8::internal::Interface::NewValue()::value_interface\n"
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 169 /// backingValue = [newValue retain]; // in general a +1 assign
  /frameworks/base/docs/html/training/displaying-bitmaps/
manage-memory.jd 178 BitmapDrawable oldValue, BitmapDrawable newValue) {
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListAdapter.java 501 MessageItem oldValue, MessageItem newValue) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fwpmu.h 238 const FWP_VALUE0 *newValue
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
RelativeLayoutRule.java 323 final @Nullable Boolean newValue) {
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
deltablue.js 865 function change(v, newValue) {
871 v.value = newValue;
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/
v8-deltablue.html 861 function change(v, newValue) {
867 v.value = newValue;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-deltablue.js 856 function change(v, newValue) {
862 v.value = newValue;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-deltablue.js 856 function change(v, newValue) {
862 v.value = newValue;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-deltablue.js 856 function change(v, newValue) {
862 v.value = newValue;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptDebugServer.cpp 631 v8::Handle<v8::Value> ScriptDebugServer::setFunctionVariableValue(v8::Handle<v8::Value> functionValue, int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue)
641 newValue
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/
SettingsScreen.js     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextBreakIteratorICU.cpp 605 static inline bool compareAndSwapNonSharedCharacterBreakIterator(TextBreakIterator* expected, TextBreakIterator* newValue)
611 nonSharedCharacterBreakIterator = newValue;
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
datefmt.h 681 * @param newvalue new value
688 UBool newvalue,
    [all...]

Completed in 795 milliseconds

<<212223242526272829