Home
last modified time | relevance | path

Searched refs:aSpan (Results 1 – 4 of 4) sorted by relevance

/external/chromium-trace/trace-viewer/src/base/
Dproperties_test.js37 var aSpan = new ASpan();
39 aSpan.addEventListener('propChange', function(event) {
43 assertFalse(aSpan.prop);
45 aSpan.prop = true;
46 assertTrue(aSpan.prop);
51 aSpan.prop = false;
52 assertFalse(aSpan.prop);
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DRegion.cpp131 Shape::SpanIterator aSpan = aShape.spansBegin(); in compareShapes() local
138 … while (aSpan != aSpanEnd && aSpan + 1 != aSpanEnd && bSpan != bSpanEnd && bSpan + 1 != bSpanEnd) { in compareShapes()
139 int aY = aSpan->y; in compareShapes()
140 int aMaxY = (aSpan + 1)->y; in compareShapes()
144 Shape::SegmentIterator aSegment = aShape.segmentsBegin(aSpan); in compareShapes()
145 Shape::SegmentIterator aSegmentEnd = aShape.segmentsEnd(aSpan); in compareShapes()
193 aSpan += 1; in compareShapes()
197 aSpan += 1; in compareShapes()
202 if (aSpan != aSpanEnd && aSpan + 1 != aSpanEnd && CompareOperation::aOutsideB(result)) in compareShapes()
/external/chromium_org/third_party/sqlite/src/src/
Dwhere.c2610 u8 aSpan[SQLITE_INDEX_SAMPLES+1]; /* Histogram regions that are spanned */ in whereInScanEst() local
2615 memset(aSpan, 0, sizeof(aSpan)); in whereInScanEst()
2633 while( iLower<iUpper ) aSpan[iLower++] = 1; in whereInScanEst()
2638 if( aSpan[i] ){ in whereInScanEst()
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c100471 u8 aSpan[SQLITE_INDEX_SAMPLES+1]; /* Histogram regions that are spanned */
100476 memset(aSpan, 0, sizeof(aSpan));
100494 while( iLower<iUpper ) aSpan[iLower++] = 1;
100499 if( aSpan[i] ){