Home
last modified time | relevance | path

Searched refs:tmp_value (Results 1 – 8 of 8) sorted by relevance

/external/libchrome/dbus/
Dmessage.cc780 char* tmp_value = nullptr; in PopString() local
781 const bool success = PopBasic(DBUS_TYPE_STRING, &tmp_value); in PopString()
783 value->assign(tmp_value); in PopString()
788 char* tmp_value = nullptr; in PopObjectPath() local
789 const bool success = PopBasic(DBUS_TYPE_OBJECT_PATH, &tmp_value); in PopObjectPath()
791 *value = ObjectPath(tmp_value); in PopObjectPath()
975 char* tmp_value = nullptr; in PopVariantOfString() local
976 const bool success = PopVariantOfBasic(DBUS_TYPE_STRING, &tmp_value); in PopVariantOfString()
978 value->assign(tmp_value); in PopVariantOfString()
983 char* tmp_value = nullptr; in PopVariantOfObjectPath() local
[all …]
/external/python/cpython3/Lib/
Dconfigparser.py398 tmp_value = value.replace('%%', '') # escaped percent signs
399 tmp_value = self._KEYCRE.sub('', tmp_value) # valid syntax
400 if '%' in tmp_value:
402 "position %d" % (value, tmp_value.find('%')))
459 tmp_value = value.replace('$$', '') # escaped dollar signs
460 tmp_value = self._KEYCRE.sub('', tmp_value) # valid syntax
461 if '$' in tmp_value:
463 "position %d" % (value, tmp_value.find('$')))
/external/python/cpython2/Lib/
DConfigParser.py747 tmp_value = value.replace('%%', '')
748 tmp_value = self._interpvar_re.sub('', tmp_value)
750 if '%' in tmp_value:
752 "position %d" % (value, tmp_value.find('%')))
/external/llvm/test/CodeGen/PowerPC/
Dpr24546.ll36 %tmp_value.1 = phi double [ %div, %php_intpow10.exit ], [ %mul, %if.else ]
37 ret double %tmp_value.1, !dbg !57
74 !16 = !DILocalVariable(name: "tmp_value", scope: !6, file: !1, line: 18, type: !4)
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/
Dpr24546.ll36 %tmp_value.1 = phi double [ %div, %php_intpow10.exit ], [ %mul, %if.else ]
37 ret double %tmp_value.1, !dbg !57
74 !16 = !DILocalVariable(name: "tmp_value", scope: !6, file: !1, line: 18, type: !4)
/external/libchrome/base/json/
Djson_reader_unittest.cc302 Value* tmp_value = nullptr; in TEST() local
303 ASSERT_TRUE(list->Get(0, &tmp_value)); in TEST()
304 EXPECT_TRUE(tmp_value->is_bool()); in TEST()
306 EXPECT_TRUE(tmp_value->GetAsBoolean(&bool_value)); in TEST()
/external/python/cpython2/Python/
Dsysmodule.c173 PyObject *tmp_type, *tmp_value, *tmp_tb; in sys_exc_clear() local
181 tmp_value = tstate->exc_value; in sys_exc_clear()
187 Py_XDECREF(tmp_value); in sys_exc_clear()
Dceval.c3723 PyObject *tmp_type, *tmp_value, *tmp_tb; in set_exc_info() local
3746 tmp_value = tstate->exc_value; in set_exc_info()
3755 Py_XDECREF(tmp_value); in set_exc_info()
3767 PyObject *tmp_type, *tmp_value, *tmp_tb; in reset_exc_info() local
3779 tmp_value = tstate->exc_value; in reset_exc_info()
3788 Py_XDECREF(tmp_value); in reset_exc_info()
3798 tmp_value = frame->f_exc_value; in reset_exc_info()
3804 Py_XDECREF(tmp_value); in reset_exc_info()