HomeSort by relevance Sort by last modified time
    Searched full:arrowsize (Results 1 - 25 of 25) sorted by null

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
action-edge.st 1 <src> -> <target> [fontsize=11, fontname="Courier", arrowsize=.7, label = "<label>"<if(arrowhead)>, arrowhead = <arrowhead><endif>];
edge.st 1 <src> -> <target> [fontsize=11, fontname="Courier", arrowsize=.7, label = "<label>"<if(arrowhead)>, arrowhead = <arrowhead><endif>];
dot.stg 56 <src> -> <target> [fontsize=11, fontname="Courier", arrowsize=.7, label = "<label>"<if(arrowhead)>, arrowhead = <arrowhead><endif>];
60 <src> -> <target> [fontsize=11, fontname="Courier", arrowsize=.7, label = "<label>"<if(arrowhead)>, arrowhead = <arrowhead><endif>];
  /external/webkit/Source/WebCore/platform/gtk/
ScrollbarThemeGtk3.cpp 146 double arrowSize = std::min(rect.width(), rect.height()) * arrowScaling;
147 FloatPoint arrowPoint(rect.x() + (rect.width() - arrowSize) / 2,
148 rect.y() + (rect.height() - arrowSize) / 2);
166 gtk_render_arrow(m_context, context->platformContext()->cr(), angle, arrowPoint.x(), arrowPoint.y(), arrowSize);
ScrollbarThemeGtk2.cpp 188 IntSize arrowSize = rect.size();
189 arrowSize.scale(arrowScaling);
190 IntRect arrowRect(IntPoint(buttonRect.x() + (buttonRect.width() - arrowSize.width()) / 2,
191 buttonRect.y() + (buttonRect.height() - arrowSize.height()) / 2),
192 arrowSize);
RenderThemeGtk3.cpp 486 IntSize arrowSize(minArrowSize, innerRect.height());
489 arrowPosition.move(innerRect.width() - arrowSize.width(), 0);
493 gint extent = std::min(arrowSize.width(), arrowSize.height()) * arrowScaling;
494 arrowPosition.move((arrowSize.width() - extent) / 2, (arrowSize.height() - extent) / 2);
526 separatorPosition.move(arrowSize.width(), 0);
540 separatorPosition.move(arrowSize.width(), 0);
730 gint arrowSize = max(PANGO_PIXELS(fontSize), minSpinButtonArrowSize);
732 return arrowSize - arrowSize % 2; // Force even
    [all...]
RenderThemeGtk2.cpp 381 int arrowSize = comboBoxArrowSize(style);
384 IntRect arrowRect(0, (rect.height() - arrowSize) / 2, arrowSize, arrowSize);
388 arrowRect.setX(rect.width() - rightBorder - buttonStyle->xthickness - arrowSize);
630 int arrowSize = (expandedRect.width() - 3) / 2;
631 arrowSize -= (arrowSize % 2) - 1; // Force odd.
632 arrowRect.setWidth(arrowSize);
633 arrowRect.setHeight(arrowSize);
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainTestAdvanced.java 268 protected Node createAxisMarker(float arrowSize) {
285 Geometry arrowX = new Geometry("arrowX", new Arrow(new Vector3f(arrowSize, 0, 0)));
287 Geometry arrowY = new Geometry("arrowY", new Arrow(new Vector3f(0, arrowSize, 0)));
289 Geometry arrowZ = new Geometry("arrowZ", new Arrow(new Vector3f(0, 0, arrowSize)));
TerrainGridAlphaMapTest.java 329 protected Node createAxisMarker(float arrowSize) {
346 Geometry arrowX = new Geometry("arrowX", new Arrow(new Vector3f(arrowSize, 0, 0)));
348 Geometry arrowY = new Geometry("arrowY", new Arrow(new Vector3f(0, arrowSize, 0)));
350 Geometry arrowZ = new Geometry("arrowZ", new Arrow(new Vector3f(0, 0, arrowSize)));
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_button_cell_unittest.mm 178 NSSize arrowSize = [cell cellSize];
179 EXPECT_GT(arrowSize.width, size.width);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CTableCombo.java 545 Point arrowSize = m_arrow.computeSize(SWT.DEFAULT, SWT.DEFAULT, changed);
554 height = Math.max(hHint, Math.max(textSize.y, arrowSize.y) + 2 * borderWidth);
555 width = Math.max(wHint, Math.max(textSize.x + arrowSize.x, tableWidth) + 2 * borderWidth);
567 Point arrowSize = m_arrow.computeSize(SWT.DEFAULT, height);
568 m_text.setBounds(rect.x, rect.y, width - arrowSize.x, height);
569 m_arrow.setBounds(rect.x + width - arrowSize.x, rect.y, arrowSize.x, arrowSize.y);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestDotTreeGenerator.cs 65 + @" edge [arrowsize=.5, color=""black"", style=""bold""]" + newline
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DotTreeGenerator.cs 67 "\tedge [arrowsize=.5, color=\"black\", style=\"bold\"]",
86 * edge [arrowsize=.7]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
DOTTreeGenerator.cs 65 "\tedge [arrowsize=.5, color=\"black\", style=\"bold\"]",
84 * edge [arrowsize=.7]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DotTreeGenerator.cs 67 "\tedge [arrowsize=.5, color=\"black\", style=\"bold\"]",
86 * edge [arrowsize=.7]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DOTTreeGenerator.java 62 "\tedge [arrowsize=.5, color=\"black\", style=\"bold\"]\n\n" +
110 * edge [arrowsize=.7]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
dottreegen.py 58 " edge [arrowsize=.5]\n" +
182 edge [arrowsize=.7]
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 358 float arrowSize = ps.mCoords.toolMajor * 0.7f;
359 if (arrowSize < 20) {
360 arrowSize = 20;
364 * arrowSize);
366 * arrowSize);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dot.rb 77 | edge [arrowsize=.5];
  /external/libvpx/examples/includes/geshi/geshi/
dot.php 50 'URL', 'arrowhead', 'arrowsize', 'arrowtail', 'bb', 'bgcolor', 'bottomlabel',
  /external/webkit/Source/WebCore/platform/android/
RenderThemeAndroid.cpp 633 const int arrowSize = bounds.height();
636 context->fillRect(FloatRect(bounds.maxX() - arrowSize + 0.5f, bounds.y() + .5f,
637 arrowSize - 1, bounds.height() - 1));
647 const float aw = arrowSize - 10;
  /external/bison/src/
vcg.c 192 e->arrowsize = E_ARROWSIZE;
608 if (e->arrowsize != E_ARROWSIZE)
609 fprintf (fout, "\t\tarrowsize:\t%d\n", e->arrowsize);
vcg.h 383 /* arrowsize, backarrowsize The arrow head is a right-angled, isosceles
384 triangle and the cathetuses have length arrowsize.
386 int arrowsize;
385 int arrowsize; member in struct:edge
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3basetreeadaptor.c 381 "\tedge [arrowsize=.5, color=\"black\", style=\"bold\"]\n\n"
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/
libXm.so.2 

Completed in 1348 milliseconds