Searched refs:fc (Results 76 - 100 of 110) sorted by relevance

12345

/openjdk7/jdk/test/java/nio/channels/
H A DAsyncCloseAndInterrupt.java119 FileChannel fc = new FileOutputStream(diskFile).getChannel();
121 if (fc.write(buffer) != buffer.capacity())
123 fc.close();
390 FileChannel fc = (FileChannel)ich;
391 long n = fc.transferTo(0, fc.size(), deadSink);
393 show(fc);
400 FileChannel fc = (FileChannel)ich;
401 long n = fc.transferFrom(deadSource, 0, 1 << 20);
403 show(fc);
[all...]
/openjdk7/jdk/test/java/nio/channels/Channels/
H A DBasic.java216 FileChannel fc = fos.getChannel();
217 WritableByteChannel wbc = (WritableByteChannel)fc;
227 FileChannel fc = fis.getChannel();
228 InputStream is = Channels.newInputStream(fc);
236 long rem = Math.min(fc.size() - totalRead, (long)Integer.MAX_VALUE);
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DFontConfigManager.java427 FcCompFont fc = fontConfigFonts[i];
428 if (fc != fcInfo &&
429 physFont.getFamilyName(null).equals(fc.firstFont.familyName) &&
430 !fc.firstFont.fontFile.equals(physFont.platName) &&
431 family.getFontWithExactStyleMatch(fc.style) == null) {
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DJ2DBench.java605 JFileChooser fc = getFileChooser();
606 int ret = fc.showSaveDialog(guiFrame);
608 File file = fc.getSelectedFile();
723 JFileChooser fc = getFileChooser();
724 int ret = fc.showOpenDialog(f);
726 String reason = loadOptions(fc.getSelectedFile());
738 JFileChooser fc = getFileChooser();
739 int ret = fc.showSaveDialog(f);
741 String reason = saveOptions(fc.getSelectedFile());
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/
H A DOutputTests.java210 java.nio.channels.FileChannel fc = fos.getChannel();
211 ios = fileChannelIOSSpi.createOutputStreamInstance(fc, false,
H A DInputTests.java254 java.nio.channels.FileChannel fc = fis.getChannel();
255 iis = fileChannelIISSpi.createInputStreamInstance(fc, false,
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DFileHandler.java403 FileChannel fc;
406 fc = lockStream.getChannel();
414 available = fc.tryLock() != null;
430 fc.close();
/openjdk7/jdk/src/windows/classes/sun/awt/
H A DWin32FontManager.java184 FontConfiguration fc = new WFontConfiguration(this);
185 fc.init();
186 return fc;
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.h90 } fc; member in struct:ct_data_s
97 #define Freq fc.freq
98 #define Code fc.code
/openjdk7/langtools/test/tools/javac/tree/
H A DAbstractTreeScannerTest.java268 Class<?> fc = f.getType();
269 if (JCTree.class.isAssignableFrom(fc) || List.class.isAssignableFrom(fc))
H A DTreePosTest.java560 GridBagConstraints fc = new GridBagConstraints();
561 fc.anchor = GridBagConstraints.WEST;
562 fc.fill = GridBagConstraints.HORIZONTAL;
563 fc.gridwidth = GridBagConstraints.REMAINDER;
571 fc.insets.bottom = 10;
572 head.add(entries, fc);
573 fc.insets.bottom = 0;
575 head.add(checkField = createTextField(80), fc);
576 fc.fill = GridBagConstraints.NONE;
578 head.add(enclPanel = new InfoPanel(), fc);
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.hpp223 bool verifyChunkInIndexedFreeLists(FreeChunk* fc) const;
225 void removeChunkFromIndexedFreeList(FreeChunk* fc);
227 void removeChunkFromDictionary(FreeChunk* fc);
502 bool verify_chunk_in_free_list(FreeChunk* fc) const;
504 bool verify_chunk_is_linear_alloc_block(FreeChunk* fc) const;
H A DconcurrentMarkSweepGeneration.cpp8056 FreeChunk* fc = (FreeChunk*) freeFinger;
8057 assert(fc->is_free(), "A chunk on the free list should be free.");
8058 assert(fc->size() > 0, "Free range should have a size");
8059 assert(_sp->verify_chunk_in_free_list(fc), "Chunk is not in free lists");
8092 FreeChunk* fc = (FreeChunk*)addr;
8129 if (fc->is_free()) {
8131 res = fc->size();
8132 do_already_free_chunk(fc);
8142 assert(res == fc->size() || ((HeapWord*)fc)
[all...]
H A DconcurrentMarkSweepGeneration.hpp1774 void do_post_free_or_garbage_chunk(FreeChunk *fc, size_t chunkSize);
1776 void do_already_free_chunk(FreeChunk *fc);
1780 void lookahead_and_flush(FreeChunk* fc, size_t chunkSize);
1782 size_t do_garbage_chunk(FreeChunk *fc);
1784 size_t do_live_chunk(FreeChunk* fc);
1808 void print_free_block_coalesced(FreeChunk* fc) const;
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java493 JFileChooser fc = getFileChooser();
496 (!fc.isMultiSelectionEnabled() ||
497 fc.getSelectedFiles().length <= 1)) {
694 DetailsTableModel(JFileChooser fc) { argument
695 this.chooser = fc;
1469 JFileChooser fc = getFileChooser();
1470 File oldFile = fc.getSelectedFile();
1472 File newFile = fc.getSelectedFile();
1601 JFileChooser fc = getFileChooser();
1603 && ((fc
1714 ensureFileIsVisible(JFileChooser fc, File f) argument
[all...]
/openjdk7/langtools/test/tools/javac/failover/
H A DCheckAttributedTree.java572 GridBagConstraints fc = new GridBagConstraints();
573 fc.anchor = GridBagConstraints.WEST;
574 fc.fill = GridBagConstraints.HORIZONTAL;
575 fc.gridwidth = GridBagConstraints.REMAINDER;
583 fc.insets.bottom = 10;
584 head.add(entries, fc);
585 fc.insets.bottom = 0;
587 head.add(checkField = createTextField(80), fc);
588 fc.fill = GridBagConstraints.NONE;
590 head.add(enclPanel = new InfoPanel(), fc);
[all...]
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFontPanel.java130 private final FontCanvas fc; field in class:FontPanel
172 fc = new FontCanvas();
175 this.add( "Center", fc );
204 fc.repaint();
257 fc.repaint();
271 fc.repaint();
277 fc.repaint();
297 fc.repaint();
304 fc.repaint();
311 fc
[all...]
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCFontManager.java49 FontConfiguration fc = new CFontConfiguration(this);
50 fc.init();
51 return fc;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DCompactibleFreeListSpace.java176 FreeChunk fc = (FreeChunk) VMObjectFactory.newObject(FreeChunk.class, cur);
177 long chunkSize = fc.size();
181 // note that fc.size() gives chunk size in heap words
/openjdk7/jdk/src/share/sample/nio/server/
H A DChannelIOSecure.java562 long transferTo(FileChannel fc, long pos, long len) throws IOException { argument
574 int fileRead = fc.read(fileChannelBB);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DInstructionAssembler.java114 char fc = format.charAt(j);
116 switch (fc) {
195 while (j + 1 < jlimit && format.charAt(j + 1) == fc) {
/openjdk7/langtools/test/tools/javah/6572945/
H A DTestClass1.java43 static final float fc = 0; field in class:TestClass1
216 static final float fc = 0; field in class:TestClass1.Inner1
354 static final float fc = 0; field in class:TestClass1.Inner2
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DContext.java396 ClassDefinition fc = f.getClassDefinition();
398 : !f.isConstructor() ? fc
399 : fc.isTopLevel() ? null
400 : fc.getOuterClass();
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java933 Charset fc = null;
935 fc = (Charset) charsetRegistry.get(fontName);
937 fc = (Charset) charsetRegistry.get(charsetName);
939 if (fc != null) {
940 return fc.newEncoder();
944 fc = Charset.forName(charsetName);
959 fc = (Charset) fcc.newInstance();
964 if (fc == null) {
965 fc = getDefaultFontCharset(fontName);
969 charsetRegistry.put(fontName, fc);
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java432 char fc = format.charAt(fp++);
433 switch (fc) {
459 if (fp < format.length() && format.charAt(fp) == fc) {
462 while (fp + 1 < format.length() && format.charAt(++fp) == fc) this_size++;

Completed in 538 milliseconds

12345