Searched refs:IsInRange (Results 1 - 15 of 15) sorted by relevance

/external/v8/src/
H A Dchar-predicates-inl.h32 inline bool IsInRange(int value, int lower_limit, int higher_limit) { function in namespace:v8::internal
43 return IsInRange(AsciiAlphaToLower(c), 'a', 'z') || IsDecimalDigit(c);
48 return IsInRange(c, '0', '9');
54 return IsDecimalDigit(c) || IsInRange(AsciiAlphaToLower(c), 'a', 'f');
60 return IsInRange(c, '0', '7');
71 return IsInRange(AsciiAlphaToLower(c), 'a', 'z')
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp222 bool IsInRange = IntVal >= From && IntVal <= To; local
223 bool isFeasible = (IsInRange == InRange);
/external/v8/src/parsing/
H A Dscanner.cc1463 if (IsInRange(c0_, 'a', 'z')) {
1468 } while (IsInRange(c0_, 'a', 'z'));
1470 if (IsDecimalDigit(c0_) || IsInRange(c0_, 'A', 'Z') || c0_ == '_' ||
1497 } else if (IsInRange(c0_, 'A', 'Z') || c0_ == '_' || c0_ == '$') {
/external/v8/src/ast/
H A Dast-value-factory.cc252 if (literal.length() == 1 && IsInRange(literal[0], 'a', 'z')) {
/external/v8/src/compiler/ppc/
H A Dinstruction-selector-ppc.cc549 if (mleft.right().IsInRange(0, 31)) {
588 if (mleft.right().IsInRange(0, 63)) {
677 if (m.left().IsWord32And() && m.right().IsInRange(0, 31)) {
704 if (m.left().IsWord64And() && m.right().IsInRange(0, 63)) {
748 if (m.left().IsWord32And() && m.right().IsInRange(0, 31)) {
774 if (m.left().IsWord64And() && m.right().IsInRange(0, 63)) {
/external/v8/src/compiler/
H A Dnode-matchers.h120 bool IsInRange(const T& low, const T& high) const { function in struct:v8::internal::compiler::final
158 bool IsInRange(const T& low, const T& high) const { function in struct:v8::internal::compiler::final
H A Dmachine-operator-reducer.cc956 m.right().IsInRange(1, 24)) ||
958 m.right().IsInRange(1, 16)))) {
1055 if (m.right().IsInRange(1, 31)) {
H A Dcode-assembler.cc214 m.IsInRange(std::numeric_limits<int32_t>::min(),
H A Djs-native-context-specialization.cc1175 if (mindex.IsInteger() && mindex.IsInRange(0.0, string->length() - 1)) {
/external/v8/src/compiler/mips64/
H A Dinstruction-selector-mips64.cc656 m.right().IsInRange(1, 31)) {
740 m.right().IsInRange(32, 63) && CanCover(node, m.left().node())) {
749 m.right().IsInRange(1, 63)) {
1377 if (m.right().IsInRange(32, 63)) {
/external/v8/src/compiler/arm/
H A Dinstruction-selector-arm.cc128 if (m.right().IsInRange(kImmMin, kImmMax)) {
149 if (m.right().IsInRange(kImmMin, kImmMax)) {
958 m.right().IsInRange(0, 31)) {
/external/v8/src/compiler/s390/
H A Dinstruction-selector-s390.cc927 if (mleft.right().IsInRange(0, 63)) {
1001 if (m.left().IsWord64And() && m.right().IsInRange(0, 63)) {
1048 if (m.left().IsWord64And() && m.right().IsInRange(0, 63)) {
/external/v8/src/compiler/arm64/
H A Dinstruction-selector-arm64.cc1029 m.right().IsInRange(1, 31)) {
1067 m.right().IsInRange(32, 63) && CanCover(node, m.left().node())) {
/external/v8/src/compiler/mips/
H A Dinstruction-selector-mips.cc468 m.right().IsInRange(1, 31)) {
/external/v8/src/compiler/x64/
H A Dinstruction-selector-x64.cc718 m.right().IsInRange(32, 63)) {

Completed in 1716 milliseconds