OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ascii_isspace
(Results
1 - 6
of
6
) sorted by null
/external/tensorflow/tensorflow/core/lib/strings/
str_util.h
47
// Removes leading
ascii_isspace
() characters.
51
// Removes trailing
ascii_isspace
() characters.
55
// Removes leading and trailing
ascii_isspace
() chars.
/external/protobuf/src/google/protobuf/util/internal/
utility.cc
52
for (i = 0; i < str.size() &&
ascii_isspace
(str[i]); ++i) {
54
GOOGLE_DCHECK(i == str.size() || !
ascii_isspace
(str[i]));
json_stream_parser.cc
747
while (!p_.empty() &&
ascii_isspace
(*p_.data())) {
/external/protobuf/src/google/protobuf/stubs/
strutil.cc
101
while (first < str_length &&
ascii_isspace
(str->at(first))) {
116
while (last >= 0 &&
ascii_isspace
(str->at(last))) {
[
all
...]
strutil.h
61
//
ascii_isspace
()
75
inline bool
ascii_isspace
(char c) {
function in namespace:google::protobuf
[
all
...]
/external/protobuf/src/google/protobuf/compiler/objectivec/
objectivec_helpers.cc
906
while (!input->empty() &&
ascii_isspace
(*input->data())) {
909
while (!input->empty() &&
ascii_isspace
((*input)[input->length() - 1])) {
[
all
...]
Completed in 106 milliseconds