Searched refs:tmp_value (Results 1 – 9 of 9) sorted by relevance
/external/libchrome/dbus/ |
D | message.cc | 780 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/ |
D | configparser.py | 399 tmp_value = value.replace('%%', '') # escaped percent signs 400 tmp_value = self._KEYCRE.sub('', tmp_value) # valid syntax 401 if '%' in tmp_value: 403 "position %d" % (value, tmp_value.find('%'))) 460 tmp_value = value.replace('$$', '') # escaped dollar signs 461 tmp_value = self._KEYCRE.sub('', tmp_value) # valid syntax 462 if '$' in tmp_value: 464 "position %d" % (value, tmp_value.find('$')))
|
/external/python/cpython2/Lib/ |
D | ConfigParser.py | 747 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/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/ |
D | pr24546.ll | 36 %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/llvm/test/CodeGen/PowerPC/ |
D | pr24546.ll | 36 %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/ |
D | json_reader_unittest.cc | 302 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/ |
D | sysmodule.c | 173 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()
|
D | ceval.c | 3723 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()
|
/external/protobuf/php/src/Google/Protobuf/Internal/ |
D | Message.php | 1186 foreach ($value as $tmp_key => $tmp_value) { 1187 if (is_null($tmp_value)) { 1196 $tmp_value,
|