/third_party/skia/modules/canvaskit/npm_build/ |
H A D | textapi_utils.js | 28 _path: null, // only use x,top,bottom if path is null 35 place: function(x, top, bottom) { 38 this._bottom = bottom; 112 if (y <= l.bottom) { 173 path.addRect([ax, la.top, bx, la.bottom]); 175 path.addRect([ax, la.top, width, la.bottom]); 176 path.addRect([0, lb.top, bx, lb.bottom]); 177 if (la.bottom < lb.top) { 178 path.addRect([0, la.bottom, width, lb.top]); // extra lines inbetween 272 return this._lines[this._lines.length-1].bottom; [all...] |
/third_party/skia/demos.skia.org/demos/textedit/ |
H A D | textapi_utils.js | 28 _path: null, // only use x,top,bottom if path is null 35 place: function(x, top, bottom) { 38 this._bottom = bottom; 114 const l = lines.find((l) => y <= l.bottom); 153 path.addRect([ax, la.top, bx, la.bottom]); 155 path.addRect([ax, la.top, width, la.bottom]); 156 path.addRect([0, lb.top, bx, lb.bottom]); 157 if (la.bottom < lb.top) { 158 path.addRect([0, la.bottom, width, lb.top]); // extra lines inbetween 261 return this._lines[this._lines.length-1].bottom; [all...] |
/third_party/weex-loader/deps/weex-styler/lib/ |
H A D | validator.js | 189 var LINE_GRADIENT_DIRECTION_REGEXP = /^\s*(to|bottom|right|left|top)|[-+]?[0-9]*\.?[0-9]+(.*)/ 190 var LINE_GRADIENT_TO_DIRECTION_REGEXP = /(to|bottom|right|left|top)/ 1418 directions: ["to", "bottom"], 1614 let scaleY = ['top','bottom'] 1760 const positionReg = /left|right|top|bottom|center/g 1762 if (/^(left|right|top|bottom|center)$/.test(v)) { 1789 if (/^(left|right|top|bottom|center)$/.test(value)) { 1829 const scaleYReg = /^(top|bottom)$/ 1902 const positionReg = /left|right|top|bottom|center/g 1904 if (/^(left|right|top|bottom|cente [all...] |
/kernel/linux/linux-5.10/drivers/media/pci/saa7134/ |
H A D | saa7134-go7007.c | 54 u8 *bottom; member 238 go7007_parse_video_stream(go, saa->bottom, PAGE_SIZE); in saa7134_go7007_irq_ts_done() 258 virt_to_page(saa->bottom), in saa7134_go7007_stream_start() 445 saa->bottom = (u8 *)get_zeroed_page(GFP_KERNEL); in saa7134_go7007_init() 446 if (!saa->bottom) in saa7134_go7007_init() 471 if (saa->bottom) in saa7134_go7007_init() 472 free_page((unsigned long)saa->bottom); in saa7134_go7007_init() 493 free_page((unsigned long)saa->bottom); in saa7134_go7007_fini()
|
/kernel/linux/linux-6.6/drivers/media/pci/saa7134/ |
H A D | saa7134-go7007.c | 54 u8 *bottom; member 233 go7007_parse_video_stream(go, saa->bottom, PAGE_SIZE); in saa7134_go7007_irq_ts_done() 253 virt_to_page(saa->bottom), in saa7134_go7007_stream_start() 440 saa->bottom = (u8 *)get_zeroed_page(GFP_KERNEL); in saa7134_go7007_init() 441 if (!saa->bottom) in saa7134_go7007_init() 466 if (saa->bottom) in saa7134_go7007_init() 467 free_page((unsigned long)saa->bottom); in saa7134_go7007_init() 488 free_page((unsigned long)saa->bottom); in saa7134_go7007_fini()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/ |
H A D | BitmapSizeTable.java | 157 int bottom = 0; in binarySearchIndexSubTables() 159 while (top != bottom) { in binarySearchIndexSubTables() 160 index = (top + bottom) / 2; in binarySearchIndexSubTables() 170 bottom = index + 1; in binarySearchIndexSubTables() 453 int bottom = 0; in binarySearchIndexSubTables() 455 while (top != bottom) { in binarySearchIndexSubTables() 456 index = (top + bottom) / 2; in binarySearchIndexSubTables() 466 bottom = index + 1; in binarySearchIndexSubTables()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/ |
H A D | bitmap_size_table.cc | 156 int32_t bottom = 0; in BinarySearchIndexSubTables() local 158 while (top != bottom) { in BinarySearchIndexSubTables() 159 index = (top + bottom) / 2; in BinarySearchIndexSubTables() 168 bottom = index + 1; in BinarySearchIndexSubTables() 433 int32_t bottom = 0; in BinarySearchIndexSubTables() local 435 while (top != bottom) { in BinarySearchIndexSubTables() 436 index = (top + bottom) / 2; in BinarySearchIndexSubTables() 445 bottom = index + 1; in BinarySearchIndexSubTables()
|
/third_party/python/Modules/cjkcodecs/ |
H A D | cjkcodecs.h | 31 unsigned char bottom, top; member 37 unsigned char bottom, top; member 43 unsigned char bottom, top; member 49 unsigned char bottom, top; member 191 ((m)->map != NULL && (val) >= (m)->bottom && \ 193 (m)->bottom]) != NOCHAR) 199 (val) >= (m)->bottom && \ 201 ((assi) = (m)->map[(val) - (m)->bottom]) != UNIINV)
|
/third_party/skia/docs/examples/ |
H A D | Rect_isEmpty.cpp | 10 rect.bottom(), rect.isEmpty() ? "" : " not"); in REG_FIDDLE() 13 rect.bottom(), rect.isEmpty() ? "" : " not"); in REG_FIDDLE()
|
H A D | Rect_MakeXYWH.cpp | 9 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 12 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | Rect_MakeLTRB.cpp | 9 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 12 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | Rect_setXYWH.cpp | 10 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 13 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | Rect_setWH.cpp | 10 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 13 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | Rect_contains_3.cpp | 11 rect.left(), rect.top(), rect.right(), rect.bottom(), in REG_FIDDLE() 13 contained.left(), contained.top(), contained.right(), contained.bottom()); in REG_FIDDLE()
|
H A D | Rect_contains_2.cpp | 11 rect.left(), rect.top(), rect.right(), rect.bottom(), in REG_FIDDLE() 13 contained.left(), contained.top(), contained.right(), contained.bottom()); in REG_FIDDLE()
|
H A D | Rect_isSorted.cpp | 10 rect.bottom(), rect.isSorted() ? "" : " not"); in REG_FIDDLE() 13 rect.bottom(), rect.isSorted() ? "" : " not"); in REG_FIDDLE()
|
H A D | Rect_makeOffset.cpp | 9 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 12 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | Rect_makeOutset.cpp | 9 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 12 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | Rect_makeInset.cpp | 9 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 12 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | IRect_MakeLTRB.cpp | 9 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 12 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | IRect_setXYWH.cpp | 10 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 13 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | IRect_makeOffset.cpp | 9 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 12 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | IRect_makeOutset.cpp | 9 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 12 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | IRect_makeInset.cpp | 9 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE() 12 rect.bottom(), rect.isEmpty() ? "true" : "false"); in REG_FIDDLE()
|
H A D | IRect_isEmpty64.cpp | 10 rect.bottom(), rect.isEmpty64() ? "" : " not"); in REG_FIDDLE() 13 rect.bottom(), rect.isEmpty64() ? "" : " not"); in REG_FIDDLE()
|