Searched refs:p0 (Results 1 - 25 of 79) sorted by relevance

1234

/openjdk7/jdk/test/com/sun/security/jgss/
H A DInquireSecContextPermissionCheck.java36 InquireSecContextPermission p0, p1;
37 p0 = new InquireSecContextPermission(
41 if (!p1.implies(p0) || !p1.implies(p1) || !p0.implies(p0)) {
45 if (p0.implies(p1)) {
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelInstrumentComparator.java40 Patch p0 = arg0.getPatch();
42 int a = p0.getBank() * 128 + p0.getProgram();
44 if (p0 instanceof ModelPatch) {
45 a += ((ModelPatch)p0).isPercussion() ? 2097152 : 0;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DTabableView.java65 * @param p0 the starting location in the text document >= 0
66 * @param p1 the ending location in the text document >= p0
69 float getPartialSpan(int p0, int p1); argument
H A DDefaultHighlighter.java108 * @param p0 the start offset of the range to highlight >= 0
109 * @param p1 the end offset of the range to highlight >= p0
115 public Object addHighlight(int p0, int p1, Highlighter.HighlightPainter p) throws BadLocationException { argument
116 if (p0 < 0) {
117 throw new BadLocationException("Invalid start offset", p0);
120 if (p1 < p0) {
129 i.p0 = doc.createPosition(p0);
132 safeDamageRange(p0, p1);
150 safeDamageRange(info.p0, inf
227 changeHighlight(Object tag, int p0, int p1) argument
297 paintLayeredHighlights(Graphics g, int p0, int p1, Shape viewBounds, JTextComponent editor, View view) argument
319 safeDamageRange(final Position p0, final Position p1) argument
520 Position p0; field in class:DefaultHighlighter.HighlightInfo
563 paintLayeredHighlights(Graphics g, int p0, int p1, Shape viewBounds, JTextComponent editor, View view) argument
592 private Vector<Position> p0 = new Vector<Position>(10); field in class:DefaultHighlighter.SafeDamager
[all...]
H A DHighlighter.java69 * @param p0 the beginning of the range >= 0
70 * @param p1 the end of the range >= p0
75 public Object addHighlight(int p0, int p1, HighlightPainter p) throws BadLocationException; argument
96 * @param p0 the beginning of the range >= 0
97 * @param p1 the end of the range >= p0
100 public void changeHighlight(Object tag, int p0, int p1) throws BadLocationException; argument
118 * @param p0 the starting offset in the model >= 0
119 * @param p1 the ending offset in the model >= p0
123 public void paint(Graphics g, int p0, int p1, Shape bounds, JTextComponent c); argument
H A DWrappedPlainView.java96 * @param p0 the starting document location to use >= 0
104 protected void drawLine(int p0, int p1, Graphics g, int x, int y) { argument
106 Element line = lineMap.getElement(lineMap.getElementIndex(p0));
111 drawText(line, p0, p1, g, x, y);
114 int idx = line.getElementIndex(p0);
118 int start = Math.max(elem.getStartOffset(), p0);
124 throw new StateInvariantError("Can't render: " + p0 + "," + p1);
128 private int drawText(Element elem, int p0, int p1, Graphics g, int x, int y) throws BadLocationException { argument
135 p0-elem.getStartOffset(),
140 x = drawUnselectedText(g, x, y, p0, p
175 drawUnselectedText(Graphics g, int x, int y, int p0, int p1) argument
200 drawSelectedText(Graphics g, int x, int y, int p0, int p1) argument
232 calculateBreakPosition(int p0, int p1) argument
306 loadText(Segment segment, int p0, int p1) argument
[all...]
H A DLayeredHighlighter.java43 * @param p0 starting offset of view
49 public abstract void paintLayeredHighlights(Graphics g, int p0, int p1, argument
59 public abstract Shape paintLayer(Graphics g, int p0, int p1, argument
H A DGlyphPainter1.java57 public float getSpan(GlyphView v, int p0, int p1, argument
60 Segment text = v.getText(p0, p1);
62 int width = Utilities.getTabbedTextWidth(v, text, metrics, (int) x, e, p0,
94 public void paint(GlyphView v, Graphics g, Shape a, int p0, int p1) { argument
104 if (p != p0) {
105 text = v.getText(p, p0);
116 text = v.getText(p0, p1);
119 Utilities.drawTabbedText(v, text, x, y, g, expander,p0,
129 int p0 = v.getStartOffset();
140 if ((pos >= p0)
208 getBoundedPosition(GlyphView v, int p0, float x, float len) argument
[all...]
H A DPlainView.java97 int p0 = elem.getStartOffset();
108 p0-elem.getStartOffset(),
113 x = drawUnselectedText(g, x, y, p0, p1);
114 } else if ((p0 >= sel0 && p0 <= sel1) && (p1 >= sel0 && p1 <= sel1)) {
115 x = drawSelectedText(g, x, y, p0, p1);
116 } else if (sel0 >= p0 && sel0 <= p1) {
117 if (sel1 >= p0 && sel1 <= p1) {
118 x = drawUnselectedText(g, x, y, p0, sel0);
122 x = drawUnselectedText(g, x, y, p0, sel
148 drawUnselectedText(Graphics g, int x, int y, int p0, int p1) argument
173 drawSelectedText(Graphics g, int x, int y, int p0, int p1) argument
[all...]
H A DGlyphView.java124 * @param p0 the starting document offset >= 0
125 * @param p1 the ending document offset >= p0
128 public Segment getText(int p0, int p1) { argument
135 doc.getText(p0, p1 - p0, text);
303 int p0 = getStartOffset();
305 float width = painter.getSpan(this, p0, p1, expander, x);
324 * @param p0 the starting document offset >= 0
325 * @param p1 the ending document offset >= p0
328 public float getPartialSpan(int p0, in argument
361 initSelections(int p0, int p1) argument
488 paintTextUsingColor(Graphics g, Shape a, Color c, int p0, int p1) argument
751 breakView(int axis, int p0, float pos, float len) argument
777 getBreakSpot(int p0, int p1) argument
865 createFragment(int p0, int p1) argument
1137 getSpan(GlyphView v, int p0, int p1, TabExpander e, float x) argument
1148 paint(GlyphView v, Graphics g, Shape a, int p0, int p1) argument
1208 getBoundedPosition(GlyphView v, int p0, float x, float len) argument
1220 getPainter(GlyphView v, int p0, int p1) argument
[all...]
H A DIconView.java131 int p0 = getStartOffset();
133 if ((pos >= p0) && (pos <= p1)) {
141 throw new BadLocationException(pos + " not in range " + p0 + "," + p1, pos);
H A DPasswordView.java60 * @param p0 the starting offset in the model >= 0
61 * @param p1 the ending offset in the model >= p0
63 * @exception BadLocationException if p0 or p1 are out of range
66 int p0, int p1) throws BadLocationException {
72 return super.drawUnselectedText(g, x, y, p0, p1);
81 int n = p1 - p0;
99 * @param p0 the starting offset in the model >= 0
100 * @param p1 the ending offset in the model >= p0
102 * @exception BadLocationException if p0 or p1 are out of range
105 int y, int p0, in
65 drawUnselectedText(Graphics g, int x, int y, int p0, int p1) argument
104 drawSelectedText(Graphics g, int x, int y, int p0, int p1) argument
[all...]
H A DGlyphPainter2.java60 public GlyphView.GlyphPainter getPainter(GlyphView v, int p0, int p1) { argument
70 public float getSpan(GlyphView v, int p0, int p1, argument
73 if ((p0 == v.getStartOffset()) && (p1 == v.getEndOffset())) {
77 int index0 = p0 - p;
115 public void paint(GlyphView v, Graphics g, Shape a, int p0, int p1) { argument
121 if( p0 > v.getStartOffset() || p1 < v.getEndOffset() ) {
125 Shape s = v.modelToView(p0, Position.Bias.Forward,
193 * @param p0 the location in the model where the
203 public int getBoundedPosition(GlyphView v, int p0, float x, float len) { argument
/openjdk7/langtools/test/tools/javadoc/annotations/annotateParams/pkg1/
H A DC.java28 public C(@A("p0") boolean p0) { argument
/openjdk7/jdk/test/java/security/PermissionCollection/
H A DAddToReadOnlyPermissionCollection.java77 PropertyPermission p0 = new PropertyPermission("user.home","read");
78 PermissionCollection pc = p0.newPermissionCollection();
93 SocketPermission p0= new SocketPermission("example.com","connect");
94 PermissionCollection pc = p0.newPermissionCollection();
110 FilePermission p0 = new FilePermission("/home/foobar","read");
111 PermissionCollection pc = p0.newPermissionCollection();
126 MyBasicPermission p0 = new MyBasicPermission("BasicPermision");
127 PermissionCollection pc = p0.newPermissionCollection();
142 AllPermission p0 = new AllPermission("AllOfIt","read");
143 PermissionCollection pc = p0
[all...]
/openjdk7/jdk/test/java/lang/StrictMath/
H A DHypotTests.java54 {0x1.0p0, 0x1.ffffffffffab5p-1, 0x1.6a09e667f39edp0},
55 {0x1.0p0, 0x1.ffffffffffffbp0, 0x1.1e3779b97f4a6p1},
56 {0x1.0p0, 0x1.7ffffffffffffp1, 0x1.94c583ada5b51p1},
57 {0x1.0p0, 0x1.ffffffffffffdp1, 0x1.07e0f66afed06p2},
58 {0x1.0p0, 0x1.3fffffffffffdp2, 0x1.465655f122ff3p2},
59 {0x1.0p0, 0x1.4p2, 0x1.465655f122ff6p2},
60 {0x1.0p0, 0x1.7ffffffffffffp2, 0x1.854bfb363dc38p2},
61 {0x1.0p0, 0x1.8p2, 0x1.854bfb363dc39p2},
62 {0x1.0p0, 0x1.bfffffffffffep2, 0x1.c48c6001f0abdp2},
63 {0x1.0p0,
[all...]
/openjdk7/langtools/test/tools/javac/literals/
H A DBadUnderscoreLiterals.java41 float xf1 = 0x_0.1p0; // leading underscore after radix
42 float xf2 = 0x0_.1p0; // trailing underscore before decimal point
/openjdk7/langtools/test/tools/javac/generics/
H A DInnerInterface2.java45 Produces<HTMLConsumer> p0; field in class:MyBuilder
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTextPane.java188 int p0 = Math.min(caret.getDot(), caret.getMark());
192 ((AbstractDocument)doc).replace(p0, p1 - p0, content,attr);
195 if (p0 != p1) {
196 doc.remove(p0, p1 - p0);
199 doc.insertString(p0, content, attr);
360 int p0 = getSelectionStart();
362 if (p0 != p1) {
364 doc.setCharacterAttributes(p0, p
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTextUI.java100 Rectangle p0 = mapper.modelToView(c, offs0);
119 if (p0.y == p1.y) {
121 Rectangle r = p0.union(p1);
134 int p0ToMarginWidth = alloc.x + alloc.width - p0.x;
136 p0.x++;
139 g.fillRect(p0.x, p0.y, p0ToMarginWidth, p0.height);
140 if ((p0.y + p0
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DTextUI.java120 * @param p0 the beginning of the range >= 0
121 * @param p1 the end of the range >= p0
123 public abstract void damageRange(JTextComponent t, int p0, int p1); argument
129 * @param p0 the beginning of the range >= 0
130 * @param p1 the end of the range >= p0
132 public abstract void damageRange(JTextComponent t, int p0, int p1, argument
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DPaints.h48 jdouble p0, jdouble p1, jdouble p3,
109 jfloat p0, jfloat p1, jfloat p3,
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLPaints.h40 jdouble p0, jdouble p1, jdouble p3,
46 jfloat p0, jfloat p1, jfloat p3,
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageConv_D64nw.c581 DTYPE p0, p1, p2, p3, p4; local
632 p0 = p2; p1 = p3; p2 = p4;
636 pbuff[j ] += p0*k0 + p1*k1 + p2*k2 + p3*k3;
661 p0 = p2; p1 = p3; p2 = p4;
665 dp[0 ] = p0*k0 + p1*k1 + p2*k2 + p3*k3 + pbuff[j];
676 p0 = p2; p1 = p3; p2 = p4;
679 dp[0] = p0*k0 + p1*k1 + p2*k2 + p3*k3 + pbuff[j];
691 p0 = p2; p1 = p3;
695 dp[0 ] = p0*k0 + p1*k1 + p2*k2 + pbuff[j];
706 p0
788 DTYPE p0, p1, p2, p3, p4, p5, p6, p7; local
[all...]
H A Dmlib_ImageConv_F32nw.c581 DTYPE p0, p1, p2, p3, p4; local
632 p0 = p2; p1 = p3; p2 = p4;
636 pbuff[j ] += p0*k0 + p1*k1 + p2*k2 + p3*k3;
661 p0 = p2; p1 = p3; p2 = p4;
665 dp[0 ] = p0*k0 + p1*k1 + p2*k2 + p3*k3 + pbuff[j];
676 p0 = p2; p1 = p3; p2 = p4;
679 dp[0] = p0*k0 + p1*k1 + p2*k2 + p3*k3 + pbuff[j];
691 p0 = p2; p1 = p3;
695 dp[0 ] = p0*k0 + p1*k1 + p2*k2 + pbuff[j];
706 p0
788 DTYPE p0, p1, p2, p3, p4, p5, p6, p7; local
[all...]

Completed in 218 milliseconds

1234