Searched defs:right (Results 151 - 175 of 879) sorted by relevance

1234567891011>>

/external/guava/guava-tests/test/com/google/common/primitives/
H A DShortArrayAsListTest.java115 private static Short[] concat(Short[] left, Short[] right) { argument
116 Short[] result = new Short[left.length + right.length];
118 System.arraycopy(right, 0, result, left.length, right.length);
/external/icu/icu4c/source/i18n/
H A Dcecal.cpp65 CECalendar::operator=(const CECalendar& right) argument
67 Calendar::operator=(right);
H A Ddtrule.cpp69 DateTimeRule::operator=(const DateTimeRule& right) { argument
70 if (this != &right) {
71 fMonth = right.fMonth;
72 fDayOfMonth = right.fDayOfMonth;
73 fDayOfWeek = right.fDayOfWeek;
74 fWeekInMonth = right.fWeekInMonth;
75 fMillisInDay = right.fMillisInDay;
76 fDateRuleType = right.fDateRuleType;
77 fTimeRuleType = right.fTimeRuleType;
H A Dtztrans.cpp55 TimeZoneTransition::operator=(const TimeZoneTransition& right) { argument
56 if (this != &right) {
57 fTime = right.fTime;
58 setFrom(*right.fFrom);
59 setTo(*right.fTo);
/external/icu/icu4c/source/layout/
H A DKernTable.cpp23 le_uint16 right; // right glyph of kern pair member in struct:PairInfo
29 #define SWAP_KEY(p) (((le_uint32) SWAPW((p)->left) << 16) | SWAPW((p)->right))
161 le_uint16 right = p->right;
164 if (left < 256 && right < 256) {
173 c = ids[right];
/external/lldb/examples/scripting/
H A Ddictionary.c18 struct tree_node *right; member in struct:tree_node
71 new_node->right = NULL;
77 if (root->right != NULL)
78 insert (root->right, word);
84 new_node->right = NULL;
85 root->right = new_node;
111 new_node->right = NULL;
136 return find_word (dictionary->right, word);
153 if (dictionary->right)
154 print_tree (dictionary->right);
[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
27 right.Name());
34 int64 key = right.Find(liter.Symbol());
47 return right.Copy();
49 // add all symbols we can from right symbol table
51 SymbolTableIterator riter(right);
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_Utils.cpp78 rcRet.right = PWL_MAX(rect1.right,rect2.right);
87 rect.right + x,rect.top + y);
93 rcChild.right <= rcParent.right && rcChild.top <= rcParent.top;
99 FX_FLOAT right = rect1.right < rect2.right ? rect1.right local
[all...]
/external/skia/src/core/
H A DSkRect.cpp12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
14 if (left >= right || top >= bottom) {
20 this->set(left, top, right, bottom);
24 if (right > fRight) fRight = right;
102 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, argument
104 if (left < right && top < bottom && !this->isEmpty() && // check for empties
105 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
109 if (fRight > right) fRight = right;
152 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
/external/skia/tests/
H A DPathOpsLineIntersectionTest.cpp107 double right = SkTMax(line1[0].fX, line1[1].fX); local
109 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
114 double right = SkTMax(line2[0].fX, line2[1].fX); local
116 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left);
150 double right = SkTMax(line1[0].fX, line1[1].fX); local
152 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
159 double right = SkTMax(line2[0].fX, line2[1].fX); local
161 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
H A DInspectedPagePlaceholder.js14 this._margins = { top: 0, right: 0, bottom: 0, left: 0 };
27 var margins = { top: 0, right: 0, bottom: 0, left: 0 };
30 var adjacent = { top: true, right: true, bottom: true, left: true };
46 if (this._margins.top !== margins.top || this._margins.left !== margins.left || this._margins.right !== margins.right || this._margins.bottom !== margins.bottom) {
81 var width = rect.width - (this._margins.left + this._margins.right) / zoomFactor;
109 var right = Math.min(rect.right * zoomFactor - this._margins.right, bodyRect.right * zoomFacto
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DOperation.java40 /** The right operand expression.
80 * Set the left and right operand expressions for this operation.
84 * @param r The right expression operand.
110 XObject right = m_right.execute(xctxt, true);
112 XObject result = operate(left, right);
114 right.detach();
123 * @param right non-null reference to the evaluated right operand.
129 public XObject operate(XObject left, XObject right) argument
141 /** @return the right operan
[all...]
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DExternalVideoSurfaceContainerTest.java78 int playerId, float left, float top, float right, float bottom) {
83 new RectF(left, top, right, bottom));
77 onExternalVideoSurfacePositionChanged( int playerId, float left, float top, float right, float bottom) argument
/external/chromium_org/cc/base/
H A Dsimple_enclosed_region.cc37 int right = rect_.right(); local
42 int delta_right = right - sub_rect.right();
55 // right of |sub_rect| and inside rect_.
57 int vertical_right = right;
61 vertical_left = sub_rect.right();
64 left, horizontal_top, right - left, horizontal_bottom - horizontal_top);
88 int right = rect_.right(); local
[all...]
/external/chromium_org/cc/output/
H A Dfilter_operations.cc58 int* right,
61 *top = *right = *bottom = *left = 0;
72 *right += spread;
77 *right += spread + op.drop_shadow_offset().x();
57 GetOutsets(int* top, int* right, int* bottom, int* left) const argument
/external/chromium_org/cc/resources/
H A Dlayer_tiling_data.cc75 int* right,
85 *right = tiling_data_.TileXIndexFromSrcCoord(content_rect.right() - 1);
104 int left, top, right, bottom; local
106 gfx::Rect(tiling_size), &left, &top, &right, &bottom); local
109 if (it->first.first > right || it->first.second > bottom)
72 ContentRectToTileIndices(const gfx::Rect& content_rect, int* left, int* top, int* right, int* bottom) const argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeWebContentsDelegateAndroid.java42 private static Rect createRect(int x, int y, int right, int bottom) { argument
43 return new Rect(x, y, right, bottom);
47 private static RectF createRectF(float x, float y, float right, float bottom) { argument
48 return new RectF(x, y, right, bottom);
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dregister_app_task.cc27 const FileTracker& right) {
29 right.synced_details().creation_time();
26 CompareOnCTime(const FileTracker& left, const FileTracker& right) argument
H A Dsync_engine_initializer.cc43 const google_apis::FileResource& right) {
44 return left.created_date() < right.created_date();
42 LessOnCreationTime(const google_apis::FileResource& left, const google_apis::FileResource& right) argument
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Ddecorated_textfield.cc121 bounds.right() + kTextfieldIconPadding;
161 int right = insets.right() + (base::i18n::IsRTL() ? 0 : w); local
162 border->SetInsets(insets.top(), left, insets.bottom(), right);
/external/chromium_org/chrome/installer/util/
H A Dlanguage_selector.cc127 bool operator<(const LangToOffset& left, const std::wstring& right) { argument
128 return left.language < right;
133 bool operator<(const std::wstring& left, const LangToOffset& right) { argument
134 return left < right.language;
138 bool operator<(const LangToOffset& left, const LangToOffset& right) { argument
139 return std::wstring(left.language) < right.language;
143 bool IsOffsetLessThan(const LangToOffset& left, const LangToOffset& right) { argument
144 return left.offset < right.offset;
/external/chromium_org/content/renderer/
H A Ddisambiguation_popup_helper.cc74 int right = zoom_rect.right() - touch_point.x(); local
77 TrimEdges(&left, &right, max_size.width());
82 left + right,
/external/chromium_org/ppapi/cpp/
H A Drect.cc27 void Rect::Inset(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
29 set_width(std::max<int32_t>(width() - left - right, 0));
39 return (point_x >= x()) && (point_x < right()) &&
44 return (rect.x() >= x() && rect.right() <= right() &&
49 return !(rect.x() >= right() || rect.right() <= x() ||
56 int32_t rr = std::min(right(), rect.right());
74 int32_t rr = std::max(right(), rec
131 Inset(float left, float top, float right, float bottom) argument
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-splay.js53 right: GeneratePayloadTree(depth - 1, key)
91 // Verify that the splay tree has the right size.
168 node.right = this.root_.right;
169 this.root_.right = null;
171 node.right = this.root_;
197 this.root_ = this.root_.right;
199 var right = this.root_.right;
201 // Splay to make sure that the new root has an empty right chil
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-splay.js53 right: GeneratePayloadTree(depth - 1, key)
91 // Verify that the splay tree has the right size.
168 node.right = this.root_.right;
169 this.root_.right = null;
171 node.right = this.root_;
197 this.root_ = this.root_.right;
199 var right = this.root_.right;
201 // Splay to make sure that the new root has an empty right chil
[all...]

Completed in 4259 milliseconds

1234567891011>>