/openjdk7/jdk/src/share/classes/java/awt/image/ |
H A D | ImageProducer.java | 49 * @param ic the specified <code>ImageConsumer</code> 52 public void addConsumer(ImageConsumer ic); argument 58 * @param ic the specified <code>ImageConsumer</code> 64 public boolean isConsumer(ImageConsumer ic); argument 73 * @param ic the specified <code>ImageConsumer</code> 75 public void removeConsumer(ImageConsumer ic); argument 85 * @param ic the specified <code>ImageConsumer</code> 88 public void startProduction(ImageConsumer ic); argument 104 * ic.setHints(TOPDOWNLEFTRIGHT | < otherhints >); 105 * ic 111 requestTopDownLeftRightResend(ImageConsumer ic) argument [all...] |
H A D | FilteredImageSource.java | 92 * @param ic the consumer for the filtered image 95 public synchronized void addConsumer(ImageConsumer ic) { argument 99 if (!proxies.containsKey(ic)) { 100 ImageFilter imgf = filter.getFilterInstance(ic); 101 proxies.put(ic, imgf); 117 * @param ic the specified <code>ImageConsumer</code> 121 public synchronized boolean isConsumer(ImageConsumer ic) { argument 122 return (proxies != null && proxies.containsKey(ic)); 138 public synchronized void removeConsumer(ImageConsumer ic) { argument 140 ImageFilter imgf = (ImageFilter) proxies.get(ic); 174 startProduction(ImageConsumer ic) argument 201 requestTopDownLeftRightResend(ImageConsumer ic) argument [all...] |
H A D | ImageFilter.java | 68 * @param ic the specified <code>ImageConsumer</code> 72 public ImageFilter getFilterInstance(ImageConsumer ic) { argument 74 instance.consumer = ic;
|
H A D | MemoryImageSource.java | 256 * @param ic the specified <code>ImageConsumer</code> 261 public synchronized void addConsumer(ImageConsumer ic) { argument 262 if (theConsumers.contains(ic)) { 265 theConsumers.addElement(ic); 267 initConsumer(ic); 268 sendPixels(ic, 0, 0, width, height); 269 if (isConsumer(ic)) { 270 ic.imageComplete(animating 273 if (!animating && isConsumer(ic)) { 274 ic 293 isConsumer(ImageConsumer ic) argument 303 removeConsumer(ImageConsumer ic) argument 315 startProduction(ImageConsumer ic) argument 325 requestTopDownLeftRightResend(ImageConsumer ic) argument 536 initConsumer(ImageConsumer ic) argument 559 sendPixels(ImageConsumer ic, int x, int y, int w, int h) argument [all...] |
/openjdk7/jdk/test/sun/awt/image/ImageWatched/ |
H A D | AddNoLeak.java | 53 public void addConsumer(ImageConsumer ic){} argument 54 public boolean isConsumer(ImageConsumer ic){return false;} argument 55 public void removeConsumer(ImageConsumer ic){} argument 56 public void startProduction(ImageConsumer ic){} argument 57 public void requestTopDownLeftRightResend(ImageConsumer ic){} argument
|
/openjdk7/jdk/src/share/classes/sun/awt/image/ |
H A D | ImageConsumerQueue.java | 40 ImageConsumer ic, 45 if (cq.consumer == ic) { 59 static boolean isConsumer(ImageConsumerQueue cqbase, ImageConsumer ic) { argument 61 if (cq.consumer == ic) { 68 ImageConsumerQueue(InputStreamImageSource src, ImageConsumer ic) { argument 69 consumer = ic; 72 if (ic instanceof ImageRepresentation) { 73 ImageRepresentation ir = (ImageRepresentation) ic; 39 removeConsumer(ImageConsumerQueue cqbase, ImageConsumer ic, boolean stillinterested) argument
|
H A D | OffScreenImageSource.java | 64 public synchronized void addConsumer(ImageConsumer ic) { argument 65 theConsumer = ic; 69 public synchronized boolean isConsumer(ImageConsumer ic) { argument 70 return (ic == theConsumer); 73 public synchronized void removeConsumer(ImageConsumer ic) { argument 74 if (theConsumer == ic) { 79 public void startProduction(ImageConsumer ic) { argument 80 addConsumer(ic); 83 public void requestTopDownLeftRightResend(ImageConsumer ic) { argument
|
H A D | ImageDecoder.java | 49 public boolean isConsumer(ImageConsumer ic) { argument 50 return ImageConsumerQueue.isConsumer(queue, ic); 53 public void removeConsumer(ImageConsumer ic) { argument 54 queue = ImageConsumerQueue.removeConsumer(queue, ic, false);
|
H A D | InputStreamImageSource.java | 65 public void addConsumer(ImageConsumer ic) { argument 66 addConsumer(ic, false); 86 synchronized void addConsumer(ImageConsumer ic, boolean produce) { argument 89 if (id.isConsumer(ic)) { 95 while (cq != null && cq.consumer != ic) { 99 cq = new ImageConsumerQueue(this, ic); 128 public synchronized boolean isConsumer(ImageConsumer ic) { argument 130 if (id.isConsumer(ic)) { 134 return ImageConsumerQueue.isConsumer(consumers, ic); 154 public synchronized void removeConsumer(ImageConsumer ic) { argument 161 startProduction(ImageConsumer ic) argument 184 requestTopDownLeftRightResend(ImageConsumer ic) argument [all...] |
/openjdk7/jdk/src/share/classes/java/awt/image/renderable/ |
H A D | RenderableImageProducer.java | 99 * @param ic an ImageConsumer to be added to the interest list. 101 public synchronized void addConsumer(ImageConsumer ic) { argument 102 if (!ics.contains(ic)) { 103 ics.addElement(ic); 111 * @param ic the ImageConsumer to be checked. 114 public synchronized boolean isConsumer(ImageConsumer ic) { argument 115 return ics.contains(ic); 122 * @param ic the ImageConsumer to be removed. 124 public synchronized void removeConsumer(ImageConsumer ic) { argument 125 ics.removeElement(ic); 135 startProduction(ImageConsumer ic) argument 148 requestTopDownLeftRightResend(ImageConsumer ic) argument [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/ |
H A D | XSDAbstractIDConstraintTraverser.java | 48 boolean traverseIdentityConstraint(IdentityConstraint ic, argument 65 ic.addAnnotation(traverseAnnotationDecl(sElem, icElemAttrs, false, schemaDoc)); 76 ic.addAnnotation(traverseSyntheticAnnotation(icElem, text, icElemAttrs, false, schemaDoc)); 93 ic.addAnnotation(traverseAnnotationDecl(selChild, attrValues, false, schemaDoc)); 106 ic.addAnnotation(traverseSyntheticAnnotation(icElem, text, attrValues, false, schemaDoc)); 121 Selector selector = new Selector(sXpath, ic); 122 ic.setSelector(selector); 155 ic.addAnnotation(traverseAnnotationDecl(fieldChild, attrValues, false, schemaDoc)); 165 ic.addAnnotation(traverseSyntheticAnnotation(icElem, text, attrValues, false, schemaDoc)); 178 Field field = new Field(fXpath, ic); [all...] |
/openjdk7/jdk/test/java/nio/Buffer/ |
H A D | Basic.java | 44 static long ic(int i) { method in class:Basic
|
/openjdk7/jdk/src/solaris/npt/ |
H A D | utf_md.c | 98 iconvConvert(iconv_t ic, char *bytes, int len, char *output, int outputMaxLen) argument 110 if ( ic != (iconv_t)(void *)-1 ) { 121 returnValue = iconv(ic, (void*)&inbuf, &inLeft, &outbuf, &outLeft);
|
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/PBE/ |
H A D | PKCS12CipherKAT.java | 100 private final int ic; field in class:PKCS12CipherKAT.CipherTest 103 char[] password, byte[] salt, int ic) { 109 this.ic = ic; 132 PBEParameterSpec pbeParamSpec = new PBEParameterSpec(salt, ic); 144 System.out.println("iterationCount: " + ic); 159 System.out.println("iterationCount: " + ic); 102 CipherTest(String alg, byte[] plaintext, byte[] ciphertext, char[] password, byte[] salt, int ic) argument
|
/openjdk7/jdk/src/share/native/sun/font/layout/ |
H A D | IndicRearrangementProcessor.cpp | 98 le_int32 ia, ib, ic, id, ix, x; local 195 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); 209 glyphStorage.setCharIndex(firstGlyph, ic, success); 216 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); 231 glyphStorage.setCharIndex(firstGlyph + 1, ic, success); 239 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); 254 glyphStorage.setCharIndex(firstGlyph, ic, success); 264 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); 280 glyphStorage.setCharIndex(firstGlyph + 1, ic, success); 346 ic [all...] |
H A D | IndicRearrangementProcessor2.cpp | 95 le_int32 ia, ib, ic, id, ix, x; local 192 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); 206 glyphStorage.setCharIndex(firstGlyph, ic, success); 213 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); 228 glyphStorage.setCharIndex(firstGlyph + 1, ic, success); 236 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); 251 glyphStorage.setCharIndex(firstGlyph, ic, success); 261 ic = glyphStorage.getCharIndex(lastGlyph - 1, success); 277 glyphStorage.setCharIndex(firstGlyph + 1, ic, success); 343 ic [all...] |
/openjdk7/hotspot/src/share/vm/code/ |
H A D | icBuffer.cpp | 66 CompiledIC *ic = CompiledIC_at(ic_site()); local 67 assert(CodeCache::find_nmethod(ic->instruction_address()) != NULL, "inline cache in non-nmethod?"); 69 assert(this == ICStub_from_destination_address(ic->stub_address()), "wrong owner of ic buffer"); 70 ic->set_cached_oop(cached_oop()); 71 ic->set_ic_destination(destination()); 85 void ICStub::set_stub(CompiledIC *ic, oop cached_value, address dest_addr) { argument 86 // We cannot store a pointer to the 'ic' object, since it is resource allocated. Instead we 89 _ic_site = ic->instruction_address(); 182 void InlineCacheBuffer::create_transition_stub(CompiledIC *ic, oo argument 205 ic_destination_for(CompiledIC *ic) argument 211 cached_oop_for(CompiledIC *ic) argument [all...] |
/openjdk7/jdk/src/solaris/instrument/ |
H A D | EncodingSupport_md.c | 113 iconvConvert(iconv_t ic, char *bytes, int len, char *output, int outputMaxLen) argument 125 if ( ic != (iconv_t)-1 ) { 136 returnValue = iconv(ic, (void*)&inbuf, &inLeft, &outbuf, &outLeft);
|
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/ |
H A D | DescendingVisitor.java | 321 public void visitInnerClasses(InnerClasses ic) { argument 322 stack.push(ic); 323 ic.accept(visitor); 325 InnerClass[] ics = ic.getInnerClasses();
|
/openjdk7/jdk/src/share/classes/javax/sql/rowset/spi/ |
H A D | SyncFactory.java | 246 private static Context ic; field in class:SyncFactory 281 * InitialContext ic = new InitialContext(); 282 * ic.bind ("jdbc/rowset/MySyncProvider", p); 709 ic = ctx; 719 if ((ic != null) && (lazyJNDICtxRefresh == false)) { 743 NamingEnumeration bindings = ic.listBindings(""); 772 if (!(ic.lookup(element) instanceof Context)) { 774 if (ic.lookup(element) instanceof SyncProvider) {
|
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/ |
H A D | PKCS12PBECipherCore.java | 62 int ic, int n, int type) { 102 for (int r = 1; r < ic; r++) 61 derive(char[] chars, byte[] salt, int ic, int n, int type) argument
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | compilationPolicy.cpp | 210 // look like immature (ic < ~5300) which prevents the inlining based on 360 InvocationCounter* ic = m->invocation_counter(); local 370 ic->print();
|
/openjdk7/hotspot/src/share/vm/oops/ |
H A D | methodDataOop.cpp | 821 InvocationCounter* ic = method->invocation_counter(); local 823 int icval = ic->count(); 824 if (ic->carry()) icval += CompileThreshold;
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/ |
H A D | SchemaTreeTraverser.java | 999 public void identityConstraint(XSIdentityConstraint ic) { argument
|
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/ |
H A D | RenderClipTest.java | 1391 public void addImagePanel(ImageCanvas ic, String label) { argument 1392 add(ic);
|