Searched refs:left (Results 501 - 525 of 2877) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/third_party/polymer/components/paper-slider/
H A Dpaper-slider.css23 float: left;
30 left: 16px;
40 left: 15px;
64 left: 0;
71 transition: left 0.08s ease;
121 left: 0;
124 margin-left: 3px;
149 left: 0;
/external/chromium_org/third_party/polymer/components/paper-toggle-button/
H A Dpaper-toggle-button.css27 left: 16px;
44 left: 0;
/external/chromium_org/third_party/polymer/components-chromium/paper-slider/
H A Dpaper-slider.css23 float: left;
30 left: 16px;
40 left: 15px;
64 left: 0;
71 transition: left 0.08s ease;
121 left: 0;
124 margin-left: 3px;
149 left: 0;
/external/chromium_org/third_party/polymer/components-chromium/paper-toggle-button/
H A Dpaper-toggle-button.css27 left: 16px;
44 left: 0;
/external/chromium_org/third_party/skia/src/core/
H A DSkBlitter.cpp277 void SkRectClipBlitter::blitH(int left, int y, int width) { argument
284 int right = left + width;
286 if (left < fClipRect.fLeft) {
287 left = fClipRect.fLeft;
293 width = right - left;
295 fBlitter->blitH(left, y, width);
299 void SkRectClipBlitter::blitAntiH(int left, int y, const SkAlpha aa[], argument
301 if (!y_in_rect(y, fClipRect) || left >= fClipRect.fRight) {
305 int x0 = left;
306 int x1 = left
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsLine.cpp33 // Return: >0 for P2 left of the line through P0 and P1
126 double SkDLine::ExactPointH(const SkDPoint& xy, double left, double right, double y) { argument
128 if (xy.fX == left) {
138 double SkDLine::NearPointH(const SkDPoint& xy, double left, double right, double y) { argument
142 if (!AlmostBetweenUlps(left, xy.fX, right)) {
145 double t = (xy.fX - left) / (right - left);
148 double realPtX = (1 - t) * left + t * right;
152 double tiniest = SkTMin(SkTMin(y, left), right);
153 double largest = SkTMax(SkTMax(y, left), righ
[all...]
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGRect.cpp30 SVG_ADD_ATTRIBUTE_ALIAS(left, x);
/external/chromium_org/third_party/webrtc/modules/utility/interface/
H A Daudio_frame_operations.h44 // Swap the left and right channels of |frame|. Fails silently if |frame| is
51 static int Scale(float left, float right, AudioFrame& frame);
/external/chromium_org/third_party/webrtc/modules/video_render/ios/
H A Dopen_gles20.h35 const float left,
H A Dvideo_render_ios_gles20.mm102 window_width_ = window_rect_.right - window_rect_.left;
110 float left,
122 if (new_eagl_channel->SetStreamSettings(z_order, left, top, right, bottom) ==
192 if (window_width_ != (window_rect_.right - window_rect_.left) ||
194 window_width_ = window_rect_.right - window_rect_.left;
243 rect.left = bounds.origin.x;
284 const float left,
296 agl_channel->SetStreamSettings(0, left, top, right, bottom);
/external/chromium_org/third_party/webrtc/modules/video_render/linux/
H A Dvideo_x11_render.cc65 const float left,
89 renderChannel->Init(_window, left, top, right, bottom);
129 float& left,
143 renderChannel->GetStreamProperties(zOrder, left, top, right, bottom);
62 CreateX11RenderChannel( int32_t streamId, int32_t zOrder, const float left, const float top, const float right, const float bottom) argument
126 GetIncomingStreamProperties( int32_t streamId, uint32_t& zOrder, float& left, float& top, float& right, float& bottom) argument
/external/chromium_org/tools/gn/
H A Doperators.h31 const ParseNode* left,
/external/chromium_org/ui/base/cocoa/
H A Dappkit_utils.h18 int left; member in struct:ui::NinePartImageIds
/external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
H A Dcontrol_panel.css62 left: 0;
135 left: -2px; /* Required to align the input element with the parent. */
158 left and right must be equal to 1/2 of the thumb icon width. */
160 left: 14px; /* Exactly 1/2 of the thumb width */
174 /* The filled portion of the slider bar to the left of the thumb. */
179 border-left-style: none;
181 left: 0;
185 /* Rounded caps to the left and right of the slider bar. */
191 .custom-slider > .bar > .cap.left {
203 left
[all...]
/external/chromium_org/ui/views/controls/
H A Dfocusable_border.h27 void SetInsets(int top, int left, int bottom, int right);
/external/chromium_org/ui/webui/resources/css/
H A Dtrash.css24 left: 8px;
56 margin-left: 1px;
/external/freetype/include/
H A Dftpfr.h110 * left :: Index of the left glyph.
130 FT_UInt left,
/external/freetype/include/internal/services/
H A Dsvpfr.h41 FT_UInt left,
/external/guava/guava/src/com/google/common/collect/
H A DReverseNaturalOrdering.java33 @Override public int compare(Comparable left, Comparable right) { argument
34 checkNotNull(left); // right null is caught later
35 if (left == right) {
39 return right.compareTo(left);
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedBytes.java278 // @Override public int compare(byte[] left, byte[] right) {
279 // int minLength = Math.min(left.length, right.length);
288 // long lw = theUnsafe.getLong(left, BYTE_ARRAY_BASE_OFFSET + (long) i);
323 // int result = UnsignedBytes.compare(left[i], right[i]);
328 // return left.length - right.length;
337 @Override public int compare(byte[] left, byte[] right) { argument
338 int minLength = Math.min(left.length, right.length);
340 int result = UnsignedBytes.compare(left[i], right[i]);
345 return left.length - right.length;
/external/libvpx/armv7a-neon/
H A Dvp9_rtcd.h76 void vp9_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
79 void vp9_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
82 void vp9_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
85 void vp9_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
88 void vp9_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
91 void vp9_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
94 void vp9_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
97 void vp9_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
100 void vp9_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
103 void vp9_d153_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
[all...]
/external/openfst/src/lib/
H A Dsymbol-table-ops.cc21 SymbolTable *MergeSymbolTable(const SymbolTable &left, const SymbolTable &right, argument
24 // copied version of SymbolTable of left or right if either symbol table is
26 SymbolTable *merged = new SymbolTable("merge_" + left.Name() + "_" +
28 // copy everything from the left symbol table
30 SymbolTableIterator liter(left);
61 // Symbol doesn't exist from left
76 return left.Copy();
/external/pdfium/core/include/thirdparties/freetype/freetype/internal/services/
H A Dsvpfr.h41 FT_UInt left,
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/services/
H A Dsvpfr.h41 FT_UInt left,
/external/pdfium/fpdfsdk/include/
H A Dfpdftext.h81 // left - Pointer to a double number receiving left position of the character box.
90 DLLEXPORT void STDCALL FPDFText_GetCharBox(FPDF_TEXTPAGE text_page, int index, double* left,
145 // left - Pointer to a double value receiving the rectangle left boundary.
152 DLLEXPORT void STDCALL FPDFText_GetRect(FPDF_TEXTPAGE text_page, int rect_index, double* left, double* top,
159 // left - Left boundary.
169 DLLEXPORT int STDCALL FPDFText_GetBoundedText(FPDF_TEXTPAGE text_page,double left, double top,
292 // left - Pointer to a double value receiving the rectangle left boundar
[all...]

Completed in 519 milliseconds

<<21222324252627282930>>