Home
last modified time | relevance | path

Searched refs:oldvalue (Results 1 – 17 of 17) sorted by relevance

/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
DDateFormatSymbolsTest.java74 String[] oldvalue = dfs.getEras(); in testSetEras() local
75 String[] newvalue = (String[])oldvalue.clone(); in testSetEras()
79 assertArraysNotEqual(oldvalue, result); in testSetEras()
96 String[] oldvalue = dfs.getMonths(); in testSetMonths() local
97 String[] newvalue = (String[])oldvalue.clone(); in testSetMonths()
101 assertArraysNotEqual(oldvalue, result); in testSetMonths()
118 String[] oldvalue = dfs.getShortMonths(); in testSetShortMonths() local
119 String[] newvalue = (String[])oldvalue.clone(); in testSetShortMonths()
123 assertArraysNotEqual(oldvalue, result); in testSetShortMonths()
140 String[] oldvalue = dfs.getWeekdays(); in testSetWeekdays() local
[all …]
/external/ltp/testcases/kernel/syscalls/syslog/
Dsyslog0563 oldvalue=`grep -c "syslogtst: info to console test." /var/log/messages`
65 oldvalue=0
82 if [ "x$(( $newvalue - $oldvalue ))" != "x1" ]; then
Dsyslog0273 oldvalue=`grep -c "syslogtst: mail $level test\." $MAILLOG`
75 oldvalue=0
91 diff=$(( $newvalue - $oldvalue ))
Dsyslog0873 oldvalue=`grep -c "syslogtst: $facility info test." /var/log/messages`
75 oldvalue=0
102 diff=$(( $newvalue - $oldvalue ))
/external/python/cpython2/Lib/
Dcode.py16 oldvalue = 0
18 oldvalue = file.softspace
26 return oldvalue
D_osx_support.py123 oldvalue = _config_vars.get(cv, '')
124 if (oldvalue != newvalue) and (_INITPRE + cv not in _config_vars):
125 _config_vars[_INITPRE + cv] = oldvalue
/external/python/cpython2/Python/
Dthread_nt.h315 void *oldvalue; in PyThread_set_key_value() local
318 oldvalue = TlsGetValue(key); in PyThread_set_key_value()
319 if (oldvalue != NULL) in PyThread_set_key_value()
Derrors.c28 PyObject *oldtype, *oldvalue, *oldtraceback; in PyErr_Restore() local
40 oldvalue = tstate->curexc_value; in PyErr_Restore()
48 Py_XDECREF(oldvalue); in PyErr_Restore()
/external/python/cpython3/Lib/
D_osx_support.py123 oldvalue = _config_vars.get(cv, '')
124 if (oldvalue != newvalue) and (_INITPRE + cv not in _config_vars):
125 _config_vars[_INITPRE + cv] = oldvalue
Dpdb.py331 for expr, oldvalue in displaying.items():
336 if newvalue is not oldvalue and newvalue != oldvalue:
339 (expr, newvalue, oldvalue))
/external/autotest/client/tests/cyclictest/src/
Dcyclictest.c132 int oldvalue; in setkernvar() local
134 if (kernvar(O_RDONLY, name, &oldvalue)) in setkernvar()
142 kv[i].value = oldvalue; in setkernvar()
148 oldvalue); in setkernvar()
/external/python/cpython3/Python/
Derrors.c31 PyObject *oldtype, *oldvalue, *oldtraceback; in PyErr_Restore() local
43 oldvalue = tstate->curexc_value; in PyErr_Restore()
51 Py_XDECREF(oldvalue); in PyErr_Restore()
361 PyObject *oldtype, *oldvalue, *oldtraceback; in PyErr_SetExcInfo() local
365 oldvalue = tstate->exc_value; in PyErr_SetExcInfo()
373 Py_XDECREF(oldvalue); in PyErr_SetExcInfo()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DStylesheetRoot.java1231 String oldvalue = m_extensionHandlerClass; in setExtensionHandlerClass() local
1233 return oldvalue; in setExtensionHandlerClass()
/external/libxml2/
Drelaxng.c8635 const xmlChar *oldvalue, *oldendvalue; in xmlRelaxNGValidateDatatype() local
8637 oldvalue = ctxt->state->value; in xmlRelaxNGValidateDatatype()
8642 ctxt->state->value = (xmlChar *) oldvalue; in xmlRelaxNGValidateDatatype()
8790 xmlChar *oldvalue; in xmlRelaxNGValidateValue() local
8795 oldvalue = ctxt->state->value; in xmlRelaxNGValidateValue()
8801 ctxt->state->value = oldvalue; in xmlRelaxNGValidateValue()
8816 xmlChar *oldvalue, *oldend, *val, *cur; in xmlRelaxNGValidateValue() local
8822 oldvalue = ctxt->state->value; in xmlRelaxNGValidateValue()
8825 val = xmlStrdup(oldvalue); in xmlRelaxNGValidateValue()
8849 oldvalue, nb_values); in xmlRelaxNGValidateValue()
[all …]
/external/libcups/cups/
Dhttp.c3624 const char *oldvalue; /* Old field value */ in http_add_field() local
3664 else if (append && *value && (oldvalue = httpGetField(http, field)) != NULL && *oldvalue) in http_add_field()
3666 snprintf(newvalue, sizeof(newvalue), "%s, %s", oldvalue, value); in http_add_field()
/external/python/cpython2/Objects/
Ddictobject.c1389 PyObject *oldvalue; in dict_fromkeys() local
1399 while (_PyDict_Next(seq, &pos, &key, &oldvalue, &hash)) { in dict_fromkeys()
/external/python/cpython3/Objects/
Ddictobject.c1927 PyObject *oldvalue; in _PyDict_FromKeys() local
1937 while (_PyDict_Next(iterable, &pos, &key, &oldvalue, &hash)) { in _PyDict_FromKeys()