OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:safe_strtod
(Results
1 - 3
of
3
) sorted by null
/external/protobuf/src/google/protobuf/stubs/
strutil.h
390
//
safe_strtod
()
425
LIBPROTOBUF_EXPORT bool
safe_strtod
(const char* str, double* value);
429
inline bool
safe_strtod
(const string& str, double* value) {
function in namespace:google::protobuf
430
return
safe_strtod
(str.c_str(), value);
435
inline bool
safe_strtod
(StringPiece str, double* value) {
function in namespace:google::protobuf
436
return
safe_strtod
(str.ToString(), value);
[
all
...]
strutil.cc
1333
bool
safe_strtod
(const char* str, double* value) {
function
[
all
...]
/frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp
400
static bool
safe_strtod
(const char *s, double *val) {
function in namespace:android
845
if (
safe_strtod
(value.string(), &fps)) {
[
all
...]
Completed in 139 milliseconds