Searched defs:end (Results 176 - 200 of 386) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/awt/
H A DDefaultKeyboardFocusManager.java1283 // * if 'end' is < 0, then all KeyEvents from 'start' to the end of the
1285 private void purgeStampedEvents(long start, long end) { argument
1294 if (start < time && (end < 0 || time <= end)) {
1298 if (end >= 0 && time > end) {
H A DTextArea.java358 * Replaces text between the indicated start and end positions
359 * with the specified replacement text. The text at the end
362 * same as the end position).
372 * @param end the end position
376 public void replaceRange(String str, int start, int end) { argument
377 replaceText(str, start, end);
385 public synchronized void replaceText(String str, int start, int end) { argument
388 peer.replaceRange(str, start, end);
390 text = text.substring(0, start) + str + text.substring(end);
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLParser.java172 protected void end(String text) throws SAXException { method in class:XMLParser.ElementHandler
177 end(currentText.toString());
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DRangeSlider.java195 private void paintSelected(Graphics2D g, int start, int end) { argument
198 int endX = getEndXPosition(end);
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DCompilation.java42 private double end; field in class:Compilation
188 return end;
191 public void setEnd(double end) { argument
192 this.end = end;
252 return end - start;
/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.cpp62 _code_pos = cs->end();
78 _code_pos = cs->end();
109 address end = cs->end(); local
110 int pad = -(intptr_t)end & (required_align-1);
113 end = cs->end(); // refresh pointer
116 while (--pad >= 0) { *end++ = 0; }
117 cs->set_end(end);
120 return end;
[all...]
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DUtils.java165 public void format(char[] cc, int off, int end, String closure) { argument
166 while (off < end) {
169 if (off == end)
173 if (off == end)
197 int end = date.length;
198 while (off < end) {
200 for (int j = 0; j < 8 && off < end; j++) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWListPeer.java89 public void delItems(final int start, final int end) { argument
91 getDelegate().getModel().removeRange(start, end);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzSurfaceData.h59 CGPoint end; member in struct:_stateShadingInfo
/openjdk7/hotspot/src/share/vm/prims/
H A Dforte.cpp100 // the current vframeStream as at the end.
152 // info record the end of the region covered by the ScopeDesc
642 } // end extern "C"
645 void Forte::register_stub(const char* name, address start, address end) { argument
647 assert(pointer_delta(end, start, sizeof(jbyte)) < INT_MAX,
651 pointer_delta(end, start, sizeof(jbyte)), 0, NULL);
H A DnativeLookup.cpp57 static void mangle_name_on(outputStream* st, Symbol* name, int begin, int end) { argument
59 char* end_bytes = (char*)name->bytes() + end;
113 int end; local
114 for (end = 0; end < signature->utf8_length() && signature->byte_at(end) != ')'; end++);
116 mangle_name_on(&st, signature, 1, end);
289 for (int end = 0; end < signatur
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfMemory.hpp135 static char* end() { return _end; } function in class:PerfMemory
H A Dsignature.cpp324 int end = _end; local
329 end--;
332 // Save names for cleaning up reference count at the end of
334 Symbol* name = SymbolTable::new_symbol(_signature, begin, end, CHECK_NULL);
365 int end = _end; local
370 end--;
373 char* buffer = NEW_RESOURCE_ARRAY(char, end - begin);
374 for (int index = begin; index < end; index++) {
377 Symbol* result = SymbolTable::probe(buffer, end - begin);
425 // of the type. The type encoding may end befor
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dstack.inline.hpp239 const uint32_t* end = cur + zap_bytes / sizeof(uint32_t); local
240 while (cur < end) {
H A Dutf8.cpp68 } /* end of switch */
123 // Writes a jchar a utf8 and returns the end
170 // Skip backwards in string until 'c' is found or end is reached
229 u_char* end = (u_char*)buf + buflen; local
232 if (p + utf8_size(c) >= end) break; // string is truncated
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/
H A DBase64Data.java401 public CharSequence subSequence(int start, int end) { argument
404 for( int i=start; i<end; i++ )
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/wsdl/writer/
H A DWSDLGeneratorExtension.java75 public void end(@NotNull WSDLGenExtnContext ctxt) { method in class:WSDLGeneratorExtension
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DHandlerProcessor.java262 private boolean callHandleMessage(C context, int start, int end) { argument
272 if (start > end) {
273 while (i >= end) {
281 while (i <= end) {
305 private boolean callHandleMessageReverse(C context, int start, int end) { argument
315 if (start > end) {
316 while (i >= end) {
325 while (i <= end) {
343 private boolean callHandleFault(C context, int start, int end) { argument
352 if (start > end) {
387 closeHandlers(MessageContext context, int start, int end) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodVisitor.java362 * @param end end of the exception handler's scope (exclusive).
371 void visitTryCatchBlock(Label start, Label end, Label handler, String type); argument
383 * @param end the last instruction corresponding to the scope of this local
395 Label end,
420 * Visits the end of the method. This method, which is the last one to be
390 visitLocalVariable( String name, String desc, String signature, Label start, Label end, int index) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWListPeer.java91 public native void delItems(int start, int end); argument
/openjdk7/jdk/test/java/lang/invoke/
H A DPermuteArgsTest.java233 int end = perm.length - omit;
234 if (end - start >= 2) {
235 //System.out.println("testPermutations"+Arrays.asList(start, end)+(j == 0 ? "" : " (reverse)"));
236 testPermutations(mh, perm, start, end, done);
254 static void testPermutations(MethodHandle mh, int[] perm, int start, int end, Set<String> done) throws Throwable { argument
255 if (end - start <= 1) return;
257 testRotations(mh, perm, start, end, done);
258 if (end - start <= 2) return;
259 reverse(perm, start, end);
261 if (end
278 testRotations(MethodHandle mh, int[] perm, int start, int end, Set<String> done) argument
350 rotate(int[] perm, int start, int end) argument
359 reverse(int[] perm, int start, int end) argument
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DTokenList.java63 public TokenList(Object[] tokens, int beg, int end) { argument
64 super(end - beg); // capacity
66 addTokens(tokens, beg, end);
69 public TokenList(Object[] tokens, int beg, int end, String separator) { argument
70 super(end - beg); // capacity
72 addTokens(tokens, beg, end);
179 public boolean addTokens(Object[] tokens, int beg, int end) { argument
181 for (int i = beg; i < end; i++) {
226 * a sequence of begin/end quote pairs, plus a superquote.
227 * For each token, the first begin/end pai
309 subSequence(int beg, int end) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DName.java69 public CharSequence subSequence(int start, int end) { argument
70 return toString().subSequence(start, end);
136 * excluding position end.
138 public Name subName(int start, int end) { argument
139 if (end < start) end = start;
140 return table.fromUtf(getByteArray(), getByteOffset() + start, end - start);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbytes.h62 bytes slice(size_t beg, size_t end) { argument
65 res.len = end - beg;
89 byte* end() { return b.ptr + allocated; } // physical limit function in struct:fillbytes
101 bool isAllocated(byte* p) { return p >= base() && p <= end(); } //asserts
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngtrans.c431 png_const_bytep end, table; local
433 end = row + row_info->rowbytes;
447 for (rp = row; rp < end; rp++)
461 * end (not in the middle) of each pixel.
468 png_bytep ep = row + row_info->rowbytes; /* One beyond end of row */
471 * it is copied to. ep always points just beyond the end of the row, so

Completed in 80 milliseconds

1234567891011>>