Home
last modified time | relevance | path

Searched refs:GROW (Results 1 – 10 of 10) sorted by relevance

/external/angle/tools/flex-bison/third_party/m4sugar/
Dm4sugar.m41520 # diversion, GROW. When the outer macro is fully expanded, we first
1521 # undivert the most nested diversions (GROW - 1...), and finally
1522 # undivert GROW. To understand why we need several diversions,
1533 # GROW - 2: Test...3
1534 # GROW - 1: Test...2
1535 # GROW: Test...1
1538 # Finally the epilogue of TEST1 undiverts GROW - 2, GROW - 1, and
1539 # GROW into the regular flow, BODY.
1541 # GROW - 2:
1542 # GROW - 1:
[all …]
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
DXYPlotTest.java108 plot.centerOnDomainOrigin(5, null, BoundaryMode.GROW); in testOriginGrowMode()
174 plot.setDomainBoundaries(2, BoundaryMode.GROW, 8, BoundaryMode.GROW); in testsetDomainBoundaries()
257 plot.setRangeBoundaries(2, BoundaryMode.GROW, 8, BoundaryMode.GROW); in testsetRangeBoundaries()
/external/libxml2/
Dparser.c2126 #define GROW if ((ctxt->progressive == 0) && \ macro
2315 GROW; in xmlPushInput()
2345 GROW; in xmlParseCharRef()
2349 GROW; in xmlParseCharRef()
2377 GROW; in xmlParseCharRef()
2381 GROW; in xmlParseCharRef()
3218 GROW; in xmlParseNameComplex()
3271 GROW; in xmlParseNameComplex()
3297 GROW; in xmlParseNameComplex()
3348 GROW; in xmlParseName()
[all …]
DHTMLparser.c312 #define GROW if ((ctxt->progressive == 0) && \ macro
2637 GROW; in htmlParseName()
2678 GROW; in htmlParseNameComplex()
2694 GROW; in htmlParseNameComplex()
2885 GROW; in htmlParseEntityRef()
3138 GROW; in htmlParseScript()
3218 GROW; in htmlParseCharDataInternal()
3223 GROW; in htmlParseCharDataInternal()
3406 GROW; in htmlParsePI()
3420 GROW; in htmlParsePI()
[all …]
DNEWS392 CVE-2015-7499-2 Detect incoherency on GROW (Daniel Veillard),
DChangeLog1386 * parser.c: added a GROW when parsing complex comments (bug #405666)
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DBoundaryMode.java22 GROW, enumConstant
DXYPlot.java430 case GROW: in updateDomainMinMaxForEdgeModel()
450 case GROW: in updateDomainMinMaxForEdgeModel()
472 case GROW: in updateRangeMinMaxForEdgeModel()
492 case GROW: in updateRangeMinMaxForEdgeModel()
632 case GROW: { in updateDomainMinMaxForOriginModel()
680 case GROW: in updateRangeMinMaxForOriginModel()
/external/grpc-grpc/src/core/lib/slice/
Dslice_buffer.cc33 #define GROW(x) (3 * (x) / 2) macro
47 sb->capacity = GROW(sb->capacity); in maybe_embiggen()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/slice/
Dslice_buffer.cc33 #define GROW(x) (3 * (x) / 2) macro
48 const size_t new_capacity = GROW(sb->capacity); in do_embiggen()