Searched refs:right (Results 126 - 150 of 2377) sorted by relevance

1234567891011>>

/external/lzma/CPP/7zip/Common/
H A DFilePathAutoRename.cpp45 unsigned left = 1, right = (1 << 30); local
46 while (left != right)
48 unsigned mid = (left + right) / 2;
52 right = mid;
54 return !MakeAutoName(name, extension, right, fullProcessedPath);
/external/pdfium/fpdfsdk/include/
H A Dfpdf_transformpage.h21 * @param[in] right - The right of the rectangle.
25 DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, float left, float bottom, float right, float top);
32 * @param[in] right - The right of the rectangle.
36 DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, float left, float bottom, float right, float top);
43 * @param[in] right - Pointer to a double value receiving the right of the rectangle.
47 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, float* left, float* bottom, float* right, float* top);
53 * @param[in] right
[all...]
/external/skia/src/core/
H A DSkTSort.h121 template <typename T, typename C> static void SkTInsertionSort(T* left, T* right, C lessThan) { argument
122 for (T* next = left + 1; next <= right; ++next) {
136 static T* SkTQSort_Partition(T* left, T* right, T* pivot, C lessThan) { argument
138 SkTSwap(*pivot, *right);
140 while (left < right) {
147 SkTSwap(*newPivot, *right);
154 * This implementation recurses on the left region after pivoting and loops on the right,
160 * @param right the end of the region to be sorted (inclusive).
163 template <typename T, typename C> void SkTIntroSort(int depth, T* left, T* right, C lessThan) { argument
165 if (right
191 SkTQSort(T* left, T* right, C lessThan) argument
201 SkTQSort(T* left, T* right) argument
206 SkTQSort(T** left, T** right) argument
[all...]
/external/chromium_org/third_party/polymer/components/core-drawer-panel/
H A Dcore-drawer-panel.css35 right-drawer: make drawer on the right side
37 .right-drawer #drawer {
39 right: 0;
42 .right-drawer.transition #drawer {
61 right: 0;
69 .right-drawer #main {
73 .right-drawer.transition #main {
74 transition: right ease-in-out 0.3s, padding ease-in-out 0.3s;
85 right
[all...]
/external/chromium_org/third_party/polymer/components-chromium/core-drawer-panel/
H A Dcore-drawer-panel.css35 right-drawer: make drawer on the right side
37 .right-drawer #drawer {
39 right: 0;
42 .right-drawer.transition #drawer {
61 right: 0;
69 .right-drawer #main {
73 .right-drawer.transition #main {
74 transition: right ease-in-out 0.3s, padding ease-in-out 0.3s;
85 right
[all...]
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Ddrive_backend_test_util.h28 void ExpectEquivalentDetails(const FileDetails& left, const FileDetails& right);
30 const FileMetadata& right);
32 const FileTracker& right);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGapRects.h33 const LayoutRect& right() const { return m_right; } function in struct:blink::GapRects
38 void unite(const GapRects& o) { uniteLeft(o.left()); uniteCenter(o.center()); uniteRight(o.right()); }
50 return m_left == other.left() && m_center == other.center() && m_right == other.right();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DoverviewGrid.css20 right: 0;
28 right: 0%;
40 border-right: 1px solid black;
52 margin-right: -3px;
59 .overview-grid-window-resizer-right {
61 margin-right: -2px;
/external/chromium_org/ui/gfx/geometry/
H A Dinsets.h21 Insets(int top, int left, int bottom, int right);
33 static_cast<int>(right() * x_scale));
37 return InsetsF(top(), left(), bottom(), right());
/external/valgrind/main/helgrind/tests/
H A Dtc14_laog_dinphils.c16 long right = (left + 1) % 5; local
19 pthread_mutex_lock(&chop[right]);
22 pthread_mutex_unlock(&chop[right]);
/external/chromium_org/chrome/browser/resources/memory_internals/
H A Dsnapshot_view.css6 text-align: right;
30 text-align: right;
35 text-align: right;
/external/chromium_org/third_party/webrtc/modules/video_render/external/
H A Dvideo_render_external_impl.h50 const float right, const float bottom);
59 float& right, float& bottom) const;
95 const float right, const float bottom);
100 const float right, const float bottom);
110 const float right, const float bottom);
115 const float top, const float right,
/external/chromium_org/third_party/webrtc/modules/video_render/ios/
H A Dvideo_render_ios_impl.h41 const float right,
50 float& right,
69 const float right,
75 const float right,
85 const float right,
92 const float right,
/external/chromium_org/third_party/webrtc/modules/video_render/mac/
H A Dvideo_render_mac_carbon_impl.h54 const float right,
63 float& right,
99 const float right,
106 const float right,
118 const float right,
126 const float right,
H A Dvideo_render_mac_cocoa_impl.h54 const float right,
63 float& right,
99 const float right,
106 const float right,
118 const float right,
126 const float right,
/external/chromium_org/third_party/webrtc/modules/video_render/windows/
H A Dvideo_render_windows_impl.h59 const float right, const float bottom);
68 float& right, float& bottom) const;
104 const float right, const float bottom);
109 const float right, const float bottom);
119 const float right, const float bottom);
125 const float right, const float bottom);
/external/chromium_org/ui/base/ime/
H A Dcandidate_window.cc39 const Entry& right = cw.candidates_[i]; local
40 if (left.value != right.value ||
41 left.label != right.label ||
42 left.annotation != right.annotation ||
43 left.description_title != right.description_title ||
44 left.description_body != right.description_body)
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DDiv.java39 * @param right non-null reference to the evaluated right operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() / right.num());
H A DMinus.java39 * @param right non-null reference to the evaluated right operand.
46 public XObject operate(XObject left, XObject right) argument
49 return new XNumber(left.num() - right.num());
H A DMod.java39 * @param right non-null reference to the evaluated right operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() % right.num());
H A DMult.java39 * @param right non-null reference to the evaluated right operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() * right.num());
H A DNeg.java38 * @param right non-null reference to the evaluated right operand.
44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException argument
46 return new XNumber(-right.num());
H A DPlus.java39 * @param right non-null reference to the evaluated right operand.
45 public XObject operate(XObject left, XObject right) argument
48 return new XNumber(left.num() + right.num());
/external/chromium-trace/trace-viewer/src/tcmalloc/
H A Dtcmalloc_snapshot_view.css40 /* Allocation size in MB, right-aligned for easier comparison of columns. */
43 padding-right: 10px;
44 text-align: right;
51 padding-right: 10px;
52 text-align: right;
56 /* Trace name, inline so it appears to the right of the byte count. */
/external/chromium_org/chrome/browser/resources/extensions/
H A Dpack_extension_overlay.css11 text-align: right;

Completed in 426 milliseconds

1234567891011>>