/external/chromium_org/ui/webui/resources/js/cr/ui/ |
bubble.js | 20 // to right mode this is the top left. The entire bubble is positioned below 24 // right mode this is the top right. The entire bubble is positioned below 28 // left to right mode this is the bottom left. The entire bubble is 32 // left to right mode this is the bottom right. The entire bubble is 173 var anchorMid = (anchor.left + anchor.right) / 2; 229 var left = this.arrowAtRight_ ? anchor.right - bubble.width : 318 bubbleArrow.style.right = this.arrowAtRight_ ? edgeOffset : 'auto';
|
/cts/tests/tests/widget/src/android/widget/cts/ |
AbsListViewTest.java | 213 assertTrue(r1.right > 0); 221 assertTrue(r2.right > 0); 225 assertEquals(r1.right, r2.right); 278 mListView.setPadding(r.left, r.top, r.right, r.bottom); 285 assertEquals(r.right, mListView.getListPaddingRight()); 322 return v.getRight() == r.right;
|
CompoundButtonTest.java | 277 assertEquals(drawableWidth, bounds.right); 286 assertEquals(drawableWidth, bounds.right); 295 assertEquals(drawableWidth, bounds.right);
|
FrameLayoutTest.java | 108 assertEquals(mFrameLayout.getWidth(), rect.right - rect.left); 130 assertEquals(foreground.getIntrinsicWidth(), rect2.right - rect2.left); 306 int rightDelta = container.getRight() - rect.right;
|
/external/chromium_org/ash/wm/ |
immersive_fullscreen_controller_unittest.cc | 383 // Slight move to the right keeps the timer running for the same hit point. 393 // Large move right restarts the timer (so it is still running) and considers 400 event_generator.MoveMouseTo(top_container_bounds_in_screen.right() + 1, 464 ASSERT_GT(top_container_bounds_in_screen.right(), 465 popup_bounds_in_screen.right()); 475 MoveMouse(top_container_bounds_in_screen.right() - 1, 481 MoveMouse(top_container_bounds_in_screen.right() - 1, 486 MoveMouse(top_container_bounds_in_screen.right() - 1, 494 MoveMouse(top_container_bounds_in_screen.right() - 1, 533 // Moving right below the top edge starts the hover timer running. W [all...] |
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
metadata_database_index.cc | 54 bool operator==(const ParentIDAndTitle& left, const ParentIDAndTitle& right) { 55 return left.parent_id == right.parent_id && left.title == right.title; 58 bool operator<(const ParentIDAndTitle& left, const ParentIDAndTitle& right) { 59 if (left.parent_id != right.parent_id) 60 return left.parent_id < right.parent_id; 61 return left.title < right.title;
|
/external/chromium_org/chrome/browser/thumbnails/ |
content_analysis_unittest.cc | 40 for (int c = rect.x(); c < rect.right(); ++c) 193 column_profile.begin() + draw_rect.right() - 1, 216 255 * (draw_rect.right() - test_rect.x()), 219 255 * (draw_rect.right() - test_rect.x()), 642 x < footer_rect.right() - fine_print; 651 x < header_rect.right() - block_size; 670 x < body_rect.right() - fine_print;
|
/external/chromium_org/google_apis/gcm/engine/ |
mcs_client.cc | 75 bool operator<(const CollapseKey& right) const; 102 bool CollapseKey::operator<(const CollapseKey& right) const { 103 if (device_user_id_ != right.device_user_id()) 104 return device_user_id_ < right.device_user_id(); 105 if (app_id_ != right.app_id()) 106 return app_id_ < right.app_id(); 107 return token_ < right.token(); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSComputedStyleDeclaration.cpp | 401 RefPtrWillBeRawPtr<CSSPrimitiveValue> right = nullptr; local 410 if (image.imageSlices().right() == image.imageSlices().top() && image.imageSlices().bottom() == image.imageSlices().top() 412 right = top; 416 if (image.imageSlices().right().isPercent()) 417 right = cssValuePool().createValue(image.imageSlices().right().value(), CSSPrimitiveValue::CSS_PERCENTAGE); 419 right = cssValuePool().createValue(image.imageSlices().right().value(), CSSPrimitiveValue::CSS_NUMBER); 421 if (image.imageSlices().bottom() == image.imageSlices().top() && image.imageSlices().right() == image.imageSlices().left()) { 423 left = right; 454 RefPtrWillBeRawPtr<CSSPrimitiveValue> right = nullptr; local [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
gregocal.cpp | 295 GregorianCalendar::operator=(const GregorianCalendar &right) 297 if (this != &right) 299 Calendar::operator=(right); 300 fGregorianCutover = right.fGregorianCutover; 301 fNormalizedGregorianCutover = right.fNormalizedGregorianCutover; 302 fGregorianCutoverYear = right.fGregorianCutoverYear; 303 fCutoverJulianDay = right.fCutoverJulianDay; [all...] |
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
channel_unittest.cc | 2303 double left, right; local 2333 double left, right; local [all...] |
/external/chromium_org/v8/src/compiler/ |
js-typed-lowering.cc | 55 node_->ReplaceInput(1, ConvertToNumber(right())); 60 node_->ReplaceInput(1, ConvertToI32(right_signed, right())); 65 node_->ReplaceInput(1, ConvertToString(right())); 71 Node* rnum = ConvertToI32(false, right()); 78 Node* r = right(); 130 Node* right() { return NodeProperties::GetValueInput(node_, 1); } function in class:v8::internal::compiler::JSBinopReduction 144 Type* right_type_; // Cache of the right input's type. 379 if (r.left() == r.right()) {
|
/external/chromium_org/win8/metro_driver/ime/ |
text_store.cc | 194 POINT right_bottom = {client_rect.right, client_rect.bottom}; 202 rect->right = right_bottom.x; 303 // rect indicates a first character's one, and bottom right corner of rect 306 // right position when composition has multiple lines. 320 tmp_rect.right = tmp_rect.right; 329 tmp_rect.left = tmp_rect.right; 338 result.right = tmp_rect.right;
|
/external/clang/lib/StaticAnalyzer/Core/ |
SimpleSValBuilder.cpp | 311 // Handle trivial case where left-side and right-side are the same. 391 // Swap the left and right sides and flip the operator if doing so 790 // Do the same for the right index. 801 // evalBinOpNN expects the two indexes to already be the right type. 824 int64_t right = RightOffset.getOffset(); local 830 return makeTruthVal(left < right, resultTy); 832 return makeTruthVal(left > right, resultTy); 834 return makeTruthVal(left <= right, resultTy); 836 return makeTruthVal(left >= right, resultTy); 838 return makeTruthVal(left == right, resultTy) [all...] |
/external/icu/icu4c/source/i18n/ |
gregocal.cpp | 295 GregorianCalendar::operator=(const GregorianCalendar &right) 297 if (this != &right) 299 Calendar::operator=(right); 300 fGregorianCutover = right.fGregorianCutover; 301 fNormalizedGregorianCutover = right.fNormalizedGregorianCutover; 302 fGregorianCutoverYear = right.fGregorianCutoverYear; 303 fCutoverJulianDay = right.fCutoverJulianDay; [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/ |
builtin-diff.c | 467 __hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right, 474 double r = right->diff.period_ratio_delta; 481 double r = right->diff.period_ratio; 488 s64 r = right->diff.wdiff; 500 hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right, 504 bool pairs_right = hist_entry__has_pairs(right); 514 p_right = get_pair_data(right, &data__files[sort_compute]);
|
/external/llvm/include/llvm/ADT/ |
ImmutableSet.h | 60 /// Return a pointer to the right subtree. This value is 61 /// NULL if there is no right subtree. 62 ImutAVLTree *getRight() const { return right; } 91 ImutAVLTree *Right = T->getRight(); 92 while (Right) { T = Right; Right = T->getRight(); } 211 "Current value is not less that value of right child"); 223 ImutAVLTree *right; member in class:llvm::ImutAVLTree 245 : factory(f), left(l), right(r), prev(nullptr), next(nullptr) [all...] |
/external/chromium_org/ash/wm/panels/ |
panel_layout_manager_unittest.cc | 104 panel_bounds_in_screen.right(), 138 EXPECT_GE(window_bounds.right(), icon_bounds.right()); 151 EXPECT_EQ(shelf_bounds.right(), window_bounds.x()); 154 EXPECT_EQ(shelf_bounds.x(), window_bounds.right()); 183 EXPECT_EQ(panel_bounds.x(), callout_bounds.right()); 186 EXPECT_EQ(panel_bounds.right(), callout_bounds.x()); 394 // Set shelf to be aligned on the right. 805 // Hit test outside the right edge with a bottom-aligned shelf. 809 gfx::Point(bounds.right() + 3, bounds.y() + 2) [all...] |
/external/chromium_org/cc/resources/ |
picture_layer_tiling.cc | 195 tiling_data_.TileXIndexFromSrcCoord(live_tiles_rect_.right() - 1); 208 tiling_data_.TileXIndexFromSrcCoord(live_tiles_rect_.right() - 1); 357 content_rect.right() - 1); 406 // Iteration happens left->right, top->bottom. Running off the bottom-right 415 min_left = last_geometry_rect.right(); 424 DCHECK_EQ(last_geometry_rect.right(), current_geometry_rect_.x()); 508 int old_right = last_visible_rect_in_content_space_.right(); 513 int new_right = visible_rect_in_content_space.right(); 804 enum { BOTTOM, TOP, LEFT, RIGHT } edge [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/features/ |
FeatureSummaryActivity.java | 353 public int compare(HashMap<String, Object> left, HashMap<String, Object> right) { 355 int rightId = idMap.get(right.get("icon")); 357 return ((String) left.get("feature")).compareTo((String) right.get("feature"));
|
/cts/suite/cts/deviceTests/opengl/jni/graphics/ |
Matrix.cpp | 191 Matrix* Matrix::newFrustum(float left, float right, float bottom, float top, 193 const float r_width = 1.0f / (right - left); 198 const float A = (right + left) * r_width;
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
ClipDrawableTest.java | 149 assertEquals(0, padding.right); 201 assertEquals(0, mockDrawable.getBounds().right); 206 assertEquals(100, mockDrawable.getBounds().right);
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
LeftRecursiveRuleAnalyzer.java | 14 public static enum ASSOC { left, right }; enum constant in enum:LeftRecursiveRuleAnalyzer.ASSOC 68 if ( a.equals(ASSOC.right.toString()) ) { 69 assoc = ASSOC.right;
|
/external/chromium_org/ash/ime/ |
candidate_window_view.cc | 57 if (bounds.right() > work_area.right()) 58 bounds.set_x(work_area.right() - bounds.width());
|
/external/chromium_org/cc/layers/ |
delegated_renderer_layer_impl.cc | 349 gfx::Rect right(content_bounds().width() - border_width, 383 shared_quad_state, right, right, colors[i % kNumColors], false);
|