Home
last modified time | relevance | path

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

/third_party/libwebsockets/test-apps/
Dlws-common.js26 var pageWidth, pageHeight, t;
31 pageWidth = (w > t) ? ("" + w + "px") : ("" + (t) + "px");
36 pageWidth = (w > t) ? ("" + w + "px") : ("" + (t) + "px");
40 pageWidth = "100%";
43 return (ptype === 1) ? pageWidth : pageHeight;
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/
Dlws-common.js26 var pageWidth, pageHeight, t;
31 pageWidth = (w > t) ? ("" + w + "px") : ("" + (t) + "px");
36 pageWidth = (w > t) ? ("" + w + "px") : ("" + (t) + "px");
40 pageWidth = "100%";
43 return (ptype === 1) ? pageWidth : pageHeight;
/third_party/cups-filters/filter/pdftopdf/
Dqpdf_pdftopdf_processor.cc191 double pageWidth = cropRect.right-cropRect.left; in crop() local
198 pageWidth <= pageHeight) || in crop()
200 pageWidth > pageHeight))) || in crop()
204 std::swap(pageHeight,pageWidth); in crop()
208 if(width*pageHeight/pageWidth<=height) in crop()
211 final_h = width*pageHeight/pageWidth; in crop()
214 final_w = height*pageWidth/pageHeight; in crop()
219 final_w = pageWidth; in crop()
/third_party/flutter/flutter/dev/snippets/lib/
Dsnippets.dart48 static DartFormatter formatter = DartFormatter(pageWidth: 80, fixes: StyleFix.all);