HomeSort by relevance Sort by last modified time
    Searched refs:boundaries (Results 1 - 25 of 56) sorted by null

1 2 3

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multifile.py 41 global boundaries, linecount
47 boundaries += 1
58 global boundaries, linecount
59 boundaries = 0
63 assert boundaries == 2
test_strtod.py 177 # boundaries expressed as triples (n, e, u), where
180 boundaries = [
186 for n, e, u in boundaries:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multifile.py 41 global boundaries, linecount
47 boundaries += 1
58 global boundaries, linecount
59 boundaries = 0
63 assert boundaries == 2
test_strtod.py 177 # boundaries expressed as triples (n, e, u), where
180 boundaries = [
186 for n, e, u in boundaries:
  /external/chromium_org/third_party/icu/source/i18n/
brktrans.cpp 43 boundaries = new UVector32(status);
53 delete boundaries;
54 boundaries = NULL;
68 boundaries = new UVector32(status);
86 boundaries->removeAllElements();
93 // To make things much easier, we will stack the boundaries, and then insert at the end.
111 boundaries->addElement(boundary, status);
118 if (boundaries->size() != 0) { // if we found something, adjust
119 delta = boundaries->size() * fInsertion.length();
120 lastBoundary = boundaries->lastElementi()
    [all...]
brktrans.h 98 UVector32 *boundaries; member in class:BreakTransliterator
  /external/icu/icu4c/source/i18n/
brktrans.cpp 43 boundaries = new UVector32(status);
53 delete boundaries;
54 boundaries = NULL;
68 boundaries = new UVector32(status);
86 boundaries->removeAllElements();
93 // To make things much easier, we will stack the boundaries, and then insert at the end.
111 boundaries->addElement(boundary, status);
118 if (boundaries->size() != 0) { // if we found something, adjust
119 delta = boundaries->size() * fInsertion.length();
120 lastBoundary = boundaries->lastElementi()
    [all...]
brktrans.h 98 UVector32 *boundaries; member in class:BreakTransliterator
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceFilter.cpp 106 context->beginRecording(filterData->boundaries);
108 // We pass the boundaries to SkPictureImageFilter so it knows the
116 context->translate(filterData->boundaries.x(), filterData->boundaries.y());
134 FloatRect boundaries = filterData->boundaries; local
137 FloatSize deviceSize = context->getCTM().mapSize(boundaries.size());
154 // Get boundaries in device coords.
157 FloatSize size = context->getCTM().mapSize(boundaries.size());
182 context->beginLayer(1, CompositeSourceOver, &boundaries, ColorFilterNone, imageFilter.get())
    [all...]
RenderSVGResourceFilter.h 46 FloatRect boundaries; member in struct:blink::FilterData
RenderSVGShape.cpp 366 FloatRect boundaries; local
370 boundaries.unite(marker->markerBoundaries(marker->markerTransformation(m_markerPositions[i].origin, m_markerPositions[i].angle, strokeWidth)));
372 return boundaries;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FETile.cpp 99 FloatRect boundaries = effect->effectBoundaries(); local
101 result.setX(boundaries.x());
103 result.setY(boundaries.y());
105 result.setWidth(boundaries.width());
107 result.setHeight(boundaries.height());
FilterEffect.cpp 120 FloatRect boundaries = filter()->mapLocalRectToAbsoluteRect(effectBoundaries()); local
122 sourceClipRect.setX(boundaries.x());
124 sourceClipRect.setY(boundaries.y());
126 sourceClipRect.setWidth(boundaries.width());
128 sourceClipRect.setHeight(boundaries.height());
518 FloatRect boundaries = effectBoundaries(); local
520 subregion.setX(boundaries.x());
522 subregion.setY(boundaries.y());
524 subregion.setWidth(boundaries.width());
526 subregion.setHeight(boundaries.height())
555 FloatRect boundaries = effectBoundaries(); local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
rbbiapts.h 95 void doBoundaryTest(BreakIterator& bi, UnicodeString& text, int32_t *boundaries);
  /external/icu/icu4c/source/test/intltest/
rbbiapts.h 96 void doBoundaryTest(BreakIterator& bi, UnicodeString& text, int32_t *boundaries);
  /external/chromium_org/third_party/icu/source/test/cintltst/
utf8tst.c 505 * Use a (mostly) well-formed UTF-8 string and test at code point boundaries.
647 * Use a (mostly) well-formed UTF-8 string and test at code point boundaries.
659 static const int8_t boundaries[]={ 0, 1, 5, 7, 10, 12, 16, 17 }; local
665 if(offset != boundaries[i]){
666 log_err("ERROR: UTF8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset);
671 if(offset != boundaries[i]){
672 log_err("ERROR: U8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset);
676 for(i=LENGTHOF(boundaries)-2, offset=LENGTHOF(input); offset>0; --i) {
678 if(offset != boundaries[i]){
679 log_err("ERROR: UTF8_BACK_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
utf8tst.c 505 * Use a (mostly) well-formed UTF-8 string and test at code point boundaries.
647 * Use a (mostly) well-formed UTF-8 string and test at code point boundaries.
659 static const int8_t boundaries[]={ 0, 1, 5, 7, 10, 12, 16, 17 }; local
665 if(offset != boundaries[i]){
666 log_err("ERROR: UTF8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset);
671 if(offset != boundaries[i]){
672 log_err("ERROR: U8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset);
676 for(i=LENGTHOF(boundaries)-2, offset=LENGTHOF(input); offset>0; --i) {
678 if(offset != boundaries[i]){
679 log_err("ERROR: UTF8_BACK_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AbstractInlineTextBox.cpp 89 FloatRect boundaries = m_inlineTextBox->calculateBoundaries();
90 return m_renderText->localToAbsoluteQuad(boundaries).enclosingBoundingBox();
FilterEffectRenderer.cpp 363 FloatRect boundaries = mapImageFilterRect(imageFilter.get(), m_filterBoxRect); local
365 boundaries.move(-m_filterBoxRect.x(), -m_filterBoxRect.y());
366 context->beginLayer(1, CompositeSourceOver, &boundaries, ColorFilterNone, imageFilter.get());
RenderText.cpp 416 FloatRect boundaries = box->calculateBoundaries(); local
423 boundaries.setWidth(ellipsisRect.maxX() - boundaries.x());
425 boundaries.setHeight(ellipsisRect.maxY() - boundaries.y());
427 quads.append(localToAbsoluteQuad(boundaries, 0, wasFixed));
    [all...]
  /external/llvm/test/MC/X86/AlignedBundling/
single-inst-bundling.s 8 # Will be bundle-aligning to 16 byte boundaries
  /external/libvorbis/doc/
a1-encapsulation-ogg.tex 107 Vorbis packets may span page boundaries.
180 end the stream on other than even frame boundaries. The difference
02-bitpacking.tex 72 aligned to the boundaries of the byte representation; the next field
197 boundaries maintained in the bitstream.
  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 336 AddError("String literals cannot cross line boundaries.");
  /ndk/sources/host-tools/sed-4.2.1/lib/
regexec.c 109 int boundaries, Idx subexp_idx,
2051 int boundaries; local
    [all...]

Completed in 624 milliseconds

1 2 3