OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cropBox
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/renderer/
PdfManipulationService.java
277
Rect
cropBox
= new Rect();
318
if (mEditor.getPageCropBox(i,
cropBox
)) {
319
cropBox
.left = (int) (
cropBox
.left * scale + 0.5f);
320
cropBox
.top = (int) (
cropBox
.top * scale + 0.5f);
321
cropBox
.right = (int) (
cropBox
.right * scale + 0.5f);
322
cropBox
.bottom = (int) (
cropBox
.bottom * scale + 0.5f)
[
all
...]
/frameworks/base/graphics/java/android/graphics/pdf/
PdfEditor.java
192
* @param
cropBox
The crop box.
194
public void setPageCropBox(int pageIndex, @NonNull Rect
cropBox
) {
196
throwIfCropBoxNull(
cropBox
);
198
nativeSetPageCropBox(mNativeDocument, pageIndex,
cropBox
);
298
private void throwIfCropBoxNull(Rect
cropBox
) {
299
if (
cropBox
== null) {
300
throw new NullPointerException("
cropBox
cannot be null");
/external/skia/include/device/xps/
SkXPSDevice.h
59
@param
cropBox
The size of the recommended view port in physical units.
70
const SkRect*
cropBox
= NULL);
/external/skia/src/device/xps/
SkXPSDevice.cpp
175
const SkRect*
cropBox
) {
[
all
...]
Completed in 89 milliseconds