Searched defs:p1 (Results 101 - 125 of 193) sorted by relevance

12345678

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/visitor/
H A DPatternVisitor.java56 void visitAfter(Pattern p1, Pattern p2); argument
57 void visitGroup(Pattern p1, Pattern p2); argument
58 void visitInterleave(Pattern p1, Pattern p2); argument
59 void visitChoice(Pattern p1, Pattern p2); argument
H A DPatternWalker.java68 public void visitGroup(Pattern p1, Pattern p2) { argument
69 visitBinary(p1, p2);
72 protected void visitBinary(Pattern p1, Pattern p2) { argument
73 p1.accept(this);
77 public void visitInterleave(Pattern p1, Pattern p2) { argument
78 visitBinary(p1, p2);
81 public void visitChoice(Pattern p1, Pattern p2) { argument
82 visitBinary(p1, p2);
113 public void visitAfter(Pattern p1, Pattern p2) { argument
/openjdk7/jdk/test/com/sun/jdi/
H A DReferrersTest.java64 ReferrersFiller(int p1) { argument
65 xx = p1;
H A DVarargsTest.java92 static String fixedInt(int p1) { argument
93 return "" + p1;
96 static String fixedInteger(Integer p1) { argument
97 return "" + p1;
128 static String varString2(int p1, String... ss) { argument
129 return p1 + varString(ss);
H A DArgumentValuesTest.java48 public static void varArgs(String ... p1) { argument
52 public static void genericArgs(List<Integer> p1) { argument
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestPlainArrayNotGeneric.java46 public String[] m1(List<String> p1) {return null;} argument
47 public List<String> m2(String[] p1) {return null;} argument
48 public void m3(List<String> p1, String[] p2) {} argument
49 public void m4(List<String[]> p1) {} argument
50 public TestPlainArrayNotGeneric(List<String[]> p1) {} argument
51 public TestPlainArrayNotGeneric(List<String> p1, String[] p2) {} argument
53 public <T extends List<String[]>> T m5(T p1) {return null;} argument
54 public <T extends Object> T[] m6(T[] p1, List<T[]> p2) {return null;} argument
56 public List<? extends Object[]> m6(List<? extends Object[]> p1) {return null;} argument
57 public <T extends List<? extends Object[]>> T m7(T[] p1) {retur argument
58 m8(List<? super Object[]> p1) argument
59 m9(T[] p1) argument
[all...]
/openjdk7/jdk/src/share/demo/jfc/SampleTree/
H A DSampleTree.java571 public int compare(TreePath p1, TreePath p2) { argument
572 int p1Index = treeModel.getIndexOfChild(p1.getParentPath().
573 getLastPathComponent(), p1.getLastPathComponent());
/openjdk7/jdk/test/javax/management/Introspector/
H A DAnnotationTest.java170 int operation(@Pair(x = 3, y = "foo") int p1, argument
179 public Thing(@Pair(x = 3, y = "foo") int p1) {} argument
194 public int operation(int p1, int p2) {return 0;} argument
205 public ThingImpl(@Pair(x = 3, y = "foo") int p1) {} argument
220 public int operation(int p1, int p2) {return 0;} argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTextFieldUI.java357 * @param p1 the position to convert >= 0
359 * next character represented by p1, in case the
369 int p1, Position.Bias b1, Shape a)
372 return super.modelToView(p0, b0, p1, b1, adjustAllocation(a));
368 modelToView(int p0, Position.Bias b0, int p1, Position.Bias b1, Shape a) argument
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DCompositeView.java289 * @param p1 the position to convert >= 0
291 * next character represented by p1, in case the
300 public Shape modelToView(int p0, Position.Bias b0, int p1, Position.Bias b1, Shape a) throws BadLocationException { argument
301 if (p0 == getStartOffset() && p1 == getEndOffset()) {
310 Math.max(0, p1 - 1) : p1, r1);
316 return v0.modelToView(p0, b0, p1, b1, r0);
339 p1, b1, r1).getBounds();
357 p1, b1, r1);
H A DDefaultHighlighter.java109 * @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
120 if (p1 < p0) {
121 throw new BadLocationException("Invalid end offset", p1);
130 i.p1 = doc.createPosition(p1);
132 safeDamageRange(p0, p1);
150 safeDamageRange(info.p0, info.p1);
168 int p1 = -1;
181 p1
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
521 Position p1; field in class:DefaultHighlighter.HighlightInfo
563 paintLayeredHighlights(Graphics g, int p0, int p1, Shape viewBounds, JTextComponent editor, View view) argument
593 private Vector<Position> p1 = new Vector<Position>(10); field in class:DefaultHighlighter.SafeDamager
[all...]
H A DPlainView.java98 int p1 = elem.getEndOffset();
99 p1 = Math.min(getDocument().getLength(), p1);
109 p1-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) {
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 DUtilities.java888 * @param p1 ending offset in the composed text to be rendered
892 int x, int y, int p0, int p1)
899 if (p0 >= p1)
902 AttributedCharacterIterator aci = as.getIterator(null, p0, p1);
914 int p1 = v.getEndOffset();
945 AttributedCharacterIterator aci = as.getIterator(null, p0 - start, p1 - start);
891 drawComposedText(View view, AttributeSet attr, Graphics g, int x, int y, int p0, int p1) argument
H A DZoneView.java202 * value should also be < p1.
203 * @param p1 the end of the desired zone. This should
207 protected View createZone(int p0, int p1) { argument
213 doc.createPosition(p1));
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DLine2D.java106 * @param p1 the start <code>Point2D</code> of this line segment
110 public Float(Point2D p1, Point2D p2) { argument
111 setLine(p1, p2);
274 * @param p1 the start <code>Point2D</code> of this line segment
278 public Double(Point2D p1, Point2D p2) { argument
279 setLine(p1, p2);
444 * @param p1 the start <code>Point2D</code> of the line segment
448 public void setLine(Point2D p1, Point2D p2) { argument
449 setLine(p1.getX(), p1
[all...]
H A DRectangularShape.java266 * @param p1 the start <code>Point2D</code> of the specified diagonal
270 public void setFrameFromDiagonal(Point2D p1, Point2D p2) { argument
271 setFrameFromDiagonal(p1.getX(), p1.getY(), p2.getX(), p2.getY());
/openjdk7/hotspot/src/share/vm/classfile/
H A DloaderConstraints.cpp387 LoaderConstraintEntry* p1 = *pp1; local
390 ensure_loader_constraint_capacity(p1, p2->num_loaders());
393 int num = p1->num_loaders();
394 p1->set_loader(num, p2->loader(i));
395 p1->set_num_loaders(num + 1);
401 p1->name()->as_C_string()
404 for (int i = 0; i < p1->num_loaders(); i++) {
406 SystemDictionary::loader_name(p1->loader(i)));
408 if (p1->klass() == NULL) {
413 // p1
[all...]
/openjdk7/jdk/src/share/back/
H A Dlog_messages.c76 char *p1; local
81 p1 = strrchr(file, '\\');
83 p1 = ((p1 > p2) ? p1 : p2);
84 if (p1 != NULL) {
85 file = p1 + 1;
/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.cpp442 int MemBaseline::malloc_sort_by_pc(const void* p1, const void* p2) { argument
444 const MemPointerRecordEx* mp1 = (const MemPointerRecordEx*)p1;
450 int MemBaseline::bl_malloc_sort_by_size(const void* p1, const void* p2) { argument
452 const MallocCallsitePointer* mp1 = (const MallocCallsitePointer*)p1;
458 int MemBaseline::bl_malloc_sort_by_pc(const void* p1, const void* p2) { argument
460 const MallocCallsitePointer* mp1 = (const MallocCallsitePointer*)p1;
467 int MemBaseline::bl_vm_sort_by_size(const void* p1, const void* p2) { argument
469 const VMCallsitePointer* mp1 = (const VMCallsitePointer*)p1;
475 int MemBaseline::bl_vm_sort_by_pc(const void* p1, const void* p2) { argument
477 const VMCallsitePointer* mp1 = (const VMCallsitePointer*)p1;
484 malloc_sort_by_addr(const void* p1, const void* p2) argument
[all...]
H A DmemRecorder.hpp190 inline bool same_kind(const MemPointerRecord* p1, const MemPointerRecord* p2) const { argument
191 assert(!p1->is_vm_pointer() && !p2->is_vm_pointer(), "malloc pointer only");
192 return (p1->addr() == p2->addr() &&
193 (p1->flags() &MemPointerRecord::tag_masks) ==
H A DmemSnapshot.hpp47 MemPointerRecord* p1 = (MemPointerRecord*)ptr1; local
50 if (p1->addr() != p2->addr()) return false;
51 if ((p1->flags() & MemPointerRecord::tag_masks) !=
56 return (p1->flags() & MemPointerRecord::tag_masks) == MemPointerRecord::tag_alloc ||
57 (p1->flags() & MemPointerRecord::tag_masks) == MemPointerRecord::tag_release;
62 MemPointer* p1 = (MemPointer*)ptr; local
64 assert(!is_dup_pointer(p1, p2),
65 err_msg("duplicated pointer, flag = [%x]", (unsigned int)((MemPointerRecord*)p1)->flags()));
68 MemPointer* p1 = (MemPointer*)ptr; local
70 assert(!is_dup_pointer(p1, p
78 MemPointer* p1 = (MemPointer*)ptr; local
84 MemPointer* p1 = (MemPointer*)ptr; local
168 VMMemRegion* p1 = (VMMemRegion*)ptr1; local
304 is_duplicated_record(MemPointerRecord* p1, MemPointerRecord* p2) const argument
[all...]
/openjdk7/hotspot/test/compiler/6689060/
H A DTest.java81 Point p1 = new Point();
82 p1.x = ival(3);
84 p1.y = 3 * p1.x + y;
85 return p1.y;
89 Point p1 = new Point();
91 p1.x = ival(3);
93 p1.x = ival(5);
96 p1.y = 3 * p1
237 test3(int y, Point p1) argument
263 test5(int y, Point p1) argument
295 test7(int y, Point p1) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DDefaultParticleBinder.java272 private boolean check( XSParticle p1, XSParticle p2 ) { argument
273 return !computeLabel(p1).equals(computeLabel(p2));
/openjdk7/jdk/test/demo/jvmti/hprof/
H A DUseAllBytecodes.java36 public void test_an_interface(int p1); argument
90 public UseAllBytecodes(int p1) argument
92 i1 = p1;
94 d1 = (double) p1;
98 public UseAllBytecodes(int p1, int p2) argument
100 i1 = p1;
107 public int set_i1(int p1) argument
109 i1 = p1;
119 public float set_f1(float p1) argument
121 f1 = p1;
131 set_d1(double p1) argument
143 set_l1(long p1) argument
155 set_si1(int p1) argument
165 set_sf1(float p1) argument
175 set_sd1(double p1) argument
185 set_sl1(long p1) argument
202 test_an_interface(int p1) argument
[all...]
/openjdk7/jdk/test/java/net/ipv6tests/
H A DTests.java75 DatagramPacket p1 = new DatagramPacket (ba, ba.length, dest1);
81 s2.send (p1);
85 comparePackets (p1, r1);
99 DatagramPacket p1;
104 p1 = new DatagramPacket (ba, ba.length, dest2);
106 p1 = new DatagramPacket (ba, ba.length);
115 s1.send (p1);
119 comparePackets (p1, r1);
120 comparePackets (p1, r2);
123 public static void comparePackets (DatagramPacket p1, DatagramPacke argument
[all...]

Completed in 195 milliseconds

12345678