OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IS_OCTAL_DIGIT
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
strutil.cc
282
#define
IS_OCTAL_DIGIT
(c) (((c) >= '0') && ((c) <= '7'))
337
if (
IS_OCTAL_DIGIT
(p[1]) )
339
if (
IS_OCTAL_DIGIT
(p[1]) ) // safe (and easy) to do this twice
[
all
...]
/external/protobuf/src/google/protobuf/stubs/
strutil.cc
244
#define
IS_OCTAL_DIGIT
(c) (((c) >= '0') && ((c) <= '7'))
299
if (
IS_OCTAL_DIGIT
(p[1]) )
301
if (
IS_OCTAL_DIGIT
(p[1]) ) // safe (and easy) to do this twice
[
all
...]
/external/chromium_org/third_party/freetype/src/psaux/
psobjs.c
332
#define
IS_OCTAL_DIGIT
( c ) ( '0' <= (c) && (c) <= '7' )
386
if ( !
IS_OCTAL_DIGIT
( *cur ) )
[
all
...]
/external/freetype/src/psaux/
psobjs.c
332
#define
IS_OCTAL_DIGIT
( c ) ( '0' <= (c) && (c) <= '7' )
386
if ( !
IS_OCTAL_DIGIT
( *cur ) )
[
all
...]
Completed in 74 milliseconds