Home
last modified time | relevance | path

Searched refs:GROW (Results 1 – 8 of 8) 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.c2073 #define GROW if ((ctxt->progressive == 0) && \ macro
2263 GROW; in xmlPushInput()
2294 GROW; in xmlParseCharRef()
2298 GROW; in xmlParseCharRef()
2327 GROW; in xmlParseCharRef()
2331 GROW; in xmlParseCharRef()
3156 GROW; in xmlParseNameComplex()
3209 GROW; in xmlParseNameComplex()
3235 GROW; in xmlParseNameComplex()
3286 GROW; in xmlParseName()
[all …]
DHTMLparser.c312 #define GROW if ((ctxt->progressive == 0) && \ macro
2459 GROW; in htmlParseName()
2501 GROW; in htmlParseNameComplex()
2517 GROW; in htmlParseNameComplex()
2708 GROW; in htmlParseEntityRef()
2972 GROW; in htmlParseScript()
3057 GROW; in htmlParseCharDataInternal()
3062 GROW; in htmlParseCharDataInternal()
3245 GROW; in htmlParsePI()
3253 GROW; in htmlParsePI()
[all …]
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()