/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/ |
D | DateFormatSymbolsTest.java | 75 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/ |
D | test__osx_support.py | 81 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/ |
D | test__osx_support.py | 80 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)
|
D | test_xmlrpc.py | 213 (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/ |
D | booleans_activedb.c | 98 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/ |
D | syslog05 | 80 newvalue=`grep -c "syslogtst: info to console test." /var/log/messages` 82 if [ "x$(( $newvalue - $oldvalue ))" != "x1" ]; then
|
D | syslog02 | 90 newvalue=`grep -c "syslogtst: mail $level test" $MAILLOG` 91 diff=$(( $newvalue - $oldvalue ))
|
D | syslog08 | 101 newvalue=`grep -c "syslogtst: $facility info test." /var/log/messages` 102 diff=$(( $newvalue - $oldvalue ))
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_ioctl.h | 89 #define R200_SET_STATE( rmesa, ATOM, index, newvalue ) \ argument 92 uint32_t __dword = (newvalue); \
|
/external/python/cpython2/Lib/ |
D | _osx_support.py | 120 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
|
D | code.py | 15 def softspace(file, newvalue): argument 22 file.softspace = newvalue
|
/external/python/cpython3/Lib/ |
D | _osx_support.py | 120 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
|
D | pdb.py | 332 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/ |
D | basinterp.py | 298 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/ |
D | cnumtst.c | 176 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/ |
D | tif_open.c | 546 TIFFSetClientdata(TIFF* tif, thandle_t newvalue) argument 549 tif->tif_clientdata = newvalue;
|
/external/mesa3d/src/mesa/main/ |
D | texcompress_s3tc_tmp.h | 298 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/ |
D | itertoolsmodule.c | 77 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/ |
D | DisplayAndInputProcessor.java | 320 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/ |
D | datefmt.h | 821 UBool newvalue,
|
/external/python/cpython3/Modules/ |
D | itertoolsmodule.c | 79 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.py | 1008 newvalue = value.lstrip() 1009 fws = WhiteSpaceTerminal(value[:len(value)-len(newvalue)], 'fws') 1010 return fws, newvalue
|
/external/python/cpython3/Doc/library/ |
D | unittest.mock.rst | 125 >>> 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
|
D | unittest.mock-examples.rst | 414 >>> with patch.dict(foo, {'newkey': 'newvalue'}, clear=True): 415 ... assert foo == {'newkey': 'newvalue'}
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 1457 .. 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
|