Searched refs:block (Results 151 - 175 of 238) sorted by relevance

12345678910

/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSctpServerChannelImpl.java253 protected void implConfigureBlocking(boolean block) throws IOException { argument
254 IOUtil.configureBlocking(fd, block);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp312 void LIRGenerator::block_do_prolog(BlockBegin* block) { argument
315 block->print();
320 assert(block->lir() == NULL, "LIR list already computed for this block");
321 _lir = new LIR_List(compilation(), block);
322 block->set_lir(_lir);
324 __ branch_destination(block->label());
327 Compilation::current()->hir()->start()->block_id() != block->block_id() &&
328 !block->is_set(BlockBegin::exception_entry_flag)) {
329 assert(block
335 block_do_epilog(BlockBegin* block) argument
355 block_do(BlockBegin* block) argument
[all...]
H A Dc1_InstructionPrinter.cpp119 return phi && phi->block() == b;
258 void InstructionPrinter::print_inline_level(BlockBegin* block) { argument
259 output()->print_cr("inlining depth %d", block->scope()->level());
292 if (phi && phi->block() == b) {
556 // print block id
592 // print block bci range
595 // print block successors
612 // print dominator block
H A Dc1_LinearScan.hpp179 // access to block list (sorted in linear scan order)
180 int block_count() const { assert(_cached_blocks.length() == ir()->linear_scan_order()->length(), "invalid cached block list"); return _cached_blocks.length(); }
181 BlockBegin* block_at(int idx) const { assert(_cached_blocks.at(idx) == ir()->linear_scan_order()->at(idx), "invalid cached block list"); return _cached_blocks.at(idx); }
260 // Phase 2: compute local live sets separately for each block
261 // (sets live_gen and live_kill for each block)
269 // (sets live_in and live_out for each block)
319 Interval* interval_at_block_begin(BlockBegin* block, int reg_num);
320 Interval* interval_at_block_end(BlockBegin* block, int reg_num);
326 void resolve_exception_entry(BlockBegin* block, int reg_num, MoveResolver &move_resolver);
327 void resolve_exception_entry(BlockBegin* block, MoveResolve
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DphaseX.cpp27 #include "opto/block.hpp"
1645 // Examine each basic block
1647 Block *block = _cfg._blocks[block_number]; local
1650 // and each instruction within a block
1651 uint end_index = block->_nodes.size();
1652 // block->end_idx() not valid after PhaseRegAlloc
1654 Node *n = block->_nodes.at(instruction_index);
1659 MachNode *m2 = m->peephole( block, instruction_index, _regalloc, deleted_count, C );
1668 // Print this block
1670 tty->print_cr("in block");
[all...]
H A DidealGraphPrinter.cpp68 const char *IdealGraphPrinter::BLOCK_ELEMENT = "block";
417 Block *block = C->cfg()->_bbs[node->_idx]; local
418 if(block == NULL) {
419 print_prop("block", C->cfg()->_blocks[0]->_pre_order);
421 print_prop("block", block->_pre_order);
H A Dparse.hpp116 // inlining is immediate or undesirable. Otherwise, the info block
150 // Per-block information needed by the parser:
157 bool _is_parsed; // has this block been parsed yet?
158 bool _is_handler; // is this block an exception handler?
159 bool _has_merged_backedge; // does this block have merged backedge?
160 SafePointNode* _start_map; // all values flowing into this block
173 // Set up the block data structure itself.
175 // Set up the block's relations to other blocks.
189 // True after any predecessor flows control into this block
193 // True after backedge predecessor flows control into this block
374 Block* block() const { return _block; } function in class:Parse
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DSctpChannelImpl.c76 jobject this, jobject fdo, jboolean block, jboolean ready);
577 (JNIEnv* env, jobject this, jobject fdo, jboolean block, jboolean ready) {
579 fdo, block, ready);
576 Java_sun_nio_ch_SctpChannelImpl_checkConnect(JNIEnv* env, jobject this, jobject fdo, jboolean block, jboolean ready) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DOpcode.java431 Opcode[] block = getOpcodeBlock(opcodePrefix);
432 return (block == null ? null : block[opcode]);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSocketChannelImpl.java315 // the invocation of end() in the finally block will throw
404 // block then we pass true to the end method. We also pass
573 protected void implConfigureBlocking(boolean block) throws IOException { argument
574 IOUtil.configureBlocking(fd, block);
1025 boolean block, boolean ready)
1024 checkConnect(FileDescriptor fd, boolean block, boolean ready) argument
H A DNet.java555 private static native int blockOrUnblock4(boolean block, FileDescriptor fd, int group, argument
598 static native int blockOrUnblock6(boolean block, FileDescriptor fd, byte[] group, int index, byte[] source) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicScrollBarUI.java937 * Method for scrolling by a block increment.
972 * unit increment, but will not scroll farther than the block increment.
1404 public ScrollListener(int dir, boolean block) { argument
1406 useBlockIncrement = block;
1410 public void setScrollByBlock(boolean block) { this.useBlockIncrement = block; } argument
1544 private void scroll(JScrollBar scrollBar, int dir, boolean block) { argument
1551 if (block) {
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/
H A Dstylesheet.css379 display:block;
468 .block {
469 display:block;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSComplexTypeDecl.java2 * reserved comment block
58 // block set (prohibited substitution) of the complexType
103 short block, short contentType,
111 fBlock = block;
203 str.append(" block='").append(fBlock).append("', ");
101 setValues(String name, String targetNamespace, XSTypeDefinition baseType, short derivedBy, short schemaFinal, short block, short contentType, boolean isAbstract, XSAttributeGroupDecl attrGrp, XSSimpleType simpleType, XSParticleDecl particle, XSObjectListImpl annotations) argument
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCImage.m180 [ThreadUtilities performOnMainThreadWaiting:YES block:^(){
/openjdk7/hotspot/src/share/vm/runtime/
H A DinterfaceSupport.hpp161 SafepointSynchronize::block(thread);
192 SafepointSynchronize::block(thread);
200 // never block on entry to the VM. This will break the code, since e.g. preserve arguments
230 // Clear unhandled oops anywhere where we could block, even if we don't.
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DFileDispatcherImpl.c386 jboolean block, jlong pos, jlong size,
400 if (block == JNI_FALSE) {
385 Java_sun_nio_ch_FileDispatcherImpl_lock0(JNIEnv *env, jobject this, jobject fdo, jboolean block, jlong pos, jlong size, jboolean shared) argument
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DTunnelProxy.java385 block ();
423 * block() only called when available==0 and buf is empty
425 private synchronized void block () throws IOException { method in class:TunnelProxy.NioInputStream
600 * Threads that subsequently call waitForCondition() will not block.
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCSSParser.java60 // (@rule | ruleset | block)*
62 // @rule (block | identifier)*; (block with {} ends @rule)
63 // block matching [] () {} (that is, [()] is a block, [(){}{[]}]
64 // is a block, ()[] is two blocks)
68 // selector (identifier | (block, except block '{}') )*
69 // declblock declaration* block*
77 // block start
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp105 // whether two paths which reach a given block are unique, and
176 LocalSet _def_locals; // For entire block
525 // A basic block
538 // pre_order, assigned at first visit. Used as block ID and "visited" tag
544 // Has this block been cloned for a loop backedge?
547 // This block is entry to irreducible loop.
550 // This block has monitor entry point.
652 // Meets the start state of this block with another state, destructively
666 void set_next(Block* block) { _next = block; } argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJBlock.java33 * A block of Java code, which may contain statements and local declarations.
44 * Declarations and statements contained in this block.
50 * Whether or not this block must be braced and indented
71 * in this block.
87 * inserted at the very beginning of the block.
115 * Returns true if this block is empty and does not contain
123 * Adds a local variable declaration to this block
138 * Adds a local variable declaration to this block
156 * Adds a local variable declaration to this block
181 * Creates an assignment statement and adds it to this block
388 public JBlock block() { method in class:JBlock
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/generator/
H A DGeneratorBase.java134 public void visit(Block block) throws Exception { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeUtility.java1349 int block = 4096;
1355 block = (max == ALL) ? 4096 : Math.min(max, 4096);
1356 buf = new byte[block];
1360 if ((len = is.read(buf, 0, block)) == -1)
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DMulticastSendReceiveTests.java177 System.out.format("block %s\n", source.getHostAddress());
180 key.block(source);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DAbstractIndexWriter.java213 div.addStyle(HtmlStyle.block);

Completed in 107 milliseconds

12345678910