Searched defs:Block (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/
H A DBlock.java34 final class Block { class
46 Block(boolean optional, boolean repeated) { method in class:Block
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DBlock.java34 public class Block extends VMObject { class in inherits:VMObject
44 Type type = db.lookupType("Block");
62 public Block(Address addr) { method in class:Block
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DBlock.java36 public class Block implements Cluster { class in inherits:Cluster
42 public Block(InputBlock inputBlock, Diagram diagram) { method in class:Block
56 Set<Block> succs = new HashSet<Block>();
64 Set<Block> succs = new HashSet<Block>();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DBlock.java38 public class Block extends ModelObject { class in inherits:ModelObject
45 public Block(QName name, AbstractType type, Entity entity) { method in class:Block
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsnamed.c169 cmsBool AddMLUBlock(cmsMLU* mlu, cmsUInt32Number size, const wchar_t *Block, argument
198 memmove(Ptr + Offset, Block, size);
H A Dcmsio0.c169 cmsUInt8Number* Block; // Points to allocated memory member in struct:__anon830
190 Ptr = ResData -> Block;
234 memmove(ResData ->Block + ResData ->Pointer, Ptr, size);
252 if (ResData ->Block) _cmsFree(iohandler ->ContextID, ResData ->Block);
285 fm ->Block = (cmsUInt8Number*) _cmsMalloc(ContextID, size);
286 if (fm ->Block == NULL) {
295 memmove(fm->Block, Buffer, size);
306 fm ->Block = (cmsUInt8Number*) Buffer;
H A Dlcms2_internal.h236 cmsUInt8Number* Block; member in struct:_cmsSubAllocator_chunk_st
H A Dcmscgats.c138 cmsUInt8Number* Block; member in struct:_SubAllocator
1107 it8 ->Allocator.Block = (cmsUInt8Number*) AllocBigBlock(it8, it8 ->Allocator.BlockSize);
1110 ptr = it8 ->Allocator.Block + it8 ->Allocator.Used;
1308 it8->Allocator.Block = NULL;
H A Dcmstypes.c1451 wchar_t* Block; local
1501 Block = NULL;
1507 Block = (wchar_t*) _cmsMalloc(self ->ContextID, SizeOfTag);
1508 if (Block == NULL) goto Error;
1510 if (!_cmsReadWCharArray(io, NumOfWchar, Block)) goto Error;
1513 mlu ->MemPool = Block;
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.hpp34 class Block;
44 // Abstractly provides an infinite array of Block*'s, initialized to NULL.
52 Block **_blocks;
60 _blocks = NEW_ARENA_ARRAY( a, Block *, OptoBlockListSize );
65 Block *lookup( uint i ) const // Lookup, or NULL for not mapped
66 { return (i<Max()) ? _blocks[i] : (Block*)NULL; }
67 Block *operator[] ( uint i ) const // Lookup, or assert for not mapped
69 // Extend the mapping: index i maps to Block *n.
70 void map( uint i, Block *n ) { if( i>=Max() ) grow(i); _blocks[i] = n; }
80 void push( Block *
107 class Block : public CFGElement { class in inherits:CFGElement
240 Block( Arena *a, Node *headnode ) function in class:Block
[all...]
H A Dparse.hpp151 class Block { class in class:Parse
153 ciTypeFlow::Block* _flow;
165 Block** _successors;
168 // Block() : _live_locals((uintptr_t*)NULL,0) { ShouldNotReachHere(); }
169 Block() : _live_locals(NULL,0) { ShouldNotReachHere(); } function in class:Parse::Block
178 ciTypeFlow::Block* flow() const { return _flow; }
195 void mark_merged_backedge(Block* pred) {
209 Block* successor_at(int i) const {
213 Block* successor_for_bci(int bci);
222 bool is_SEL_backedge(Block* pre
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DJarSigner.java1230 SignatureFile.Block block = null;
2222 public Block generateBlock(PrivateKey privateKey,
2232 return new Block(this, privateKey, sigalg, certChain, externalSF,
2237 public static class Block { class in class:SignatureFile
2245 Block(SignatureFile sfg, PrivateKey privateKey, String sigalg, method in class:SignatureFile.Block
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp371 Block* non_osr_block = non_osr_flow->existing_block_at(start_bci(), jsrs);
384 Block* block = block_at(non_osr_start, jsrs);
1565 void ciTypeFlow::SuccIter::set_succ(Block* succ) {
1575 // ciTypeFlow::Block
1580 // ciTypeFlow::Block::Block
1581 ciTypeFlow::Block::Block(ciTypeFlow* outer, function in class:ciTypeFlow::Block
1611 // ciTypeFlow::Block::df_init
1612 void ciTypeFlow::Block
[all...]
H A DciTypeFlow.hpp59 class Block;
510 Block* _pred;
512 Block* _succ;
515 SuccIter(Block* pred) : _pred(pred), _index(-1), _succ(NULL) { next(); }
517 Block* pred() { return _pred; } // Return predecessor
519 Block* succ() { return _succ; } // Return current successor
521 void set_succ(Block* succ); // Update current successor
526 class Block : public ResourceObj { class in class:ciTypeFlow
529 GrowableArray<Block*>* _exceptions;
531 GrowableArray<Block*>* _successor
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java197 public JCBlock Block(long flags, List<JCStatement> stats) { method in class:TreeMaker
H A DJCTree.java107 /** Blocks, of type Block.
2123 JCBlock Block(long flags, List<JCStatement> stats); method in interface:JCTree.Factory
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java1008 * (2) There is complement node of Category or Block
2689 if (node instanceof Category || node instanceof Block)
2721 return new Block(block);
3779 static final class Block extends CharProperty { class in class:Pattern
3781 Block(Character.UnicodeBlock block) { method in class:Pattern.Block

Completed in 804 milliseconds