/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/ |
H A D | NativeObjectLifecycleManager.java | 32 abstract void begin(final long ptr); method in class:NativeObjectLifecycleManager 38 @Override void begin(final long ptr) { retainNativeObject(ptr); } method in class:NativeObjectLifecycleManager.CFRetainRelease 45 @Override void begin(final long ptr) { } method in class:NativeObjectLifecycleManager.Free 51 @Override void begin(final long ptr) { } method in class:NativeObjectLifecycleManager.Nothing
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/ |
H A D | Ring.java | 44 * Use {@link #begin()} and {@link #end(Ring)} to start/end a ring scope. 116 public static Ring begin() { method in class:Ring
|
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/ |
H A D | AbstractInterruptibleChannel.java | 45 * class must invoke the {@link #begin begin} and {@link #end end} methods 54 * begin(); 155 protected final void begin() { method in class:AbstractInterruptibleChannel 179 * <p> This method should be invoked in tandem with the {@link #begin 180 * begin} method, using a <tt>try</tt> ... <tt>finally</tt> block
|
H A D | AbstractSelector.java | 42 * invoke the {@link #begin begin} and {@link #end end} methods before and 50 * begin(); 206 protected final void begin() { method in class:AbstractSelector 222 * <p> This method should be invoked in tandem with the {@link #begin begin}
|
/openjdk7/jdk/src/share/classes/java/awt/font/ |
H A D | CharArrayIterator.java | 34 private int begin; field in class:CharArrayIterator 41 CharArrayIterator(char[] chars, int begin) { argument 43 reset(chars, begin); 140 position -= begin; 153 return begin; 162 return begin+chars.length; 170 return begin+pos; 178 CharArrayIterator c = new CharArrayIterator(chars, begin); 187 void reset(char[] chars, int begin) { argument 190 this.begin [all...] |
/openjdk7/jdk/src/share/instrument/ |
H A D | JarFacade.c | 56 char *begin = (char *)value; local 61 while (isspace(*begin)) { 62 begin++; 66 end = &begin[strlen(begin)]; 67 while (end > begin && isspace(end[-1])) { 71 if (begin == end) { 78 value_len = (size_t)(end - begin); 85 strncpy(attribute->value, begin, value_len);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/ |
H A D | CodeHeap.java | 71 public Address begin() { method in class:CodeHeap 80 return (begin().lessThanOrEqual(p) && end().greaterThan(p));
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ |
H A D | SignatureConverter.java | 54 public void doObject(int begin, int end) { doObject(begin, end, true); } argument 55 public void doArray (int begin, int end) { argument 57 int inner = arrayInnerBegin(begin); 70 for (int i = 0; i < inner - begin + 1; i++) { 82 private void doObject(int begin, int end, boolean comma) { argument 86 appendSubstring(begin, end - 1); 89 private void appendSubstring(int begin, int end) { argument 90 for (int i = begin; i < end; i++) { 95 private int arrayInnerBegin(int begin) { argument [all...] |
H A D | SignatureInfo.java | 52 public void doObject(int begin, int end) { set(BasicTypeSize.getTObjectSize(), BasicType.getTObject()); } argument 53 public void doArray(int begin, int end) { set(BasicTypeSize.getTArraySize(), BasicType.getTArray()); } argument
|
H A D | NativeSignatureIterator.java | 72 public void doObject(int begin, int end) { passObject(); jni_offset++; offset++; } argument 73 public void doArray (int begin, int end) { passObject(); jni_offset++; offset++; } argument
|
H A D | SignatureIterator.java | 89 int begin = ++_index; 91 doObject(begin, _index); 96 int begin = ++_index; 107 doArray(begin, _index); 200 // Object types (begin indexes the first character of the entry, end 202 public abstract void doObject(int begin, int end); argument 203 public abstract void doArray (int begin, int end); argument
|
/openjdk7/jdk/src/share/classes/java/text/ |
H A D | StringCharacterIterator.java | 55 private int begin; field in class:StringCharacterIterator 57 // invariant: begin <= pos <= end 84 * @param begin Index of the first character 88 public StringCharacterIterator(String text, int begin, int end, int pos) { argument 93 if (begin < 0 || begin > end || end > text.length()) 96 if (pos < begin || pos > end) 99 this.begin = begin; 117 this.begin [all...] |
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/ |
H A D | PrintCharacterRanges.java | 36 private int begin; field in class:PrintCharacterRanges.BooleanRange 39 BooleanRange(int begin, int end) { argument 40 this.begin = begin; 44 int begin() { return begin; } method in class:PrintCharacterRanges.BooleanRange 98 System.out.print(" [ " + describe(range.begin()) + ", " + describe(range.end()) + " ]"); 109 private int begin; field in class:PrintCharacterRanges.ShiftRange 113 ShiftRange(int begin, int end, int offset) { argument 114 this.begin 119 int begin() { return begin; } method in class:PrintCharacterRanges.ShiftRange [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/ |
H A D | BalancedDTDGrammar.java | 233 private int addContentSpecNodes(int begin, int end) { argument 234 if (begin == end) { 235 return fGroupIndexStack[fDepth][begin]; 237 final int middle = (begin + end) >>> 1; 239 addContentSpecNodes(begin, middle),
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/ |
H A D | REUtil.java | 53 static final String substring(CharacterIterator iterator, int begin, int end) { argument 54 char[] src = new char[end-begin]; 56 src[i] = iterator.setIndex(i+begin);
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | stubCodeGenerator.hpp | 52 assert(_begin <= end, "begin & end not properly ordered"); 56 void set_begin(address begin) { argument 57 assert(begin >= _begin, "begin may not decrease"); 58 assert(_end == NULL || begin <= _end, "begin & end not properly ordered"); 59 _begin = begin; 70 StubCodeDesc(const char* group, const char* name, address begin) { argument 76 _begin = begin; 84 address begin() cons function in class:StubCodeDesc [all...] |
H A D | signature.cpp | 92 { int begin = ++_index; local 95 do_object(begin, _index); 101 { int begin = ++_index; local 113 do_array(begin, _index); 323 int begin = _begin; local 328 begin++; 334 Symbol* name = SymbolTable::new_symbol(_signature, begin, end, CHECK_NULL); 364 int begin = _begin; local 369 begin++; 373 char* buffer = NEW_RESOURCE_ARRAY(char, end - begin); [all...] |
/openjdk7/jdk/src/share/classes/sun/nio/ch/ |
H A D | AsynchronousFileChannelImpl.java | 82 protected final void begin() throws IOException { method in class:AsynchronousFileChannelImpl 165 // like begin() but returns null instead of exception 200 begin();
|
H A D | AsynchronousServerSocketChannelImpl.java | 82 final void begin() throws IOException { method in class:AsynchronousServerSocketChannelImpl 157 begin(); 190 begin(); 214 begin();
|
/openjdk7/hotspot/src/share/vm/classfile/ |
H A D | symbolTable.hpp | 162 static Symbol* lookup(const Symbol* sym, int begin, int end, TRAPS); 191 static Symbol* new_symbol(const Symbol* sym, int begin, int end, TRAPS) { argument 192 assert(begin <= end && end <= sym->utf8_length(), "just checking"); 193 return lookup(sym, begin, end, THREAD);
|
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | heap.hpp | 139 void* begin() const { return _memory.low (); } function in class:CodeHeap 141 bool contains(void* p) const { return begin() <= p && p < end(); }
|
/openjdk7/hotspot/src/share/vm/prims/ |
H A D | nativeLookup.cpp | 57 static void mangle_name_on(outputStream* st, Symbol* name, int begin, int end) { argument 58 char* bytes = (char*)name->bytes() + begin;
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/ |
H A D | Start.java | 163 int begin(String... argv) { method in class:Start
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
H A D | ObjectReader.java | 680 public void doObject(int begin, int end) { argument 681 tmp.add(getClass(begin, end)); 684 public void doArray (int begin, int end) { argument 685 int inner = arrayInnerBegin(begin); 700 int dimension = inner - begin; 706 protected Class getClass(int begin, int end) { argument 707 String className = getClassName(begin, end); 718 protected String getClassName(int begin, int end) { argument 720 for (int i = begin; i < end; i++) { 731 protected int arrayInnerBegin(int begin) { argument [all...] |
/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | ClassValue.java | 441 // Let the races begin! 617 private void removeStaleEntries(Entry<?>[] cache, int begin, int count) { argument 621 for (int i = begin; i < begin + count; i++) { 638 * to be found via reprobes. Find an entry after cache[begin]
|