Home
last modified time | relevance | path

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

/external/chromium_org/third_party/cython/src/Cython/Utility/
DExceptions.c17 PyObject *tmp_type, *tmp_value, *tmp_tb; in __Pyx_ErrRestore() local
21 tmp_value = tstate->curexc_value; in __Pyx_ErrRestore()
27 Py_XDECREF(tmp_value); in __Pyx_ErrRestore()
256 PyObject *tmp_type, *tmp_value, *tmp_tb; local
290 tmp_value = tstate->exc_value;
298 Py_XDECREF(tmp_value);
373 PyObject *tmp_type, *tmp_value, *tmp_tb; local
376 tmp_value = tstate->exc_value;
382 Py_XDECREF(tmp_value);
396 PyObject *tmp_type, *tmp_value, *tmp_tb; local
[all …]
/external/chromium_org/dbus/
Dmessage.cc779 char* tmp_value = NULL; in PopString() local
780 const bool success = PopBasic(DBUS_TYPE_STRING, &tmp_value); in PopString()
782 value->assign(tmp_value); in PopString()
787 char* tmp_value = NULL; in PopObjectPath() local
788 const bool success = PopBasic(DBUS_TYPE_OBJECT_PATH, &tmp_value); in PopObjectPath()
790 *value = ObjectPath(tmp_value); in PopObjectPath()
918 char* tmp_value = NULL; in PopVariantOfString() local
919 const bool success = PopVariantOfBasic(DBUS_TYPE_STRING, &tmp_value); in PopVariantOfString()
921 value->assign(tmp_value); in PopVariantOfString()
926 char* tmp_value = NULL; in PopVariantOfObjectPath() local
[all …]
/external/lldb/test/lang/cpp/dynamic-value/
Dpass-to-base.cpp26 int tmp_value = anotherA.Value(); in doSomething() local
27 printf ("Also have another A at %p: %d.\n", &anotherA, tmp_value); // Break here in doSomething. in doSomething()
/external/lldb/source/Commands/
DCommandObjectExpression.cpp101 bool tmp_value = Args::StringToBoolean(option_arg, true, &success); in SetOptionValue() local
103 ignore_breakpoints = tmp_value; in SetOptionValue()
123 bool tmp_value = Args::StringToBoolean(option_arg, true, &success); in SetOptionValue() local
125 unwind_on_error = tmp_value; in SetOptionValue()
DCommandObjectProcess.cpp1720 bool tmp_value = Args::StringToBoolean (option.c_str(), false, &success); in VerifyCommandOptionValue() local
1722 if (success && tmp_value) in VerifyCommandOptionValue()
1724 else if (success && !tmp_value) in VerifyCommandOptionValue()
DCommandObjectThread.cpp1286 bool tmp_value = Args::StringToBoolean (option_arg, false, &success); in SetOptionValue() local
1288 m_from_expression = tmp_value; in SetOptionValue()
/external/chromium_org/chrome/installer/util/
Dchannel_info.cc182 std::wstring tmp_value = value_; in GetChannelName() local
184 SetModifier(static_cast<ModifierIndex>(i), false, &tmp_value); in GetChannelName()
186 if (tmp_value.empty()) { in GetChannelName()
/external/chromium_org/base/prefs/
Dpref_value_store.cc187 const base::Value* tmp_value = NULL; in PrefValueInStore() local
188 return GetValueFromStore(name, store, &tmp_value); in PrefValueInStore()
/external/chromium_org/base/json/
Djson_reader_unittest.cc300 Value* tmp_value = NULL; in TEST() local
301 ASSERT_TRUE(list->Get(0, &tmp_value)); in TEST()
302 EXPECT_TRUE(tmp_value->IsType(Value::TYPE_BOOLEAN)); in TEST()
304 EXPECT_TRUE(tmp_value->GetAsBoolean(&bool_value)); in TEST()
/external/chromium_org/third_party/bintrees/bintrees/
Dqavltree.c2364 PyObject *tmp_type, *tmp_value, *tmp_tb; in __Pyx_ErrRestore() local
2367 tmp_value = tstate->curexc_value; in __Pyx_ErrRestore()
2373 Py_XDECREF(tmp_value); in __Pyx_ErrRestore()
Dqrbtree.c2361 PyObject *tmp_type, *tmp_value, *tmp_tb; in __Pyx_ErrRestore() local
2364 tmp_value = tstate->curexc_value; in __Pyx_ErrRestore()
2370 Py_XDECREF(tmp_value); in __Pyx_ErrRestore()
Dqbintree.c2359 PyObject *tmp_type, *tmp_value, *tmp_tb; in __Pyx_ErrRestore() local
2362 tmp_value = tstate->curexc_value; in __Pyx_ErrRestore()
2368 Py_XDECREF(tmp_value); in __Pyx_ErrRestore()
Dcwalker.c2882 PyObject *tmp_type, *tmp_value, *tmp_tb; in __Pyx_ErrRestore() local
2885 tmp_value = tstate->curexc_value; in __Pyx_ErrRestore()
2891 Py_XDECREF(tmp_value); in __Pyx_ErrRestore()
/external/lldb/source/Core/
DValueObject.cpp455 Value tmp_value(m_value); in ResolveValue() local
456 scalar = tmp_value.ResolveValue(&exe_ctx); in ResolveValue()