Searched defs:inRange (Results 1 - 25 of 36) sorted by relevance

12

/external/deqp/framework/delibs/decpp/
H A DdeDefs.hpp51 template<typename T> inline bool inRange (T x, T a, T b) { return a <= x && x <= b; } function in namespace:de
/external/guava/guava-tests/test/com/google/common/base/
H A DBenchmarkHelpers.java64 HEX_16(CharMatcher.inRange('0', '9').or(CharMatcher.inRange('A', 'F')), "0123456789ABCDEF"),
65 HEX_22(CharMatcher.inRange('0', '9')
66 .or(CharMatcher.inRange('A', 'F')).or(CharMatcher.inRange('a', 'f')),
68 GERMAN_59(CharMatcher.inRange('a', 'z')
69 .or(CharMatcher.inRange('A', 'Z')).or(CharMatcher.anyOf("äöüßÄÖÜ")),
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInstrInfo.h177 bool inRange(MCInst const &MCI, size_t Index) { function in namespace:llvm::HexagonMCInstrInfo
184 template <unsigned N> bool inRange(MCInst const &MCI, size_t Index) { function in namespace:llvm::HexagonMCInstrInfo
/external/guava/guava/src/com/google/common/base/
H A DCaseFormat.java76 LOWER_CAMEL(CharMatcher.inRange('A', 'Z'), "") {
85 UPPER_CAMEL(CharMatcher.inRange('A', 'Z'), "") {
H A DCharMatcher.java100 public static final CharMatcher ASCII = inRange('\0', '\u007f', "CharMatcher.ASCII");
148 * If you only care to match ASCII digits, you can use {@code inRange('0', '9')}.
156 * inRange('0', '9')}.
167 * inRange('a', 'z').or(inRange('A', 'Z'))}.
213 inRange('\u0000', '\u001f')
214 .or(inRange('\u007f', '\u009f'))
545 * CharMatcher.inRange('a', 'z')}.
549 public static CharMatcher inRange(final char startInclusive, final char endInclusive) { method in class:CharMatcher
551 String description = "CharMatcher.inRange('"
557 static CharMatcher inRange(final char startInclusive, final char endInclusive, method in class:CharMatcher
[all...]
/external/deqp/framework/randomshaders/
H A DrsgBuiltinFunctions.hpp72 ValueRangeAccess inRange = m_inValueRange.asAccess().component(ndx); local
74 ComputeValueRange()(outRange.getMin().asFloat(), outRange.getMax().asFloat(), inRange.getMin().asFloat(), inRange.getMax().asFloat());
/external/jdiff/src/jdiff/
H A DRootDocToXML.java776 inRange(val, 0x2028, 0x2029) ||
777 inRange(val, 0x202A, 0x202E) ||
778 inRange(val, 0x206A, 0x206F) ||
779 inRange(val, 0xFFF9, 0xFFFC) ||
780 inRange(val, 0xE0000, 0xE007F)) {
795 public boolean inRange(int val, int min, int max) { method in class:RootDocToXML
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DCharMatcher.java98 public static final CharMatcher ASCII = inRange('\0', '\u007f', "CharMatcher.ASCII");
146 * If you only care to match ASCII digits, you can use {@code inRange('0', '9')}.
154 * inRange('0', '9')}.
165 * inRange('a', 'z').or(inRange('A', 'Z'))}.
211 inRange('\u0000', '\u001f')
212 .or(inRange('\u007f', '\u009f'))
516 * CharMatcher.inRange('a', 'z')}.
520 public static CharMatcher inRange(final char startInclusive, final char endInclusive) { method in class:CharMatcher
522 String description = "CharMatcher.inRange('"
528 static CharMatcher inRange(final char startInclusive, final char endInclusive, method in class:CharMatcher
[all...]
/external/skia/src/pdf/
H A DSkPDFFont.cpp529 bool inRange = local
535 if (!inSubset || !inRange) {
/external/icu/icu4c/source/i18n/
H A Dcompactdecimalformat.cpp159 static int32_t computeLog10(double x, UBool inRange);
939 // computeLog10 computes floor(log10(x)). If inRange is TRUE, the biggest
941 // numbers > 10^MAX_DIGITS. If inRange is FALSE, computeLog10 will return
943 static int32_t computeLog10(double x, UBool inRange) { argument
945 int32_t max = inRange ? MAX_DIGITS - 1 : MAX_DIGITS;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DPluralRules.java1228 boolean inRange = true;
1250 inRange = !inRange;
1256 inRange = !inRange;
1264 if (hackForCompatibility && !inRange) {
1275 if (!hackForCompatibility && !inRange) {
1278 inRange = !inRange;
1339 if (lowBound != highBound && hackForCompatibility && !inRange) {
1487 private final boolean inRange; field in class:PluralRules.RangeConstraint
1494 RangeConstraint(int mod, boolean inRange, Operand operand, boolean integersOnly, double lowBound, double highBound, long[] vals) argument
[all...]
/external/icu/icu4c/source/common/
H A Dunames.cpp1839 const AlgorithmicRange *inRange; local
1888 inRange=(const AlgorithmicRange *)(inBytes+offset);
1889 offset+=ds->readUInt16(inRange->size);
2043 inRange=(const AlgorithmicRange *)(inBytes+offset);
2045 offset+=ds->readUInt16(inRange->size);
2047 ds->swapArray32(ds, inRange, 8, outRange, pErrorCode);
2048 ds->swapArray16(ds, &inRange->size, 2, &outRange->size, pErrorCode);
2049 switch(inRange->type) {
2052 ds->swapInvChars(ds, inRange+1, (int32_t)uprv_strlen((const char *)(inRange
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPluralRules.java1182 boolean inRange = true;
1204 inRange = !inRange;
1210 inRange = !inRange;
1218 if (hackForCompatibility && !inRange) {
1229 if (!hackForCompatibility && !inRange) {
1232 inRange = !inRange;
1293 if (lowBound != highBound && hackForCompatibility && !inRange) {
1441 private final boolean inRange; field in class:PluralRules.RangeConstraint
1448 RangeConstraint(int mod, boolean inRange, Operand operand, boolean integersOnly, double lowBound, double highBound, long[] vals) argument
[all...]
/external/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp24 static bool inRange(const MCExpr *Expr, int64_t MinValue, int64_t MaxValue) { function
218 return Kind == KindImm && inRange(Imm, MinValue, MaxValue);
245 return isMem(MemKind, RegKind) && inRange(Mem.Disp, 0, 0xfff);
248 return isMem(MemKind, RegKind) && inRange(Mem.Disp, -524288, 524287);
251 return isMemDisp12(BDLMem, RegKind) && inRange(Mem.Length, 1, 0x100);
/external/messageformat/java/com/ibm/icu/simple/
H A DPluralRules.java1173 boolean inRange = true;
1195 inRange = !inRange;
1201 inRange = !inRange;
1209 if (hackForCompatibility && !inRange) {
1220 if (!hackForCompatibility && !inRange) {
1223 inRange = !inRange;
1284 if (lowBound != highBound && hackForCompatibility && !inRange) {
1432 private final boolean inRange; field in class:PluralRules.RangeConstraint
1439 RangeConstraint(int mod, boolean inRange, Operand operand, boolean integersOnly, double lowBound, double highBound, long[] vals) argument
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Ddebuginfo.c1655 Bool inRange; local
1663 inRange = di->fsm.have_rx_map
1666 inRange = (di->data_present
1692 if (!inRange) continue;
/external/opencv3/modules/core/src/
H A Darithm.cpp5107 * inRange *
5679 void cv::inRange(InputArray _src, InputArray _lowerb, function in class:cv
5978 cv::inRange( src1, cv::cvarrToMat(srcarr2), cv::cvarrToMat(srcarr3), dst );
5988 cv::inRange( src1, (const cv::Scalar&)lowerb, (const cv::Scalar&)upperb, dst );
/external/opencv3/modules/java/src/
H A Dcore+Core.java1366 // C++: void inRange(Mat src, Scalar lowerb, Scalar upperb, Mat& dst)
1369 //javadoc: inRange(src, lowerb, upperb, dst)
1370 public static void inRange(Mat src, Scalar lowerb, Scalar upperb, Mat dst) method in class:Core
2396 // C++: void inRange(Mat src, Scalar lowerb, Scalar upperb, Mat& dst)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding_1.3.100.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/guice/lib/build/jdiff/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/dagger2/lib/
H A Dauto-value-1.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 1418 milliseconds

12