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

  /external/protobuf/php/ext/google/protobuf/
upb.c 25 static bool upb_isbetween(char c, char low, char high) { function
30 return upb_isbetween(c, 'A', 'Z') || upb_isbetween(c, 'a', 'z') || c == '_';
34 return upb_isletter(c) || upb_isbetween(c, '0', '9');
    [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
upb.c 26 static bool upb_isbetween(char c, char low, char high) { function
31 return upb_isbetween(c, 'A', 'Z') || upb_isbetween(c, 'a', 'z') || c == '_';
35 return upb_isletter(c) || upb_isbetween(c, '0', '9');
    [all...]

Completed in 44 milliseconds