Searched refs:value_str (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueBoolean.cpp40 OptionValueBoolean::SetValueFromString (llvm::StringRef value_str, argument
55 bool value = Args::StringToBoolean(value_str.str().c_str(), false, &success);
64 if (value_str.size() == 0)
68 value_str.str().c_str());
78 error = OptionValue::SetValueFromString (value_str, op);
H A DOptionValueArch.cpp57 std::string value_str = value.trim().str(); local
58 if (m_current_value.SetTriple (value_str.c_str()))
64 error.SetErrorStringWithFormat("unsupported architecture '%s'", value_str.c_str());
H A DOptionValueUInt64.cpp61 std::string value_str = value_ref.trim().str(); local
62 uint64_t value = StringConvert::ToUInt64 (value_str.c_str(), 0, 0, &success);
71 error.SetErrorStringWithFormat ("invalid uint64_t string value: '%s'", value_str.c_str());
H A DOptionValueFormatEntity.cpp68 OptionValueFormatEntity::SetValueFromString (llvm::StringRef value_str, argument
86 llvm::StringRef trimmed_value_str = value_str.trim();
93 if (trimmed_len == 1 || value_str[trimmed_len-1] != first_char)
98 value_str = trimmed_value_str.substr(1,trimmed_len-2);
102 error = FormatEntity::Parse(value_str, entry);
106 m_current_format = value_str;
118 error = OptionValue::SetValueFromString (value_str, op);
H A DOptionValueSInt64.cpp53 std::string value_str = value_ref.trim().str(); local
54 int64_t value = StringConvert::ToSInt64 (value_str.c_str(), 0, 0, &success);
H A DOptionValueString.cpp59 std::string value_str = value.str(); local
77 value_str = value.str();
88 error = m_validator(value_str.c_str(),m_validator_baton);
103 Args::EncodeEscapeSequences (value_str.c_str(), str);
129 error = m_validator(value_str.c_str(), m_validator_baton);
136 Args::EncodeEscapeSequences (value_str.c_str(), m_current_value);
140 SetCurrentValue (value_str.c_str());
/freebsd-11.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dwin32_crashrpt.c313 format_value(char *value_str, DWORD64 mod_base, DWORD type, void *value_addr) argument
343 sprintf(value_str, "(%s) " FORMAT_PTR,
346 sprintf(value_str, "(%s *) " FORMAT_PTR,
349 sprintf(value_str, "(%s **) " FORMAT_PTR,
355 sprintf(value_str, "[no symbol tag]");
367 sprintf(value_str, FORMAT_PTR " \"%s\"",
372 sprintf(value_str, FORMAT_PTR, *(DWORD_PTR *)value_addr);
376 format_basic_type(value_str, bt, length, value_addr);
381 sprintf(value_str, "%d", *(DWORD_PTR *)value_addr);
384 sprintf(value_str, FORMAT_PT
411 char value_str[256] = ""; local
[all...]
H A Dcache-memcache.c285 svn_stringbuf_t *value_str = value; local
286 data = value_str->data;
287 data_len = value_str->len + 1; /* copy trailing NUL */
H A Dcache-membuffer.c3070 svn_stringbuf_t *value_str = item; local
3072 *buffer = value_str->data;
3073 *buffer_size = value_str->len + 1;
3087 svn_stringbuf_t *value_str = apr_palloc(result_pool, sizeof(svn_stringbuf_t)); local
3089 value_str->pool = result_pool;
3090 value_str->blocksize = buffer_size;
3091 value_str->data = buffer;
3092 value_str->len = buffer_size-1;
3093 *item = value_str;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DRegisterValue.cpp449 RegisterValue::SetValueFromCString (const RegisterInfo *reg_info, const char *value_str) argument
458 if (value_str == NULL || value_str[0] == '\0')
477 uint64_t uval64 = StringConvert::ToUInt64(value_str, UINT64_MAX, 0, &success);
479 error.SetErrorStringWithFormat ("'%s' is not a valid unsigned integer string value", value_str);
498 uint64_t sval64 = StringConvert::ToSInt64(value_str, INT64_MAX, 0, &success);
500 error.SetErrorStringWithFormat ("'%s' is not a valid signed integer string value", value_str);
519 if (::sscanf (value_str, "%f", &flt_val) == 1)
525 error.SetErrorStringWithFormat ("'%s' is not a valid float string value", value_str);
529 if (::sscanf (value_str, "
[all...]
H A DValueObjectDynamicValue.cpp325 ValueObjectDynamicValue::SetValueFromCString (const char *value_str, Error& error) argument
349 if (strcmp(value_str,"0"))
356 bool ret_val = m_parent->SetValueFromCString(value_str,error);
H A DValueObjectVariable.cpp372 ValueObjectVariable::SetValueFromCString (const char *value_str, Error& error) argument
391 error = reg_value.SetValueFromCString(reg_info, value_str);
406 return ValueObject::SetValueFromCString(value_str, error);
H A DValueObjectSyntheticFilter.cpp302 ValueObjectSynthetic::SetValueFromCString (const char *value_str, Error& error) argument
304 return m_parent->SetValueFromCString(value_str, error);
H A DValueObjectRegister.cpp394 ValueObjectRegister::SetValueFromCString (const char *value_str, Error& error) argument
397 error = m_reg_value.SetValueFromCString (&m_reg_info, value_str);
H A DScalar.cpp2322 Scalar::SetValueFromCString (const char *value_str, Encoding encoding, size_t byte_size) argument
2325 if (value_str == NULL || value_str[0] == '\0')
2340 uint64_t uval64 = StringConvert::ToUInt64(value_str, UINT64_MAX, 0, &success);
2342 error.SetErrorStringWithFormat ("'%s' is not a valid unsigned integer string value", value_str);
2369 uint64_t sval64 = StringConvert::ToSInt64(value_str, INT64_MAX, 0, &success);
2371 error.SetErrorStringWithFormat ("'%s' is not a valid signed integer string value", value_str);
2401 if (::sscanf (value_str, "%f", &f_val) == 1)
2407 error.SetErrorStringWithFormat ("'%s' is not a valid float string value", value_str);
2411 if (::sscanf (value_str, "
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DValueObjectVariable.h67 SetValueFromCString(const char *value_str, Error& error) override;
H A DValueObjectDynamicValue.h101 SetValueFromCString(const char *value_str, Error& error) override;
H A DValueObjectSyntheticFilter.h138 SetValueFromCString(const char *value_str, Error& error) override;
H A DValueObjectRegister.h154 SetValueFromCString(const char *value_str, Error& error) override;
H A DRegisterValue.h340 const char *value_str);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectMemory.cpp1514 const char *value_str = command.GetArgumentAtIndex(i); variable
1556 uval64 = StringConvert::ToUInt64(value_str, UINT64_MAX, 16, &success);
1559 result.AppendErrorWithFormat ("'%s' is not a valid hex string value.\n", value_str);
1573 uval64 = Args::StringToBoolean(value_str, false, &success);
1576 result.AppendErrorWithFormat ("'%s' is not a valid boolean string value.\n", value_str);
1584 uval64 = StringConvert::ToUInt64(value_str, UINT64_MAX, 2, &success);
1587 result.AppendErrorWithFormat ("'%s' is not a valid binary string value.\n", value_str);
1603 if (value_str[0])
1605 size_t len = strlen (value_str);
1610 if (process->WriteMemory (addr, value_str, le
[all...]
H A DCommandObjectRegister.cpp424 const char *value_str = command.GetArgumentAtIndex(1); variable
440 Error error (reg_value.SetValueFromCString (reg_info, value_str));
456 value_str,
463 value_str);
/freebsd-11.0-release/contrib/atf/atf-sh/
H A Datf-check.cpp235 const std::string value_str = ( local
246 value = parse_exit_code(value_str);
249 if (value_str.empty())
252 value = parse_exit_code(value_str);
264 value = parse_exit_code(value_str);
267 if (value_str.empty())
270 value = parse_signal(value_str);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBValue.h134 SetValueFromCString (const char *value_str);
137 SetValueFromCString (const char *value_str, lldb::SBError& error);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBDebugger.cpp1081 const std::string &value_str = value_strm.GetString(); local
1082 if (!value_str.empty())
1085 string_list.SplitIntoLines(value_str);

Completed in 190 milliseconds

12