/external/chromium_org/third_party/icu/source/i18n/ |
D | brktrans.cpp | 43 boundaries = new UVector32(status); in BreakTransliterator() 53 delete boundaries; in ~BreakTransliterator() 54 boundaries = NULL; in ~BreakTransliterator() 68 boundaries = new UVector32(status); in BreakTransliterator() 86 boundaries->removeAllElements(); in handleTransliterate() 111 boundaries->addElement(boundary, status); in handleTransliterate() 118 if (boundaries->size() != 0) { // if we found something, adjust in handleTransliterate() 119 delta = boundaries->size() * fInsertion.length(); in handleTransliterate() 120 lastBoundary = boundaries->lastElementi(); in handleTransliterate() 124 while (boundaries->size() > 0) { in handleTransliterate() [all …]
|
D | brktrans.h | 98 UVector32 *boundaries; variable
|
/external/icu/icu4c/source/i18n/ |
D | brktrans.cpp | 43 boundaries = new UVector32(status); in BreakTransliterator() 53 delete boundaries; in ~BreakTransliterator() 54 boundaries = NULL; in ~BreakTransliterator() 68 boundaries = new UVector32(status); in BreakTransliterator() 86 boundaries->removeAllElements(); in handleTransliterate() 111 boundaries->addElement(boundary, status); in handleTransliterate() 118 if (boundaries->size() != 0) { // if we found something, adjust in handleTransliterate() 119 delta = boundaries->size() * fInsertion.length(); in handleTransliterate() 120 lastBoundary = boundaries->lastElementi(); in handleTransliterate() 124 while (boundaries->size() > 0) { in handleTransliterate() [all …]
|
D | brktrans.h | 98 UVector32 *boundaries; variable
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
D | RenderSVGResourceFilter.cpp | 106 context->beginRecording(filterData->boundaries); in beginDeferredFilter() 116 context->translate(filterData->boundaries.x(), filterData->boundaries.y()); in beginDeferredFilter() 134 FloatRect boundaries = filterData->boundaries; in drawDeferredFilter() local 137 FloatSize deviceSize = context->getCTM().mapSize(boundaries.size()); in drawDeferredFilter() 157 FloatSize size = context->getCTM().mapSize(boundaries.size()); in drawDeferredFilter() 182 context->beginLayer(1, CompositeSourceOver, &boundaries, ColorFilterNone, imageFilter.get()); in drawDeferredFilter() 206 …filterData->boundaries = SVGLengthContext::resolveRectangle<SVGFilterElement>(filterElement, filte… in applyResource() 207 if (filterData->boundaries.isEmpty()) in applyResource() 211 filterData->drawingRegion.intersect(filterData->boundaries); in applyResource() 216 …r = SVGFilter::create(intDrawingRegion, targetBoundingBox, filterData->boundaries, primitiveBoundi… in applyResource()
|
D | RenderSVGShape.cpp | 366 FloatRect boundaries; in markerRect() local 370 …boundaries.unite(marker->markerBoundaries(marker->markerTransformation(m_markerPositions[i].origin… in markerRect() 372 return boundaries; in markerRect()
|
D | RenderSVGResourceFilter.h | 46 FloatRect boundaries; member
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
D | utf8tst.c | 659 static const int8_t boundaries[]={ 0, 1, 5, 7, 10, 12, 16, 17 }; in TestFwdBackUnsafe() local 665 if(offset != boundaries[i]){ in TestFwdBackUnsafe() 666 log_err("ERROR: UTF8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset); in TestFwdBackUnsafe() 671 if(offset != boundaries[i]){ in TestFwdBackUnsafe() 672 log_err("ERROR: U8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset); in TestFwdBackUnsafe() 676 for(i=LENGTHOF(boundaries)-2, offset=LENGTHOF(input); offset>0; --i) { in TestFwdBackUnsafe() 678 if(offset != boundaries[i]){ in TestFwdBackUnsafe() 679 … log_err("ERROR: UTF8_BACK_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset); in TestFwdBackUnsafe() 682 for(i=LENGTHOF(boundaries)-2, offset=LENGTHOF(input); offset>0; --i) { in TestFwdBackUnsafe() 684 if(offset != boundaries[i]){ in TestFwdBackUnsafe() [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | utf8tst.c | 659 static const int8_t boundaries[]={ 0, 1, 5, 7, 10, 12, 16, 17 }; in TestFwdBackUnsafe() local 665 if(offset != boundaries[i]){ in TestFwdBackUnsafe() 666 log_err("ERROR: UTF8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset); in TestFwdBackUnsafe() 671 if(offset != boundaries[i]){ in TestFwdBackUnsafe() 672 log_err("ERROR: U8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset); in TestFwdBackUnsafe() 676 for(i=LENGTHOF(boundaries)-2, offset=LENGTHOF(input); offset>0; --i) { in TestFwdBackUnsafe() 678 if(offset != boundaries[i]){ in TestFwdBackUnsafe() 679 … log_err("ERROR: UTF8_BACK_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset); in TestFwdBackUnsafe() 682 for(i=LENGTHOF(boundaries)-2, offset=LENGTHOF(input); offset>0; --i) { in TestFwdBackUnsafe() 684 if(offset != boundaries[i]){ in TestFwdBackUnsafe() [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
D | FilterEffect.cpp | 120 FloatRect boundaries = filter()->mapLocalRectToAbsoluteRect(effectBoundaries()); in getSourceRect() local 122 sourceClipRect.setX(boundaries.x()); in getSourceRect() 124 sourceClipRect.setY(boundaries.y()); in getSourceRect() 126 sourceClipRect.setWidth(boundaries.width()); in getSourceRect() 128 sourceClipRect.setHeight(boundaries.height()); in getSourceRect() 518 FloatRect boundaries = effectBoundaries(); in determineFilterPrimitiveSubregion() local 520 subregion.setX(boundaries.x()); in determineFilterPrimitiveSubregion() 522 subregion.setY(boundaries.y()); in determineFilterPrimitiveSubregion() 524 subregion.setWidth(boundaries.width()); in determineFilterPrimitiveSubregion() 526 subregion.setHeight(boundaries.height()); in determineFilterPrimitiveSubregion() [all …]
|
D | FETile.cpp | 99 FloatRect boundaries = effect->effectBoundaries(); in getRect() local 101 result.setX(boundaries.x()); in getRect() 103 result.setY(boundaries.y()); in getRect() 105 result.setWidth(boundaries.width()); in getRect() 107 result.setHeight(boundaries.height()); in getRect()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | AbstractInlineTextBox.cpp | 89 FloatRect boundaries = m_inlineTextBox->calculateBoundaries(); in bounds() local 90 return m_renderText->localToAbsoluteQuad(boundaries).enclosingBoundingBox(); in bounds()
|
D | FilterEffectRenderer.cpp | 363 FloatRect boundaries = mapImageFilterRect(imageFilter.get(), m_filterBoxRect); in beginFilterEffect() local 365 boundaries.move(-m_filterBoxRect.x(), -m_filterBoxRect.y()); in beginFilterEffect() 366 … context->beginLayer(1, CompositeSourceOver, &boundaries, ColorFilterNone, imageFilter.get()); in beginFilterEffect()
|
/external/icu/icu4c/source/data/brkitr/ |
D | en_US_POSIX.txt | 11 boundaries{
|
D | el.txt | 11 boundaries{
|
D | ja.txt | 11 boundaries{
|
D | fi.txt | 11 boundaries{
|
D | root.txt | 11 boundaries{
|
/external/llvm/test/tools/llvm-objdump/ |
D | out-of-section-sym.test | 2 // of section boundaries.
|
/external/icu/icu4c/source/test/intltest/ |
D | rbbiapts.h | 96 void doBoundaryTest(BreakIterator& bi, UnicodeString& text, int32_t *boundaries);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
D | rbbiapts.h | 95 void doBoundaryTest(BreakIterator& bi, UnicodeString& text, int32_t *boundaries);
|
/external/llvm/test/MC/X86/AlignedBundling/ |
D | single-inst-bundling.s | 8 # Will be bundle-aligning to 16 byte boundaries
|
/external/valgrind/main/docs/internals/ |
D | module-structure.txt | 4 the beast is caused by the lack of clear boundaries, definitions and 59 boundaries are enforceable by the compiler.
|
/external/chromium_org/third_party/leveldatabase/src/doc/ |
D | log_format.txt | 34 split into multiple fragments (typically because of block boundaries). 63 (2) Splitting at approximate boundaries (e.g., for mapreduce) is
|
/external/chromium_org/ppapi/api/private/ |
D | pp_video_frame_private.idl | 30 * struct on 8-byte boundaries as well and pad it to 8 bytes even without this
|