Home
last modified time | relevance | path

Searched refs:ascii_isdigit (Results 1 – 13 of 13) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Support/
DStringRef.cpp28 static bool ascii_isdigit(char x) { in ascii_isdigit() function
50 if (ascii_isdigit(Data[I]) && ascii_isdigit(RHS.Data[I])) { in compare_numeric()
55 bool ld = J < Length && ascii_isdigit(Data[J]); in compare_numeric()
56 bool rd = J < RHS.Length && ascii_isdigit(RHS.Data[J]); in compare_numeric()
/external/protobuf/src/google/protobuf/stubs/
Dtime.cc149 if (!ascii_isdigit(*data)) { in ParseInt()
154 if (ascii_isdigit(*data)) { in ParseInt()
171 if (!ascii_isdigit(*data)) { in ParseNanos()
178 while (ascii_isdigit(*data)) { in ParseNanos()
Dsubstitute.cc81 if (ascii_isdigit(format[i+1])) { in SubstituteAndAppend()
115 if (ascii_isdigit(format[i+1])) { in SubstituteAndAppend()
Dcommon_unittest.cc59 (ascii_isdigit(version[pos]) || version[pos] == '.')) { in TEST()
Dstrutil.h71 inline bool ascii_isdigit(char c) { in ascii_isdigit() function
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DStringRef.cpp35 static bool ascii_isdigit(char x) { in ascii_isdigit() function
81 if (ascii_isdigit(Data[I]) && ascii_isdigit(RHS.Data[I])) { in compare_numeric()
86 bool ld = J < Length && ascii_isdigit(Data[J]); in compare_numeric()
87 bool rd = J < RHS.Length && ascii_isdigit(RHS.Data[J]); in compare_numeric()
417 if (Str[0] == '0' && Str.size() > 1 && ascii_isdigit(Str[1])) { in GetAutoSenseRadix()
/external/llvm/lib/Support/
DStringRef.cpp35 static bool ascii_isdigit(char x) { in ascii_isdigit() function
76 if (ascii_isdigit(Data[I]) && ascii_isdigit(RHS.Data[I])) { in compare_numeric()
81 bool ld = J < Length && ascii_isdigit(Data[J]); in compare_numeric()
82 bool rd = J < RHS.Length && ascii_isdigit(RHS.Data[J]); in compare_numeric()
/external/dynamic_depth/internal/strings/
Dascii_ctype.h64 static inline bool ascii_isdigit(unsigned char c) { in ascii_isdigit() function
/external/protobuf/src/google/protobuf/compiler/csharp/
Dcsharp_helpers.cc203 } else if (ascii_isdigit(previous)) { in ShoutyToPascalCase()
273 if (ascii_isdigit(result[0])) { in GetEnumValueName()
/external/tensorflow/tensorflow/compiler/xla/
Dmetric_table_report.cc252 while (!sp1.empty() && !absl::ascii_isdigit(sp1[0])) { in MetricString()
/external/llvm/include/llvm/TableGen/
DRecord.h1582 static bool ascii_isdigit(char x) { return x >= '0' && x <= '9'; } in ascii_isdigit() function
1594 bool isDigitPart = ascii_isdigit(Curr[0]); in RecordParts()
1596 bool isDigit = ascii_isdigit(Curr[I]); in RecordParts()
1601 isDigitPart = ascii_isdigit(Curr[I]); in RecordParts()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/TableGen/
DRecord.h1688 static bool ascii_isdigit(char x) { return x >= '0' && x <= '9'; } in ascii_isdigit() function
1700 bool isDigitPart = ascii_isdigit(Curr[0]); in RecordParts()
1702 bool isDigit = ascii_isdigit(Curr[I]); in RecordParts()
1707 isDigitPart = ascii_isdigit(Curr[I]); in RecordParts()
/external/protobuf/src/google/protobuf/compiler/objectivec/
Dobjectivec_helpers.cc96 if (ascii_isdigit(c)) { in UnderscoresToCamelCase()