HomeSort by relevance Sort by last modified time
    Searched full:newval (Results 51 - 75 of 247) sorted by null

1 23 4 5 6 7 8 910

  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
SDL_epocevents.cpp 153 const TInt newval = array[k + 1];
154 if(oldval >= 0 && oldval < MAX_SCANCODE && newval >= 0 && newval < MAX_SCANCODE)
156 keymap[oldval] = temp[newval];
  /packages/apps/DeskClock/src/com/android/deskclock/
SnoozeLengthDialog.java 50 public void onValueChange(NumberPicker picker, int oldVal, int newVal) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 143 newval = x.value + 1
144 x.value = newval
148 self.assertEqual(x.label['text'], newval)
156 self.assertEqual(x.label['text'], newval)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 143 newval = x.value + 1
144 x.value = newval
148 self.assertEqual(x.label['text'], newval)
156 self.assertEqual(x.label['text'], newval)
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_aix.h 107 #define _MD_ATOMIC_SET(val, newval) _AIX_AtomicSet(val, newval)
_osf1.h 249 #define _MD_ATOMIC_SET(val, newval) __ATOMIC_EXCH_LONG(val, newval)
_solaris.h 178 NSPR_API(PRInt32) _MD_AtomicSet(PRInt32 *val, PRInt32 newval);
250 #define _MD_SET_CURRENT_THREAD(newval) \
252 thr_setspecific(threadid_key, (void *)newval); \
255 #define _MD_SET_CURRENT_CPU(newval) \
257 thr_setspecific(cpuid_key, (void *)newval); \
260 #define _MD_SET_LAST_THREAD(newval) \
262 thr_setspecific(last_thread_key, (void *)newval); \
_openvms.h 324 #define _MD_ATOMIC_SET(val, newval) __ATOMIC_EXCH_LONG(val, newval)
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
pratom.h 76 ** newval: The newvalue to assign to val
80 NSPR_API(PRInt32) PR_AtomicSet(PRInt32 *val, PRInt32 newval);
  /external/stlport/src/
cxa.c 24 #define atomic_compare_and_exchange_bool_acq(mem, newval, oldval) \
26 __typeof (*mem) __gnewval = (newval); \
  /frameworks/base/core/java/android/widget/
DatePicker.java 178 public void onValueChange(NumberPicker picker, int oldVal, int newVal) {
184 if (oldVal == maxDayOfMonth && newVal == 1) {
186 } else if (oldVal == 1 && newVal == maxDayOfMonth) {
189 mTempDate.add(Calendar.DAY_OF_MONTH, newVal - oldVal);
192 if (oldVal == 11 && newVal == 0) {
194 } else if (oldVal == 0 && newVal == 11) {
197 mTempDate.add(Calendar.MONTH, newVal - oldVal);
200 mTempDate.set(Calendar.YEAR, newVal);
  /ndk/sources/cxx-stl/stlport/src/
cxa.c 24 #define atomic_compare_and_exchange_bool_acq(mem, newval, oldval) \
26 __typeof (*mem) __gnewval = (newval); \
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 224 Value *NewVal;
227 NewVal = handleSpecial(Fun, *I);
229 NewVal = ConstantRead(Fun, *I);
231 if (NewVal) {
232 I->Val->replaceAllUsesWith(NewVal);
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 224 Value *NewVal;
227 NewVal = handleSpecial(Fun, *I);
229 NewVal = ConstantRead(Fun, *I);
231 if (NewVal) {
232 I->Val->replaceAllUsesWith(NewVal);
  /external/chromium_org/third_party/icu/source/i18n/
tmutfmt.cpp 795 MessageFormat** newVal = (MessageFormat**)uprv_malloc(kTotal*sizeof(MessageFormat*));
796 newVal[0] = (MessageFormat*)value[0]->clone();
797 newVal[1] = (MessageFormat*)value[1]->clone();
798 target->put(UnicodeString(*key), newVal, status);
800 delete newVal[0];
801 delete newVal[1];
802 uprv_free(newVal);
    [all...]
  /external/icu4c/i18n/
tmutfmt.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
history.js 111 var newVal = newState[curKey];
113 if (!oldVal || oldVal != newVal)
114 changedParams[curKey] = newVal;
  /external/chromium_org/third_party/sqlite/src/test/
minmax3.test 29 # to $newval. Also, the schema cookie is incremented.
31 proc set_file_format {newval} {
32 hexio_write test.db 44 [hexio_render_int32 $newval]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineInplaceLU.h 314 Scalar newVal = x->coeff(row);
320 newVal -= x->coeff(col++) * lIt.value();
324 x->coeffRef(row) = newVal;
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
SDL_epocevents.cpp 453 const TInt newval = array[k + 1]; local
454 if(oldval >= 0 && oldval < MAX_SCANCODE && newval >= 0 && newval < MAX_SCANCODE)
456 keymap[oldval] = temp[newval];
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
setNamedItemNS05.java 39 * and qualifiedName "dmstc:domestic" whose value is "newVal".
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree_util.tcl 66 set newval [format "%.${iPrec}f" [lindex $node $ii $jj]]
67 lset node $ii $jj $newval
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 126 Value *NewVal = BinaryOperator::Create(Instruction::Add, OldVal,
129 new StoreInst(NewVal, ElementPtr, InsertPos);
  /external/qemu/target-mips/
op_helper.c 823 uint32_t newval; local
830 newval = (env->mvp->CP0_MVPControl & ~mask) | (arg1 & mask);
834 env->mvp->CP0_MVPControl = newval;
840 uint32_t newval; local
844 newval = (env->CP0_VPEControl & ~mask) | (arg1 & mask);
851 env->CP0_VPEControl = newval;
857 uint32_t newval; local
864 newval = (env->CP0_VPEConf0 & ~mask) | (arg1 & mask);
868 env->CP0_VPEConf0 = newval;
874 uint32_t newval; local
910 uint32_t newval; local
934 uint32_t newval; local
946 uint32_t newval; local
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 72 Value *NewVal = SimplifyDemandedUseBits(U.get(), DemandedMask,
74 if (NewVal == 0) return false;
75 U = NewVal;
662 Instruction *NewVal = BinaryOperator::CreateLShr(
664 return InsertNewInstWith(NewVal, *I);
706 BinaryOperator *NewVal = BinaryOperator::CreateLShr(I->getOperand(0),
708 NewVal->setIsExact(cast<BinaryOperator>(I)->isExact());
709 return InsertNewInstWith(NewVal, *I);
    [all...]

Completed in 927 milliseconds

1 23 4 5 6 7 8 910