Searched defs:ic (Results 1 - 25 of 32) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DImageProducer.java49 * @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 DFilteredImageSource.java92 * @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 DImageFilter.java68 * @param ic the specified <code>ImageConsumer</code>
72 public ImageFilter getFilterInstance(ImageConsumer ic) { argument
74 instance.consumer = ic;
H A DMemoryImageSource.java256 * @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 DAddNoLeak.java53 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 DImageConsumerQueue.java40 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 DOffScreenImageSource.java64 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 DImageDecoder.java49 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 DInputStreamImageSource.java65 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 DRenderableImageProducer.java99 * @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 DXSDAbstractIDConstraintTraverser.java48 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 DBasic.java44 static long ic(int i) { method in class:Basic
/openjdk7/jdk/src/solaris/npt/
H A Dutf_md.c98 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 DPKCS12CipherKAT.java100 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 DIndicRearrangementProcessor.cpp98 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 DIndicRearrangementProcessor2.cpp95 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 DicBuffer.cpp66 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 DEncodingSupport_md.c113 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 DDescendingVisitor.java321 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 DSyncFactory.java246 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 DPKCS12PBECipherCore.java62 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 DcompilationPolicy.cpp210 // 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 DmethodDataOop.cpp821 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 DSchemaTreeTraverser.java999 public void identityConstraint(XSIdentityConstraint ic) { argument
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java1391 public void addImagePanel(ImageCanvas ic, String label) { argument
1392 add(ic);

Completed in 78 milliseconds

12