Searched defs:Border (Results 1 - 8 of 8) sorted by last modified time

/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfAnnotationDictionary_autogen.cpp131 SkPdfArray* SkPdfAnnotationDictionary::Border(SkPdfNativeDoc* doc) { function in class:SkPdfAnnotationDictionary
132 SkPdfNativeObject* ret = get("Border", "");
140 return get("Border", "") != NULL;
/external/mesa3d/src/mesa/main/
H A Dmtypes.h1198 GLuint Border; /**< 0 or 1 */ member in struct:gl_texture_image
1199 GLuint Width; /**< = 2^WidthLog2 + 2*Border */
1200 GLuint Height; /**< = 2^HeightLog2 + 2*Border */
1201 GLuint Depth; /**< = 2^DepthLog2 + 2*Border */
1202 GLuint Width2; /**< = Width - 2*Border */
1203 GLuint Height2; /**< = Height - 2*Border */
1204 GLuint Depth2; /**< = Depth - 2*Border */
/external/libvpx/libvpx/vp8/decoder/
H A Ddecodeframe.c310 unsigned int Border; local
316 Border = ybf->border;
318 src_ptr1 = ybf->y_buffer - Border;
319 dest_ptr1 = src_ptr1 - (Border * plane_stride);
321 for (i = 0; i < (int)Border; i++)
332 Border /= 2;
333 src_ptr1 = ybf->u_buffer - Border;
334 dest_ptr1 = src_ptr1 - (Border * plane_stride);
336 for (i = 0; i < (int)(Border); i++)
346 src_ptr1 = ybf->v_buffer - Border;
362 unsigned int Border; local
425 unsigned int Border; local
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfAnnotationDictionary_autogen.cpp131 SkPdfArray* SkPdfAnnotationDictionary::Border(SkPdfNativeDoc* doc) { function in class:SkPdfAnnotationDictionary
132 SkPdfNativeObject* ret = get("Border", "");
140 return get("Border", "") != NULL;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmtypes.h1198 GLuint Border; /**< 0 or 1 */ member in struct:gl_texture_image
1199 GLuint Width; /**< = 2^WidthLog2 + 2*Border */
1200 GLuint Height; /**< = 2^HeightLog2 + 2*Border */
1201 GLuint Depth; /**< = 2^DepthLog2 + 2*Border */
1202 GLuint Width2; /**< = Width - 2*Border */
1203 GLuint Height2; /**< = Height - 2*Border */
1204 GLuint Depth2; /**< = Depth - 2*Border */
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Ddecodeframe.c311 unsigned int Border; local
317 Border = ybf->border;
319 src_ptr1 = ybf->y_buffer - Border;
320 dest_ptr1 = src_ptr1 - (Border * plane_stride);
322 for (i = 0; i < (int)Border; i++)
333 Border /= 2;
334 src_ptr1 = ybf->u_buffer - Border;
335 dest_ptr1 = src_ptr1 - (Border * plane_stride);
337 for (i = 0; i < (int)(Border); i++)
347 src_ptr1 = ybf->v_buffer - Border;
363 unsigned int Border; local
426 unsigned int Border; local
[all...]
/external/chromium_org/ui/views/
H A Dborder.cc18 class SidedSolidBorder : public Border {
22 // Overridden from Border:
75 class EmptyBorder : public Border {
80 // Overridden from Border:
97 class BorderPainter : public Border {
107 // Overridden from Border:
129 Border::Border() { function in class:views::Border
132 Border::~Border() {
[all...]
H A Dborder.h26 // Border class.
30 // view->SetBorder(Border::CreateSolidBorder(1, SkColorSetRGB(25, 25, 112));
40 class VIEWS_EXPORT Border { class in namespace:views
42 Border();
43 virtual ~Border();
45 // Convenience for creating a scoped_ptr with no Border.
46 static scoped_ptr<Border> NullBorder();
50 static scoped_ptr<Border> CreateSolidBorder(int thickness, SkColor color);
54 static scoped_ptr<Border> CreateEmptyBorder(int top,
61 static scoped_ptr<Border> CreateSolidSidedBorde
[all...]

Completed in 160 milliseconds