Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:safe_strtod
(Results
1 - 6
of
6
) sorted by relevance
/third_party/protobuf/src/google/protobuf/stubs/
H
A
D
strutil.h
392
//
safe_strtod
()
427
PROTOBUF_EXPORT bool
safe_strtod
(const char* str, double* value);
431
inline bool
safe_strtod
(const string& str, double* value) {
in safe_strtod()
function
432
return
safe_strtod
(str.c_str(), value);
in safe_strtod()
437
inline bool
safe_strtod
(StringPiece str, double* value) {
in safe_strtod()
function
438
return
safe_strtod
(str.ToString(), value);
in safe_strtod()
H
A
D
strutil.cc
1335
bool
safe_strtod
(const char* str, double* value) {
in safe_strtod()
function
/third_party/alsa-lib/include/
H
A
D
local.h
259
#define
safe_strtod
_snd_safe_strtod
macro
/third_party/protobuf/src/google/protobuf/util/internal/
H
A
D
datapiece.cc
175
StatusOr<double> value = StringToNumber<double>(
safe_strtod
);
in ToDouble()
177
//
safe_strtod
converts out-of-range values to +inf/-inf, but we want
in ToDouble()
H
A
D
utility.cc
396
if (!
safe_strtod
(str, &double_value)) {
in SafeStrToFloat()
H
A
D
json_stream_parser.cc
554
if (!
safe_strtod
(number, &result->double_val)) {
in ParseDoubleHelper()
Completed in 22 milliseconds