Home
last modified time | relevance | path

Searched refs:newvalue (Results 1 – 25 of 27) sorted by relevance

12

/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
DDateFormatSymbolsTest.java75 String[] newvalue = (String[])oldvalue.clone(); in testSetEras() local
76 newvalue[0] = newvalue[0] + "!"; in testSetEras()
77 dfs.setEras(newvalue); in testSetEras()
80 assertArraysEqual(newvalue, result); in testSetEras()
97 String[] newvalue = (String[])oldvalue.clone(); in testSetMonths() local
98 newvalue[0] = newvalue[0] + "!"; in testSetMonths()
99 dfs.setMonths(newvalue); in testSetMonths()
102 assertArraysEqual(newvalue, result); in testSetMonths()
119 String[] newvalue = (String[])oldvalue.clone(); in testSetShortMonths() local
120 newvalue[0] = newvalue[0] + "!"; in testSetShortMonths()
[all …]
/external/python/cpython2/Lib/test/
Dtest__osx_support.py81 newvalue = 'clang -pthreads'
82 _osx_support._save_modified_value(config_vars, cv, newvalue)
96 newvalue = 'clang -pthreads'
97 _osx_support._save_modified_value(config_vars, cv, newvalue)
106 newvalue = 'gcc-test -pthreads'
107 _osx_support._save_modified_value(config_vars, cv, newvalue)
/external/python/cpython3/Lib/test/
Dtest__osx_support.py80 newvalue = 'clang -pthreads'
81 _osx_support._save_modified_value(config_vars, cv, newvalue)
95 newvalue = 'clang -pthreads'
96 _osx_support._save_modified_value(config_vars, cv, newvalue)
105 newvalue = 'gcc-test -pthreads'
106 _osx_support._save_modified_value(config_vars, cv, newvalue)
Dtest_xmlrpc.py213 (newvalue,) = result
214 self.assertEqual(newvalue, sample)
215 self.assertIs(type(newvalue), bytes)
219 (newvalue,) = result
220 self.assertEqual(newvalue, sample)
221 self.assertIs(type(newvalue), xmlrpclib.Binary)
241 (newvalue,) = result
242 self.assertEqual(newvalue, value)
243 self.assertIs(type(newvalue), type(value))
/external/selinux/libsemanage/src/
Dbooleans_activedb.c98 int curvalue, newvalue; in bool_commit_list() local
110 newvalue = semanage_bool_get_value(booleans[i]); in bool_commit_list()
112 if (newvalue == curvalue) in bool_commit_list()
117 blist[bcount].value = newvalue; in bool_commit_list()
/external/ltp/testcases/kernel/syscalls/syslog/
Dsyslog0580 newvalue=`grep -c "syslogtst: info to console test." /var/log/messages`
82 if [ "x$(( $newvalue - $oldvalue ))" != "x1" ]; then
Dsyslog0290 newvalue=`grep -c "syslogtst: mail $level test" $MAILLOG`
91 diff=$(( $newvalue - $oldvalue ))
Dsyslog08101 newvalue=`grep -c "syslogtst: $facility info test." /var/log/messages`
102 diff=$(( $newvalue - $oldvalue ))
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_ioctl.h89 #define R200_SET_STATE( rmesa, ATOM, index, newvalue ) \ argument
92 uint32_t __dword = (newvalue); \
/external/python/cpython2/Lib/
D_osx_support.py120 def _save_modified_value(_config_vars, cv, newvalue): argument
124 if (oldvalue != newvalue) and (_INITPRE + cv not in _config_vars):
126 _config_vars[cv] = newvalue
Dcode.py15 def softspace(file, newvalue): argument
22 file.softspace = newvalue
/external/python/cpython3/Lib/
D_osx_support.py120 def _save_modified_value(_config_vars, cv, newvalue): argument
124 if (oldvalue != newvalue) and (_INITPRE + cv not in _config_vars):
126 _config_vars[cv] = newvalue
Dpdb.py332 newvalue = self._getval_except(expr)
336 if newvalue is not oldvalue and newvalue != oldvalue:
337 displaying[expr] = newvalue
339 (expr, newvalue, oldvalue))
/external/ply/ply/example/BASIC/
Dbasinterp.py298 newvalue = initval
309 newvalue = (
316 if not self.releval(('RELOP', relop, newvalue, finval)):
321 self.assign((loopvar, None, None), newvalue)
/external/icu/icu4c/source/test/cintltst/
Dcnumtst.c176 int32_t newvalue; in TestNumberFormat() local
748 newvalue=unum_getAttribute(def, attr); in TestNumberFormat()
749 newvalue=2; in TestNumberFormat()
750 unum_setAttribute(def, attr, newvalue); in TestNumberFormat()
757 newvalue=unum_getAttribute(def, attr); in TestNumberFormat()
758 newvalue=8; in TestNumberFormat()
759 unum_setAttribute(def, attr, newvalue); in TestNumberFormat()
766 newvalue=unum_getAttribute(def, attr); in TestNumberFormat()
767 newvalue=2; in TestNumberFormat()
768 unum_setAttribute(def, attr, newvalue); in TestNumberFormat()
[all …]
/external/pdfium/third_party/libtiff/
Dtif_open.c546 TIFFSetClientdata(TIFF* tif, thandle_t newvalue) argument
549 tif->tif_clientdata = newvalue;
/external/mesa3d/src/mesa/main/
Dtexcompress_s3tc_tmp.h298 GLint newvalue = testcolor[j][i] + blockerrlin[j][i] / nrcolor[j]; in fancybasecolorsearch() local
299 if (newvalue <= 0) in fancybasecolorsearch()
301 else if (newvalue >= 255) in fancybasecolorsearch()
303 else testcolor[j][i] = newvalue; in fancybasecolorsearch()
/external/python/cpython2/Modules/
Ditertoolsmodule.c77 PyObject *newvalue, *newkey, *oldvalue; in groupby_step() local
79 newvalue = PyIter_Next(gbo->it); in groupby_step()
80 if (newvalue == NULL) in groupby_step()
84 newkey = newvalue; in groupby_step()
85 Py_INCREF(newvalue); in groupby_step()
87 newkey = PyObject_CallFunctionObjArgs(gbo->keyfunc, newvalue, NULL); in groupby_step()
89 Py_DECREF(newvalue); in groupby_step()
95 gbo->currvalue = newvalue; in groupby_step()
/external/cldr/tools/java/org/unicode/cldr/test/
DDisplayAndInputProcessor.java320 String newvalue = normalizeMalayalam(value); in processInput() local
321 …DEBUG_DAIP) System.out.println("DAIP: Normalized Malayalam '" + value + "' to '" + newvalue + "'"); in processInput()
322 value = newvalue; in processInput()
/external/icu/icu4c/source/i18n/unicode/
Ddatefmt.h821 UBool newvalue,
/external/python/cpython3/Modules/
Ditertoolsmodule.c79 PyObject *newvalue, *newkey, *oldvalue; in groupby_step() local
81 newvalue = PyIter_Next(gbo->it); in groupby_step()
82 if (newvalue == NULL) in groupby_step()
86 newkey = newvalue; in groupby_step()
87 Py_INCREF(newvalue); in groupby_step()
89 newkey = PyObject_CallFunctionObjArgs(gbo->keyfunc, newvalue, NULL); in groupby_step()
91 Py_DECREF(newvalue); in groupby_step()
97 gbo->currvalue = newvalue; in groupby_step()
/external/python/cpython3/Lib/email/
D_header_value_parser.py1008 newvalue = value.lstrip()
1009 fws = WhiteSpaceTerminal(value[:len(value)-len(newvalue)], 'fws')
1010 return fws, newvalue
/external/python/cpython3/Doc/library/
Dunittest.mock.rst125 >>> with patch.dict(foo, {'newkey': 'newvalue'}, clear=True):
126 ... assert foo == {'newkey': 'newvalue'}
1319 >>> with patch.dict(foo, {'newkey': 'newvalue'}):
1320 ... assert foo == {'newkey': 'newvalue'}
1325 >>> with patch.dict('os.environ', {'newkey': 'newvalue'}):
1328 newvalue
Dunittest.mock-examples.rst414 >>> with patch.dict(foo, {'newkey': 'newvalue'}, clear=True):
415 ... assert foo == {'newkey': 'newvalue'}
/external/python/cpython2/Doc/library/
Dos.rst1457 .. function:: stat_float_times([newvalue])
1460 If *newvalue* is ``True``, future calls to :func:`~os.stat` return floats, if it is
1461 ``False``, future calls return ints. If *newvalue* is omitted, return the

12