Searched refs:rotated (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/ash/display/
H A Dcursor_window_controller.cc227 gfx::ImageSkia rotated = *image; local
233 rotated = gfx::ImageSkiaOperations::CreateRotatedImage(
236 rotated.width() - hot_point_.y(),
240 rotated = gfx::ImageSkiaOperations::CreateRotatedImage(
243 rotated.height() - hot_point_.x(),
244 rotated.width() - hot_point_.y());
247 rotated = gfx::ImageSkiaOperations::CreateRotatedImage(
251 rotated.height() - hot_point_.x());
258 delegate_->SetCursorImage(rotated, display_);
/external/chromium_org/ui/keyboard/resources/
H A Dtouch_fuzzing.js128 var min = line.rotated ? this.top : this.left;
129 var max = line.rotated ? this.bottom : this.right;
156 this.rotated = orientation;
168 var c = this.rotated ? y : x;
236 var currentRotation = this.decision.rotated;
/external/openssl/crypto/modes/asm/
H A Dghashv8-armx.S54 vld1.64 {q0},[r0] @ load [rotated] Xi
62 vld1.64 {q9},[r2],r12 @ load [rotated] inp
76 veor q9,q9,q10 @ q9 is rotated inp^Xi
89 vld1.64 {q9},[r2],r12 @ load [rotated] inp
94 vmov d3,d0 @ Xm is rotated Xl
H A Dghashv8-armx.pl98 vld1.64 {$Xl},[$Xi] @ load [rotated] Xi
106 vld1.64 {$t1},[$inp],$inc @ load [rotated] inp
120 veor $t1,$t1,$t2 @ $t1 is rotated inp^Xi
133 vld1.64 {$t1},[$inp],$inc @ load [rotated] inp
138 vmov $Xm#hi,$Xl#lo @ Xm is rotated Xl
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DDownsampler.java168 Bitmap rotated = null;
170 rotated = TransformationUtils.rotateImageExif(downsampled, pool, orientation);
172 if (downsampled != rotated && !pool.put(downsampled)) {
180 return rotated;
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttobjs.h280 FT_Bool rotated; /* `is the glyph rotated?'-flag */ member in struct:TT_Size_Metrics_
H A Dttobjs.c992 metrics->rotated = FALSE;
H A Dttinterp.c5604 if ( ( args[0] & 0x200 ) != 0 && CUR.tt_metrics.rotated )
5613 if ( ( args[0] & 0x1000 ) != 0 && CUR.tt_metrics.rotated )
7686 if ( ( args[0] & 2 ) != 0 && CUR.tt_metrics.rotated )
/external/freetype/src/truetype/
H A Dttobjs.h280 FT_Bool rotated; /* `is the glyph rotated?'-flag */ member in struct:TT_Size_Metrics_
H A Dttobjs.c997 metrics->rotated = FALSE;
H A Dttinterp.c5713 if ( ( args[0] & 0x200 ) != 0 && CUR.tt_metrics.rotated )
5722 if ( ( args[0] & 0x1000 ) != 0 && CUR.tt_metrics.rotated )
7801 if ( ( args[0] & 2 ) != 0 && CUR.tt_metrics.rotated )
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
H A Dttobjs.h280 FT_Bool rotated; /* `is the glyph rotated?'-flag */ member in struct:TT_Size_Metrics_
H A Dttobjs.c1002 metrics->rotated = FALSE;
H A Dttinterp.c5604 if ( ( args[0] & 0x200 ) != 0 && CUR.tt_metrics.rotated )
5613 if ( ( args[0] & 0x1000 ) != 0 && CUR.tt_metrics.rotated )
7690 if ( ( args[0] & 2 ) != 0 && CUR.tt_metrics.rotated )
/external/chromium_org/cc/animation/
H A Dtransform_operation.cc203 // If p = (px, py) is a point in the plane being rotated about (0, 0, nz), this
357 gfx::Point3F rotated = point; local
358 rotation.TransformPoint(&rotated);
360 box->ExpandTo(rotated);
/external/chromium_org/third_party/mesa/src/docs/OLD/
H A DMESA_sprite_point.spec73 squares. One could define rotated texture images if desired. A 3D
/external/mesa3d/docs/OLD/
H A DMESA_sprite_point.spec73 squares. One could define rotated texture images if desired. A 3D
/external/chromium_org/pdf/pdfium/
H A Dpdfium_engine.cc325 // |rotated| True if source page is rotated 90 degree or 270 degree.
330 void SetPageSizeAndContentRect(bool rotated, argument
337 bool rotate_dst_page = rotated ^ page_orientation_mismatched;
353 // |rotated| True if source page is rotated 90 degree or 270 degree.
356 double src_width, double src_height, bool rotated) {
360 double actual_source_page_width = rotated ? src_height : src_width;
361 double actual_source_page_height = rotated ? src_width : src_height;
375 // |rotated| Tru
354 CalculateScaleFactor(bool scale_to_fit, const pp::Rect& content_rect, double src_width, double src_height, bool rotated) argument
377 CalculateClipBoxBoundary(FPDF_PAGE page, double scale_factor, bool rotated, ClipBox* clip_box) argument
2848 const bool rotated = (src_page_rotation % 2 == 1); local
[all...]
/external/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp3100 // Rotate Right (immediate) provides the value of the contents of a register rotated by a constant value.
3101 // The bits that are rotated off the right end are inserted into the vacated bit positions on the left.
3125 // Rotate Right (register) provides the value of the contents of a register rotated by a variable number of bits.
3126 // The bits that are rotated off the right end are inserted into the vacated bit positions on the left.
7779 rotated = ROR(R[m], rotation);
7780 R[d] = SignExtend(rotated<7:0>, 32);
7834 // rotated = ROR(R[m], rotation);
7835 uint64_t rotated = ROR (Rm, rotation, &success);
7839 // R[d] = SignExtend(rotated<7:0>, 32);
7840 int64_t data = llvm::SignExtend64<8>(rotated);
[all...]
/external/bison/
H A Dmaint.mk1546 # add exemptions (such as ChangeLog..* for rotated change logs)
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 534 milliseconds