OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsDigit
(Results
1 - 22
of
22
) sorted by null
/external/sonivox/arm-fm-22k/lib_src/
eas_ctype.h
35
EAS_INLINE EAS_I8
IsDigit
(EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
/external/sonivox/arm-hybrid-22k/lib_src/
eas_ctype.h
35
EAS_INLINE EAS_I8
IsDigit
(EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
/external/sonivox/arm-wt-22k/lib_src/
eas_ctype.h
35
EAS_INLINE EAS_I8
IsDigit
(EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
/external/open-vcdiff/gtest/src/
gtest-port.cc
174
bool
IsDigit
(char ch) { return '0' <= ch && ch <= '9'; }
195
case 'd': return
IsDigit
(ch);
196
case 'D': return !
IsDigit
(ch);
/external/protobuf/gtest/src/
gtest-port.cc
174
bool
IsDigit
(char ch) { return '0' <= ch && ch <= '9'; }
195
case 'd': return
IsDigit
(ch);
196
case 'D': return !
IsDigit
(ch);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
nvvertparse.c
130
static GLboolean
IsDigit
(GLubyte b)
177
while (str[i] &&
IsDigit
(str[i])) {
187
while (str[i] && (IsLetter(str[i]) ||
IsDigit
(str[i]))) {
312
if (
IsDigit
(token[1])) {
365
if (
IsDigit
(token[0])) {
397
if (
IsDigit
(token[0])) {
427
if (
IsDigit
(token[0])) {
484
if (
IsDigit
(token[0])) {
[
all
...]
nvfragparse.c
275
static GLboolean
IsDigit
(GLubyte b)
322
while (str[i] &&
IsDigit
(str[i])) {
332
while (str[i] && (IsLetter(str[i]) ||
IsDigit
(str[i]))) {
720
if (
IsDigit
(token[1])) {
770
if (
IsDigit
(token[0])) {
1036
else if (
IsDigit
(token[0]) || token[0] == '-' || token[0] == '+' || token[0] == '.'){
[
all
...]
/external/mesa3d/src/mesa/program/
nvvertparse.c
130
static GLboolean
IsDigit
(GLubyte b)
177
while (str[i] &&
IsDigit
(str[i])) {
187
while (str[i] && (IsLetter(str[i]) ||
IsDigit
(str[i]))) {
312
if (
IsDigit
(token[1])) {
365
if (
IsDigit
(token[0])) {
397
if (
IsDigit
(token[0])) {
427
if (
IsDigit
(token[0])) {
484
if (
IsDigit
(token[0])) {
[
all
...]
nvfragparse.c
275
static GLboolean
IsDigit
(GLubyte b)
322
while (str[i] &&
IsDigit
(str[i])) {
332
while (str[i] && (IsLetter(str[i]) ||
IsDigit
(str[i]))) {
720
if (
IsDigit
(token[1])) {
770
if (
IsDigit
(token[0])) {
1036
else if (
IsDigit
(token[0]) || token[0] == '-' || token[0] == '+' || token[0] == '.'){
[
all
...]
/external/chromium_org/v8/test/cctest/
test-regexp.cc
437
static bool
IsDigit
(uc16 c) {
443
return !
IsDigit
(c);
495
TestCharacterClassEscapes('d',
IsDigit
);
[
all
...]
/external/v8/test/cctest/
test-regexp.cc
431
static bool
IsDigit
(uc16 c) {
437
return !
IsDigit
(c);
488
TestCharacterClassEscapes('d',
IsDigit
);
[
all
...]
/external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/gtest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp
[
all
...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/sqlite/dist/orig/
shell.c
90
#define
IsDigit
(X)
isdigit
((unsigned char)X)
284
if( !
IsDigit
(*z) ){
289
while(
IsDigit
(*z) ){ z++; }
292
if( !
IsDigit
(*z) ) return 0;
293
while(
IsDigit
(*z) ){ z++; }
299
if( !
IsDigit
(*z) ) return 0;
300
while(
IsDigit
(*z) ){ z++; }
[
all
...]
/external/sqlite/dist/
shell.c
95
#define
IsDigit
(X)
isdigit
((unsigned char)X)
289
if( !
IsDigit
(*z) ){
294
while(
IsDigit
(*z) ){ z++; }
297
if( !
IsDigit
(*z) ) return 0;
298
while(
IsDigit
(*z) ){ z++; }
304
if( !
IsDigit
(*z) ) return 0;
305
while(
IsDigit
(*z) ){ z++; }
[
all
...]
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h
[
all
...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h
[
all
...]
Completed in 246 milliseconds