Home
last modified time | relevance | path

Searched refs:RANGE (Results 1 – 25 of 52) sorted by relevance

123

/external/chromium-trace/catapult/third_party/Paste/tests/
Dtest_httpheaders.py93 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/
Dordered_set_tests.py33 RANGE = 10
34 for i in range(RANGE):
55 for i in range(RANGE):
58 self.assertEqual(len(self.__set), RANGE-i-1)
62 for subrange in range(RANGE):
74 RANGE = 10
75 for i in range(RANGE):
78 self.assertEqual(my_len, RANGE)
Dvar_dict_tests.py59 RANGE = 10
60 for i in range(RANGE):
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DEncodingInfo.java324 private static final int RANGE = 128; field in EncodingInfo.EncodingImpl
330 final private boolean m_alreadyKnown[] = new boolean[RANGE];
335 final private boolean m_isInEncoding[] = new boolean[RANGE];
352 m_explLast = codePoint + (RANGE-1); in EncodingImpl()
383 if (0 <= idx && idx < RANGE) { in EncodingImpl()
/external/llvm/test/Transforms/InstCombine/
Dload-combine-metadata.ll9 ; CHECK-SAME: !range ![[RANGE:[0-9]+]]
20 ; CHECK: ![[RANGE]] = !{i32 0, i32 5, i32 7, i32 9}
Dfold-phi-load-metadata.ll12 ; CHECK: load i32, i32* %{{[a-z0-9.]+}}, align 4, !tbaa ![[TBAA:[0-9]+]], !range ![[RANGE:[0-9]+]],…
42 ; CHECK: ![[RANGE]] = !{i32 10, i32 25}
/external/clang/include/clang/AST/
DStmtCXX.h130 enum { RANGE, BEGINEND, COND, INC, LOOPVAR, BODY, END }; enumerator
154 DeclStmt *getRangeStmt() { return cast<DeclStmt>(SubExprs[RANGE]); } in getRangeStmt()
164 return cast<DeclStmt>(SubExprs[RANGE]); in getRangeStmt()
180 void setRangeInit(Expr *E) { SubExprs[RANGE] = reinterpret_cast<Stmt*>(E); } in setRangeInit()
181 void setRangeStmt(Stmt *S) { SubExprs[RANGE] = S; } in setRangeStmt()
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DXYAxisType.java21 RANGE enumConstant
DXYStepCalculator.java44 case RANGE: in getStep()
DXYGraphWidget.java426 case RANGE: in drawTickText()
505 drawTickText(canvas, XYAxisType.RANGE, yVal, xPix, yPix - rangeLabelVerticalOffset, in drawRangeTick()
614 XYStep rangeStep = XYStepCalculator.getStep(plot, XYAxisType.RANGE, in drawGrid()
/external/jemalloc/test/integration/
Drallocx.c120 #define RANGE 2048 in TEST_BEGIN() macro
134 for (j = 1; j < RANGE; j++) { in TEST_BEGIN()
/external/selinux/checkpolicy/
Dpolicy_scan.l127 RANGE |
128 range { return(RANGE); }
/external/jetty/src/java/org/eclipse/jetty/http/
DHttpHeaders.java79 RANGE= "Range", field in HttpHeaders
214 RANGE_BUFFER=CACHE.add(RANGE,RANGE_ORDINAL),
/external/iputils/
Dclockdiff.c90 #define RANGE 1 /* best expected round-trip time, ms */ macro
286 if (diff < RANGE) { in measure()
493 if (diff < RANGE) { in measure_opt()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Dserialize.g113 | #( RANGE c3:CHAR_LITERAL c4:CHAR_LITERAL )
201 | #(RANGE atom atom)
/external/guava/guava/src/com/google/common/net/
DHttpHeaders.java109 public static final String RANGE = "Range"; field in HttpHeaders
/external/clang/lib/AST/
DStmtCXX.cpp59 SubExprs[RANGE] = Range; in CXXForRangeStmt()
/external/bison/tests/
Dactions.at374 #define RANGE(Location) ]AT_LALR1_CC_IF([(Location).begin.line, (Location).end.line],
379 fprintf (stderr, #Symbol " (%d@%d-%d)" Sep, Value, RANGE(Location))
405 { fprintf (stderr, "Freeing nterm input (%d@%d-%d)\n", $$, RANGE (@$)); }
409 { fprintf (stderr, "Freeing nterm line (%d@%d-%d)\n", $$, RANGE (@$)); }
413 { fprintf (stderr, "Freeing nterm thing (%d@%d-%d)\n", $$, RANGE (@$)); }
417 { fprintf (stderr, "Freeing token 'x' (%d@%d-%d)\n", $$, RANGE (@$)); }
421 { fprintf (stderr, "Freeing token 'y' (%d@%d-%d)\n", $$, RANGE (@$)); }
426 { fprintf (stderr, "Freeing token END (%d@%d-%d)\n", $$, RANGE (@$)); }
485 fprintf (stderr, "error (@%d-%d) ", RANGE (@2));
518 fprintf (stderr, " (%d@%d-%d)\n", c, RANGE (]AT_LOC[));
/external/icu/icu4c/source/tools/gencolusb/
Dextract_unsafe_backwards.cpp130 #if RANGE in main()
/external/chromium-trace/catapult/third_party/Paste/paste/
Dfileapp.py147 range = RANGE.parse(environ)
155 self.content_length, RANGE(environ))
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DLeftRecursiveRuleWalker.g106 | ^(RANGE CHAR_LITERAL CHAR_LITERAL)
247 | ^(RANGE atom atom)
DANTLRv3.g46 RANGE;
72 RANGE='..';
297 : c1=CHAR_LITERAL RANGE c2=CHAR_LITERAL elementOptions?
DANTLRTreePrinter.g210 | #( RANGE c3:CHAR_LITERAL c4:CHAR_LITERAL )
380 | ^(RANGE atom {out("..");} atom)
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
DANTLRv3.g47 RANGE;
74 RANGE='..';
309 : c1=CHAR_LITERAL RANGE c2=CHAR_LITERAL -> ^(CHAR_RANGE[$c1,".."] $c1 $c2)
/external/opencv3/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_begins/
Dpy_histogram_begins.markdown55 **RANGE** : It is the range of intensity values you want to measure. Normally, it is [0,256], ie all
76 -# ranges : this is our RANGE. Normally, it is [0,256].

123