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

1 2 3

  /external/chromium-trace/src/shared/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 61 .bubble-arrow {
63 /* The tip of the arrow. */
79 .bubble-arrow {
83 .bubble-arrow[is-right='true'] {
87 .bubble-arrow[is-right='false'] {
91 .bubble-arrow[is-top='true'] {
97 .bubble-arrow {
  /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...]
  /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);
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/
EffectsGroup.java 63 final ImageView arrow = (ImageView) findViewById(R.id.group_arrow); local
97 arrow.setImageDrawable(rightArrow);
103 arrow.setImageDrawable(downArrow);
  /external/jmonkeyengine/engine/src/test/jme3test/collision/
TestMousePick.java 47 import com.jme3.scene.debug.Arrow;
130 Arrow arrow = new Arrow(Vector3f.UNIT_Z.mult(2f)); local
131 arrow.setLineWidth(3);
134 mark = new Geometry("BOOM!", arrow);
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-core.css 878 a#arrow-left, a#arrow-right {
885 a#arrow-left {
888 a#arrow-right {
891 a.arrow-left-off,
892 a#arrow-left.arrow-left-off:hover {
895 a.arrow-right-off,
896 a#arrow-right.arrow-right-off:hover {
    [all...]
search_autocomplete.js 119 // 38 -- arrow up
127 // 40 -- arrow down
  /build/tools/droiddoc/templates-sdk/assets/
android-developer-core.css 748 a#arrow-left, a#arrow-right {
755 a#arrow-left {
758 a#arrow-right {
761 a.arrow-left-off,
762 a#arrow-left.arrow-left-off:hover {
765 a.arrow-right-off,
766 a#arrow-right.arrow-right-off:hover
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
views_login_display.cc 38 // info bubble arrow to cursor.
213 BubbleBorder::ArrowLocation arrow; local
215 arrow = BubbleBorder::LEFT_TOP;
217 // Point info bubble arrow to cursor position (approximately).
219 arrow = BubbleBorder::BOTTOM_LEFT;
235 arrow,
  /external/chromium/chrome/browser/ui/views/bubble/
bubble_border.cc 31 // The height inside the arrow image, in pixels.
43 // Screen position depends on the arrow location.
44 // The arrow should overlap the target by some amount since there is space
45 // for shadow between arrow tip and bitmap bounds.
182 // Calculate horizontal and vertical insets for arrow by ensuring that
183 // the widest arrow and corner images will have enough room to avoid overlap
222 // |arrow_offset| is offset of arrow from the begining of the edge.
354 SkBitmap* arrow,
377 canvas->DrawBitmapInt(*arrow,
382 start_x += (is_horizontal ? before_arrow + arrow->width() : 0)
    [all...]
bubble_border.h 15 // Renders a border, with optional arrow, and a custom dropshadow.
19 // Possible locations for the (optional) arrow.
32 NONE = 8, // No arrow. Positioned under the supplied rect.
33 FLOAT = 9 // No arrow. Centered over the supplied rect.
52 // Sets the location for the arrow.
82 // Sets the background color for the arrow body. This is irrelevant if you do
83 // not also set the arrow location to something other than NONE.
89 // For borders with an arrow, gives the desired bounds (in screen coordinates)
91 // depends on the arrow location, so if you change that, you should call this
96 // Sets a fixed offset for the arrow from the beginning of corresponding edge
    [all...]
  /external/chromium/chrome/browser/ui/gtk/infobars/
translate_infobar_base_gtk.cc 204 GtkWidget* arrow = gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_NONE); local
205 gtk_box_pack_start(GTK_BOX(hbox), arrow, FALSE, FALSE, 0); local
  /external/clang/lib/Lex/
TokenConcatenation.cpp 86 TokenInfo[tok::arrow ] |= aci_custom_firstchar;
269 case tok::arrow: // ->*
  /external/chromium/chrome/browser/resources/bookmark_manager/css/
bmm.css 73 background: #fff -webkit-canvas(drop-down-arrow) no-repeat center center;
294 background: -webkit-canvas(drop-down-arrow) 100% 50% no-repeat;
  /external/replicaisland/src/com/replica/replicaisland/
ConversationDialogActivity.java 256 public void setOkArrow(View arrow) {
257 mOkArrow = arrow;
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk2.cpp 374 // | left border | Button text | xthickness | vseparator | xthickness | arrow | xthickness | right border |
376 // | left border | Button text | arrow | xthickness | right border |
393 widgetContext.gtkPaintArrow(arrowRect, gtkComboBoxArrow(), stateType, shadowType, GTK_ARROW_DOWN, "arrow");
583 // Force an odd arrow size here. GTK+ 3.x forces even in this case, but
584 // Nodoka-based themes look incorrect with an even arrow size.
626 // The arrow size/position calculation here is based on the arbitrary gymnastics that happen
847 GtkWidget* arrow; member in struct:WebCore::__anon14881
854 static_cast<ComboBoxWidgetPieces*>(data)->arrow = widget;
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsRigidBody.java 50 import com.jme3.scene.debug.Arrow;
692 Arrow arrow = new Arrow(pivot); local
693 Geometry geom = new Geometry("DebugBone" + i, arrow);
  /development/scripts/app_engine_server/gae_shell/static/
shell.js 97 if (event.ctrlKey && event.keyCode == 38 /* up arrow */) {
102 } else if (event.ctrlKey && event.keyCode == 40 /* down arrow */) {
  /external/doclava/res/assets/templates/assets/
search_autocomplete.js 119 // 38 -- arrow up
127 // 40 -- arrow down
  /external/valgrind/main/massif/
ms_print.in 193 my ($is_top_node, $this_prefix, $child_midfix, $arrow, $mem_total_B) = @_;
204 # We precede this node's line with "$this_prefix.$arrow". We precede
205 # any children of this node with "$this_prefix$child_midfix$arrow".
210 "$this_prefix$arrow%05.2f%% (%sB)%s\n", $perc, commify($bytes),
496 $graph[$graph_x][0] = '>'; # X-axis arrow
497 $graph[0][$graph_y] = '^'; # Y-axis arrow
  /external/webkit/Source/WebCore/inspector/front-end/
Toolbar.js 37 this._dropdownButton = document.getElementById("toolbar-dropdown-arrow");
165 this._arrow = document.getElementById("toolbar-dropdown-arrow");
  /external/webkit/Source/WebCore/platform/android/
RenderThemeAndroid.cpp 542 // Added to make room for our arrow and make the touch target less cramped.
547 // allocate height as arrow size
548 int arrow = std::max(18, style->fontMetrics().height() + 2 * padding); local
549 style->setPaddingRight(Length(arrow, Fixed));
550 style->setMinHeight(Length(arrow, Fixed));
551 style->setHeight(Length(arrow, Fixed));
601 // arrow
  /external/webkit/Source/WebCore/rendering/
RenderThemeSafari.cpp 816 // Since we actually know the size of the control here, we restrict the font scale to make sure the arrow will fit vertically in the bounds
831 FloatPoint arrow[3]; local
832 arrow[0] = FloatPoint(leftEdge, centerY - arrowHeight / 2.0f);
833 arrow[1] = FloatPoint(leftEdge + arrowWidth, centerY - arrowHeight / 2.0f);
834 arrow[2] = FloatPoint(leftEdge + arrowWidth / 2.0f, centerY + arrowHeight / 2.0f);
836 // Draw the arrow
837 paintInfo.context->drawConvexPolygon(3, arrow, true);
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsRigidBody.java 55 import com.jme3.scene.debug.Arrow;
643 Arrow arrow = new Arrow(pivot); local
644 Geometry geom = new Geometry("DebugBone" + i, arrow);

Completed in 530 milliseconds

1 2 3