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

/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/src/com/google/common/base/
H A DCaseFormat.java42 LOWER_CAMEL(CharMatcher.inRange('A', 'Z'), ""),
47 UPPER_CAMEL(CharMatcher.inRange('A', 'Z'), ""),
H A DCharMatcher.java77 .or(inRange('\u2000', '\u200a'))
89 .or(inRange('\u2000', '\u2006'))
90 .or(inRange('\u2008', '\u200a'))
96 public static final CharMatcher ASCII = inRange('\0', '\u007f');
105 CharMatcher digit = inRange('0', '9');
111 digit = digit.or(inRange(base, (char) (base + 9)));
118 * definition}. If you only care to match ASCII digits, you can use {@code inRange('0', '9')}.
129 * inRange('a', 'z').or(inRange('A', 'Z'))}.
172 inRange('\u000
496 public 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.java775 inRange(val, 0x2028, 0x2029) ||
776 inRange(val, 0x202A, 0x202E) ||
777 inRange(val, 0x206A, 0x206F) ||
778 inRange(val, 0xFFF9, 0xFFFC) ||
779 inRange(val, 0xE0000, 0xE007F)) {
794 public boolean inRange(int val, int min, int max) { method in class:RootDocToXML
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_tok.h135 UBool inRange; /* Are we in a range? */ member in struct:__anon12128
H A Dcompactdecimalformat.cpp161 static int32_t computeLog10(double x, UBool inRange);
893 // computeLog10 computes floor(log10(x)). If inRange is TRUE, the biggest
895 // numbers > 10^MAX_DIGITS. If inRange is FALSE, computeLog10 will return
897 static int32_t computeLog10(double x, UBool inRange) { argument
899 int32_t max = inRange ? MAX_DIGITS - 1 : MAX_DIGITS;
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFFont.cpp525 bool inRange = local
531 if (!inSubset || !inRange) {
/external/skia/src/pdf/
H A DSkPDFFont.cpp511 bool inRange = local
517 if (!inSubset || !inRange) {
/external/icu/icu4c/source/i18n/
H A Dcompactdecimalformat.cpp161 static int32_t computeLog10(double x, UBool inRange);
893 // computeLog10 computes floor(log10(x)). If inRange is TRUE, the biggest
895 // numbers > 10^MAX_DIGITS. If inRange is FALSE, computeLog10 will return
897 static int32_t computeLog10(double x, UBool inRange) { argument
899 int32_t max = inRange ? MAX_DIGITS - 1 : MAX_DIGITS;
/external/chromium_org/third_party/icu/source/common/
H A Dunames.cpp1836 const AlgorithmicRange *inRange; local
1885 inRange=(const AlgorithmicRange *)(inBytes+offset);
1886 offset+=ds->readUInt16(inRange->size);
2040 inRange=(const AlgorithmicRange *)(inBytes+offset);
2042 offset+=ds->readUInt16(inRange->size);
2044 ds->swapArray32(ds, inRange, 8, outRange, pErrorCode);
2045 ds->swapArray16(ds, &inRange->size, 2, &outRange->size, pErrorCode);
2046 switch(inRange->type) {
2049 ds->swapInvChars(ds, inRange+1, (int32_t)uprv_strlen((const char *)(inRange
[all...]
/external/icu/icu4c/source/common/
H A Dunames.cpp1840 const AlgorithmicRange *inRange; local
1889 inRange=(const AlgorithmicRange *)(inBytes+offset);
1890 offset+=ds->readUInt16(inRange->size);
2044 inRange=(const AlgorithmicRange *)(inBytes+offset);
2046 offset+=ds->readUInt16(inRange->size);
2048 ds->swapArray32(ds, inRange, 8, outRange, pErrorCode);
2049 ds->swapArray16(ds, &inRange->size, 2, &outRange->size, pErrorCode);
2050 switch(inRange->type) {
2053 ds->swapInvChars(ds, inRange+1, (int32_t)uprv_strlen((const char *)(inRange
[all...]
/external/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp24 static bool inRange(const MCExpr *Expr, int64_t MinValue, int64_t MaxValue) { function
196 return Kind == KindImm && inRange(Imm, MinValue, MaxValue);
214 return isMem(RegKind, MemKind) && inRange(Mem.Disp, 0, 0xfff);
217 return isMem(RegKind, MemKind) && inRange(Mem.Disp, -524288, 524287);
220 return isMemDisp12(RegKind, BDLMem) && inRange(Mem.Length, 1, 0x100);
/external/valgrind/main/coregrind/m_debuginfo/
H A Ddebuginfo.c1338 Bool inRange; local
1346 inRange = di->fsm.have_rx_map
1349 inRange = (di->data_present
1375 if (!inRange) continue;
H A Dreaddwarf.c119 static Word index_WordArray ( /*OUT*/Bool* inRange, WordArray* wa, Int i ) argument
121 vg_assert(inRange);
123 *inRange = True;
126 *inRange = False;
305 Bool inRange; local
308 diridx = index_WordArray( &inRange, fnidx2dir, filename_index );
309 if (!inRange) goto bad;
311 dirname = index_WordArray( &inRange, dirnames, (Int)diridx );
312 if (!inRange) goto bad;
352 Bool inRange local
723 Bool inRange = False; local
761 Bool inRange = False; local
[all...]
/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/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 4540 milliseconds