Home
last modified time | relevance | path

Searched refs:IS_OCTAL_DIGIT (Results 1 – 5 of 5) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
Dstrutil.cc282 #define IS_OCTAL_DIGIT(c) (((c) >= '0') && ((c) <= '7')) macro
337 if ( IS_OCTAL_DIGIT(p[1]) ) in UnescapeCEscapeSequences()
339 if ( IS_OCTAL_DIGIT(p[1]) ) // safe (and easy) to do this twice in UnescapeCEscapeSequences()
/external/freetype/src/psaux/
Dpsobjs.c326 #define IS_OCTAL_DIGIT( c ) ( '0' <= (c) && (c) <= '7' ) macro
380 if ( !IS_OCTAL_DIGIT( *cur ) ) in skip_literal_string()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/psaux/
Dpsobjs.c326 #define IS_OCTAL_DIGIT( c ) ( '0' <= (c) && (c) <= '7' ) macro
380 if ( !IS_OCTAL_DIGIT( *cur ) ) in skip_literal_string()
/external/pdfium/third_party/freetype/src/psaux/
Dpsobjs.c326 #define IS_OCTAL_DIGIT( c ) ( '0' <= (c) && (c) <= '7' ) macro
380 if ( !IS_OCTAL_DIGIT( *cur ) ) in skip_literal_string()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/
DChangeLog.237707 * src/psaux/psobjs.c (IS_OCTAL_DIGIT): New macro.