Home
last modified time | relevance | path

Searched refs:isOctal (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/npm/node_modules/es-abstract/
Des2015.js32 var isOctal = bind.call(Function.call, $RegExp.prototype.test, /^0o[0-7]+$/i); variable
95 } else if (isOctal(value)) {
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DTextFormat.java2315 if (isOctal(c)) { in unescapeBytes()
2318 if (i + 1 < input.size() && isOctal(input.byteAt(i + 1))) { in unescapeBytes()
2322 if (i + 1 < input.size() && isOctal(input.byteAt(i + 1))) { in unescapeBytes()
2432 private static boolean isOctal(final byte c) { in isOctal() method in TextFormat