Home
last modified time | relevance | path

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

/third_party/python/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.py217 (newvalue,) = result
218 self.assertEqual(newvalue, sample)
219 self.assertIs(type(newvalue), bytes)
223 (newvalue,) = result
224 self.assertEqual(newvalue, sample)
225 self.assertIs(type(newvalue), xmlrpclib.Binary)
245 (newvalue,) = result
246 self.assertEqual(newvalue, value)
247 self.assertIs(type(newvalue), type(value))
/third_party/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 ))
/third_party/python/Lib/
D_osx_support.py143 def _save_modified_value(_config_vars, cv, newvalue): argument
147 if (oldvalue != newvalue) and (_INITPRE + cv not in _config_vars):
149 _config_vars[cv] = newvalue
Dpdb.py333 newvalue = self._getval_except(expr)
337 if newvalue is not oldvalue and newvalue != oldvalue:
338 displaying[expr] = newvalue
340 (expr, newvalue, oldvalue))
/third_party/icu/icu4c/source/test/cintltst/
Dcnumtst.c195 int32_t newvalue; in TestNumberFormat() local
767 newvalue=unum_getAttribute(def, attr); in TestNumberFormat()
768 newvalue=2; in TestNumberFormat()
769 unum_setAttribute(def, attr, newvalue); in TestNumberFormat()
776 newvalue=unum_getAttribute(def, attr); in TestNumberFormat()
777 newvalue=8; in TestNumberFormat()
778 unum_setAttribute(def, attr, newvalue); in TestNumberFormat()
785 newvalue=unum_getAttribute(def, attr); in TestNumberFormat()
786 newvalue=2; in TestNumberFormat()
787 unum_setAttribute(def, attr, newvalue); in TestNumberFormat()
[all …]
/third_party/cups-filters/filter/foomatic-rip/
Doptions.c1022 char *newvalue; in option_set_value() local
1026 newvalue = get_valid_value_string(opt, value); in option_set_value()
1027 if (!newvalue) in option_set_value()
1033 if (startswith(newvalue, "From") && (fromopt = find_option(&newvalue[4])) && in option_set_value()
1039 free(newvalue); in option_set_value()
1041 val->value = newvalue; in option_set_value()
/third_party/mesa3d/src/mesa/main/
Dtexcompress_s3tc_tmp.h301 GLint newvalue = testcolor[j][i] + blockerrlin[j][i] / nrcolor[j]; in fancybasecolorsearch() local
302 if (newvalue <= 0) in fancybasecolorsearch()
304 else if (newvalue >= 255) in fancybasecolorsearch()
306 else testcolor[j][i] = newvalue; in fancybasecolorsearch()
/third_party/icu/icu4c/source/i18n/unicode/
Ddatefmt.h831 UBool newvalue,
/third_party/node/deps/icu-small/source/i18n/unicode/
Ddatefmt.h831 UBool newvalue,
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Ddatefmt.h831 UBool newvalue,
/third_party/flutter/skia/third_party/externals/icu/source/i18n/unicode/
Ddatefmt.h821 UBool newvalue,
/third_party/python/Modules/
Ditertoolsmodule.c262 PyObject *newvalue, *newkey, *oldvalue; in groupby_step() local
264 newvalue = PyIter_Next(gbo->it); in groupby_step()
265 if (newvalue == NULL) in groupby_step()
269 newkey = newvalue; in groupby_step()
270 Py_INCREF(newvalue); in groupby_step()
272 newkey = PyObject_CallOneArg(gbo->keyfunc, newvalue); in groupby_step()
274 Py_DECREF(newvalue); in groupby_step()
280 gbo->currvalue = newvalue; in groupby_step()
/third_party/python/Doc/library/
Dunittest.mock.rst141 >>> with patch.dict(foo, {'newkey': 'newvalue'}, clear=True):
142 ... assert foo == {'newkey': 'newvalue'}
1604 >>> @patch.dict(foo, {'newkey': 'newvalue'})
1606 ... assert foo == {'newkey': 'newvalue'}
1616 >>> @patch.dict('os.environ', {'newkey': 'newvalue'})
1619 ... self.assertEqual(os.environ['newkey'], 'newvalue')
1630 >>> with patch.dict(foo, {'newkey': 'newvalue'}) as patched_foo:
1631 ... assert foo == {'newkey': 'newvalue'}
1632 ... assert patched_foo == {'newkey': 'newvalue'}
1640 >>> with patch.dict('os.environ', {'newkey': 'newvalue'}):
[all …]
Dunittest.mock-examples.rst469 >>> with patch.dict(foo, {'newkey': 'newvalue'}, clear=True):
470 ... assert foo == {'newkey': 'newvalue'}
/third_party/python/Lib/email/
D_header_value_parser.py1034 newvalue = value.lstrip()
1035 fws = WhiteSpaceTerminal(value[:len(value)-len(newvalue)], 'fws')
1036 return fws, newvalue
/third_party/ntfs-3g/ntfsprogs/
Dplaylog.c735 u32 newvalue; in resize_attribute() local
741 newvalue = le32_to_cpu(attr->value_length) + rawresize; in resize_attribute()
742 attr->value_length = cpu_to_le32(newvalue); in resize_attribute()