HomeSort by relevance Sort by last modified time
    Searched refs:IS_OCTAL_DIGIT (Results 1 - 2 of 2) sorted by null

  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 309 #define IS_OCTAL_DIGIT(c) (((c) >= '0') && ((c) <= '7'))
353 if ( IS_OCTAL_DIGIT(p[1]) )
355 if ( IS_OCTAL_DIGIT(p[1]) ) // safe (and easy) to do this twice
    [all...]
  /external/freetype/src/psaux/
psobjs.c 336 #define IS_OCTAL_DIGIT( c ) ( '0' <= (c) && (c) <= '7' )
390 if ( !IS_OCTAL_DIGIT( *cur ) )
    [all...]

Completed in 1311 milliseconds