HomeSort by relevance Sort by last modified time
    Searched refs:arrow (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /external/chromium_org/chrome/browser/resources/chromeos/first_run/
bubble.css 7 .bubble .arrow {
17 .bubble .arrow.points-up {
22 .bubble .arrow.points-right {
27 .bubble .arrow.points-down {
32 .bubble .arrow.points-left {
37 .bubble .arrow.top {
41 .bubble .arrow.right {
45 .bubble .arrow.bottom {
49 .bubble .arrow.left {
  /external/chromium_org/base/memory/
weak_ptr_unittest.cc 49 struct Arrow {
67 void CreateArrowFromTarget(Arrow** arrow, Target* target) {
72 arrow, target, &completion));
76 void CreateArrowFromArrow(Arrow** arrow, const Arrow* other) {
81 arrow, other, &completion));
93 void CopyAndAssignArrow(Arrow* object) {
102 void CopyAndAssignArrowBase(Arrow* object)
322 Arrow* arrow; local
331 Arrow arrow; local
347 Arrow* arrow; local
375 Arrow arrow; local
403 Arrow arrow; local
423 Arrow arrow; local
442 Arrow arrow; local
454 Arrow *arrow = new Arrow(); local
468 Arrow *arrow = new Arrow(); local
482 Arrow* arrow = new Arrow(); local
504 Arrow arrow; local
531 Arrow arrow; local
549 Arrow arrow; local
574 Arrow arrow; local
592 Arrow arrow; local
    [all...]
  /external/chromium_org/ash/shell/
bubble.cc 18 views::BubbleBorder::Arrow arrow; member in struct:ash::shell::BubbleConfig
24 : BubbleDelegateView(config.anchor_view, config.arrow),
41 config.arrow = views::BubbleBorder::TOP_LEFT;
  /external/chromium_org/ui/views/bubble/
bubble_frame_view_unittest.cc 17 const BubbleBorder::Arrow kArrow = BubbleBorder::TOP_LEFT;
45 EXPECT_EQ(kArrow, frame.bubble_border()->arrow());
55 // Tests that the arrow is mirrored as needed to better fit the screen.
69 EXPECT_EQ(BubbleBorder::TOP_LEFT, frame.bubble_border()->arrow());
72 // arrow overlap.
80 EXPECT_EQ(BubbleBorder::TOP_LEFT, frame.bubble_border()->arrow());
83 // arrow overlap.
91 EXPECT_EQ(BubbleBorder::TOP_LEFT, frame.bubble_border()->arrow());
94 // arrow overlap.
102 EXPECT_EQ(BubbleBorder::TOP_LEFT, frame.bubble_border()->arrow());
    [all...]
bubble_frame_view.cc 124 if ((bubble_border_->arrow() != BubbleBorder::NONE &&
125 bubble_border_->arrow() != BubbleBorder::FLOAT) ||
249 const BubbleBorder::Arrow arrow = bubble_border_->arrow(); local
250 if (adjust_if_offscreen && BubbleBorder::has_arrow(arrow)) {
251 if (!bubble_border_->is_arrow_at_center(arrow)) {
256 // Mirror as needed vertically if the arrow is on a horizontal edge and
258 MirrorArrowIfOffScreen(BubbleBorder::is_arrow_on_horizontal(arrow),
265 // Calculate the bounds with the arrow in its updated location and offset
284 BubbleBorder::Arrow arrow = bubble_border()->arrow(); local
304 BubbleBorder::Arrow arrow = bubble_border()->arrow(); local
    [all...]
tray_bubble_view.cc 30 // Inset the arrow a bit from the edge.
76 // to stack bubbles with no arrows correctly. Also calculates the arrow offset.
82 : BubbleBorder(params.arrow, params.shadow, params.arrow_color),
95 // Sets the bubble on top of the anchor when it has no arrow.
98 if (has_arrow(arrow())) {
102 if (arrow() == BubbleBorder::BOTTOM_RIGHT ||
103 arrow() == BubbleBorder::BOTTOM_LEFT) {
108 } else if (arrow() == BubbleBorder::LEFT_BOTTOM) {
110 } else if (arrow() == BubbleBorder::RIGHT_BOTTOM) {
130 if (arrow() == BubbleBorder::BOTTOM_RIGHT |
    [all...]
bubble_border.h 24 // Renders a border, with optional arrow, and a custom dropshadow.
28 // Possible locations for the (optional) arrow.
32 // 3 bit specifies whether the arrow at the center of its residing edge.
40 enum Arrow {
53 NONE = 16, // No arrow. Positioned under the supplied rect.
54 FLOAT = 17, // No arrow. Centered over the supplied rect.
67 // The tip of the arrow points to the middle of the anchor.
69 // The edge nearest to the arrow is lined up with the edge of the anchor.
73 // The way the arrow should be painted.
75 // Fully render the arrow
126 Arrow arrow() const { return arrow_; } function in class:views::BubbleBorder
    [all...]
bubble_delegate.h 31 BubbleDelegateView(View* anchor_view, BubbleBorder::Arrow arrow);
67 BubbleBorder::Arrow arrow() const { return arrow_; } function in class:views::BubbleDelegateView
68 void set_arrow(BubbleBorder::Arrow arrow) { arrow_ = arrow; }
103 // Get the arrow's anchor rect in screen space.
121 // Sets the bubble arrow paint type.
190 // The arrow's location on the bubble
    [all...]
  /external/chromium_org/ui/views/examples/
bubble_example.cc 21 BubbleBorder::Arrow arrows[] = {
29 string16 GetArrowName(BubbleBorder::Arrow arrow) {
30 switch (arrow) {
51 ExampleBubble(View* anchor, BubbleBorder::Arrow arrow)
52 : BubbleDelegateView(anchor, arrow) {}
57 AddChildView(new Label(GetArrowName(arrow())));
72 "[Alt] for set_arrow(FLOAT), or [Shift] to reverse the arrow iteration.");
92 BubbleBorder::Arrow arrow = arrows[arrow_index] local
    [all...]
  /external/chromium_org/ui/webui/resources/css/
menu_button.css 7 * contain the arrow images. */
10 background: white -webkit-canvas(drop-down-arrow) no-repeat center 4px;
22 background-image: -webkit-canvas(drop-down-arrow-hover);
29 background-image: -webkit-canvas(drop-down-arrow-active);
bubble.css 70 .bubble-arrow {
80 .bubble-arrow {
85 .bubble-arrow {
  /external/chromium_org/remoting/webapp/
toolbar.css 69 .arrow-down {
82 .toolbar-stub-extended .arrow-down,
83 .toolbar-visible .arrow-down {
88 .toolbar-stub:hover .arrow-down {
92 .toolbar-visible .arrow-down {
  /development/tools/axl/
chewie.py 159 # send arrow
160 arrow = pylab.Arrow(send, y, sent - send, 0)
161 arrow.set_facecolor("g")
163 ax.add_patch(arrow)
164 # read arrow
165 arrow = pylab.Arrow(reading, y, read - reading, 0)
166 arrow.set_facecolor("r")
168 ax.add_patch(arrow)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/list/
TileInteractionTeaserView.java 63 final ImageView arrow = (ImageView) findViewById(R.id.arrow); local
66 arrow.post(new Runnable() {
70 // The text top is changed when we move the arrow, so we need to
78 final LinearLayout.LayoutParams arrowParams = (LinearLayout.LayoutParams) arrow
81 arrow.setLayoutParams(arrowParams);
83 arrow.setVisibility(View.VISIBLE);
  /external/chromium_org/chrome/browser/ui/views/
avatar_menu_button.cc 106 views::BubbleBorder::Arrow arrow = button_on_right_ ? local
110 this, arrow, views::BubbleBorder::ALIGN_ARROW_TO_MID_ANCHOR, bounds,
114 this, arrow, views::BubbleBorder::ALIGN_ARROW_TO_MID_ANCHOR, bounds,
global_error_bubble_view.h 22 views::BubbleBorder::Arrow arrow,
avatar_menu_bubble_view.h 52 views::BubbleBorder::Arrow arrow,
91 views::BubbleBorder::Arrow arrow,
  /external/chromium_org/chrome/browser/resources/net_internals/
status_view.css 35 /* Completely un-style the SELECT. Will place an arrow over it manually. */
45 .capture-status-view-arrow {
50 .capture-status-view-arrow::after {
  /external/chromium_org/ui/app_list/views/
app_list_view.h 49 views::BubbleBorder::Arrow arrow,
57 views::BubbleBorder::Arrow arrow,
60 void SetBubbleArrow(views::BubbleBorder::Arrow arrow);
108 views::BubbleBorder::Arrow arrow,
  /external/chromium_org/chrome/browser/ui/views/autofill/
info_bubble.cc 86 set_arrow(views::BubbleBorder::vertical_mirror(arrow()));
91 // The frame adjusts its arrow before the bubble's alignment can be changed.
92 // Set the created bubble border back to the original arrow and re-adjust.
93 frame_->bubble_border()->set_arrow(arrow());
125 frame_->SetBubbleBorder(new views::BubbleBorder(arrow(), shadow(), color()));
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestDebugShapes.java 41 import com.jme3.scene.debug.Arrow;
64 Arrow arrow = new Arrow(dir); local
65 arrow.setLineWidth(4); // make arrow thicker
66 putShape(arrow, color).setLocalTranslation(pos);
  /external/qemu/distrib/sdl-1.2.15/test/
testcursor.c 64 static const char *arrow[] = { variable
124 switch (arrow[4+row][col]) {
137 sscanf(arrow[4+row], "%d,%d", &hot_x, &hot_y);
172 fprintf(stderr, "Couldn't initialize arrow cursor: %s\n",SDL_GetError());
  /external/chromium_org/ash/
popup_message.h 35 // arrow offset in pixels from the border.
37 // Here is the layout (arrow given as TOP_LEFT):
54 views::BubbleBorder::Arrow arrow,
77 views::BubbleBorder::Arrow arrow_orientation_;
  /external/chromium_org/chrome/browser/ui/gtk/
avatar_menu_bubble_gtk.h 31 BubbleGtk::FrameStyle arrow,
  /external/chromium_org/chrome/browser/ui/gtk/website_settings/
permission_selector.cc 91 GtkWidget* arrow = NULL; local
95 arrow = gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_NONE);
98 arrow = gtk_image_new_from_pixbuf(
101 gtk_box_pack_start(GTK_BOX(button_hbox), arrow, FALSE, FALSE, 0); local

Completed in 1500 milliseconds

1 2 3 4 5 6