HomeSort by relevance Sort by last modified time
    Searched refs:RANGE (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYAxisType.java 21 RANGE
XYStepCalculator.java 44 case RANGE:
  /external/chromium-trace/trace-viewer/third_party/Paste/tests/
test_httpheaders.py 93 assert ('bytes',[(0,300)]) == RANGE.parse("bytes=0-300")
94 assert ('bytes',[(0,300)]) == RANGE.parse("bytes = -300")
95 assert ('bytes',[(0,None)]) == RANGE.parse("bytes= -")
96 assert ('bytes',[(0,None)]) == RANGE.parse("bytes=0 - ")
97 assert ('bytes',[(300,None)]) == RANGE.parse(" BYTES=300-")
98 assert ('bytes',[(4,5),(6,7)]) == RANGE.parse(" Bytes = 4 - 5,6 - 07 ")
99 assert ('bytes',[(0,5),(7,None)]) == RANGE.parse(" bytes=-5,7-")
100 assert ('bytes',[(0,5),(7,None)]) == RANGE.parse(" bytes=-5,7-")
101 assert ('bytes',[(0,5),(7,None)]) == RANGE.parse(" bytes=-5,7-")
102 assert None == RANGE.parse(""
    [all...]
  /external/skia/platform_tools/android/tests/
ordered_set_tests.py 33 RANGE = 10
34 for i in range(RANGE):
55 for i in range(RANGE):
58 self.assertEqual(len(self.__set), RANGE-i-1)
61 # Test reset(), for a range of ranges.
62 for subrange in range(RANGE):
63 for i in range(subrange)
    [all...]
var_dict_tests.py 59 RANGE = 10
60 for i in range(RANGE):
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
EncodingInfo.java 41 * range of unicode values (<code>m_first</code> to
42 * <code>m_last</code>). It will handle a certain range of values
44 * If the unicode point is before that explicit range, that is it
45 * is in the range <code>m_first <= value < m_explFirst</code>, then it will delegate to another EncodingInfo object for The root
46 * of such a tree, m_before. Likewise for values in the range
72 * because for ASCII all chars in the range '\u0001' to '\u007F'
191 // The unicode value is before the range
204 // The unicode value is after the range
217 // The unicode value is in the range we explitly handle
238 // The unicode value is before the range
    [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXComponentDefines.h 45 #define CHECK_ENUMERATION_RANGE(INDEX, RANGE)\
46 if (INDEX >= RANGE) {\
53 LOGE("Port out of range %u", (P)->nPortIndex);\
  /external/clang/include/clang/AST/
StmtCXX.h 123 /// statement, represented as 'for (range-declarator : range-expression)'.
130 enum { RANGE, BEGINEND, COND, INC, LOOPVAR, BODY, END };
131 // SubExprs[RANGE] is an expression or declstmt.
137 CXXForRangeStmt(DeclStmt *Range, DeclStmt *BeginEnd,
150 DeclStmt *getRangeStmt() { return cast<DeclStmt>(SubExprs[RANGE]); }
160 return cast<DeclStmt>(SubExprs[RANGE]);
176 void setRangeInit(Expr *E) { SubExprs[RANGE] = reinterpret_cast<Stmt*>(E); }
177 void setRangeStmt(Stmt *S) { SubExprs[RANGE] = S; }
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
q_gain2.c 39 #define RANGE 64
90 * - Set gains search range *
96 size = RANGE;
106 p = t_qua_gain7b + RANGE; /* pt at 1/4th of table */
108 j = nb_qua_gain7b - RANGE;
124 size = RANGE;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_constants.py 58 RANGE = "range"
120 RANGE,
sre_compile.py 190 elif op is RANGE:
219 elif op is RANGE:
220 for i in range(fixup(av[0]), fixup(av[1])+1):
244 # use literal/range
249 outappend((RANGE, (p, p+n-1)))
315 elif op is RANGE:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_constants.py 58 RANGE = "range"
120 RANGE,
sre_compile.py 190 elif op is RANGE:
219 elif op is RANGE:
220 for i in range(fixup(av[0]), fixup(av[1])+1):
244 # use literal/range
249 outappend((RANGE, (p, p+n-1)))
315 elif op is RANGE:
  /packages/apps/Gallery2/jni/filters/
wbalance.c 22 int RANGE = 256;
40 for (i = 1; i < RANGE-1; i++) {
66 for (i = RANGE-2; i >0; i--) {
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
LeftRecursiveRuleWalker.g 106 | ^(RANGE CHAR_LITERAL CHAR_LITERAL)
247 | ^(RANGE atom atom)
AssignTokenTypesWalker.g 264 | ^( RANGE CHAR_LITERAL CHAR_LITERAL )
363 | ^(RANGE atom atom)
ANTLRv3.g 46 RANGE;
72 RANGE='..';
256 | range
257 ( (op='^'|op='!') -> ^($op range)
258 | -> range
296 range!
297 : c1=CHAR_LITERAL RANGE c2=CHAR_LITERAL elementOptions?
ANTLR.g 82 RANGE;
741 : range (ROOT^|BANG^)?
802 range
803 : c1=CHAR_LITERAL RANGE c2=CHAR_LITERAL
1132 RANGE : '..' ;
  /external/guava/guava/src/com/google/common/net/
HttpHeaders.java 96 /** The HTTP {@code If-Range} header field name. */
97 public static final String IF_RANGE = "If-Range";
108 /** The HTTP {@code Range} header field name. */
109 public static final String RANGE = "Range";
149 /** The HTTP {@code Content-Range} header field name. */
150 public static final String CONTENT_RANGE = "Content-Range";
  /external/selinux/checkpolicy/
policy_scan.l 127 RANGE |
128 range { return(RANGE); }
  /external/jemalloc/test/integration/
rallocx.c 73 #define RANGE 2048
87 for (j = 1; j < RANGE; j++) {
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpHeaders.java 54 CONTENT_RANGE= "Content-Range",
74 IF_RANGE= "If-Range",
79 RANGE= "Range",
80 REQUEST_RANGE= "Request-Range",
214 RANGE_BUFFER=CACHE.add(RANGE,RANGE_ORDINAL),
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 47 RANGE;
74 RANGE='..';
263 atom: range ( (op='^'|op='!') -> ^($op range) | -> range )
308 range!
309 : c1=CHAR_LITERAL RANGE c2=CHAR_LITERAL -> ^(CHAR_RANGE[$c1,".."] $c1 $c2)
  /external/iputils/
clockdiff.c 90 #define RANGE 1 /* best expected round-trip time, ms */
163 * time is smaller than RANGE if ckrange is 1, otherwise simply
286 if (diff < RANGE) {
339 * time is smaller than RANGE if ckrange is 1, otherwise simply
493 if (diff < RANGE) {
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
fileapp.py 147 range = RANGE.parse(environ)
148 if range and 'bytes' == range[0] and 1 == len(range[1]):
149 (lower, upper) = range[1][0]
153 "Range request was made beyond the end of the content,\r\n"
154 "which is %s long.\r\n Range: %s\r\n") % (
155 self.content_length, RANGE(environ))
162 if range or content_length != self.content_length
    [all...]

Completed in 2596 milliseconds

1 2 3 4 5