/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/ |
H A D | PayloadQNameBasedOperationFinder.java | 66 private final QNameMap<List<String>> unique = new QNameMap<List<String>>(); field in class:PayloadQNameBasedOperationFinder 79 List<String> methods = unique.get(name); 82 unique.put(name, methods); 87 // Log warnings about non unique payload QNames 88 for (QNameMap.Entry<List<String>> e : unique.entrySet()) { 98 // Set up method handlers only for unique QNames. So that dispatching 100 if (unique.get(name).size() == 1) { 116 * @return not null if it finds a unique handler for the request 117 * null if it cannot idenitify a unique wsdl operation from the Payload QName. 137 if (op == null && !unique [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/ |
H A D | XSLTCDTMManager.java | 130 * specified source. If the unique flag is true, a new instance will 138 * @param unique true if the returned DTM must be unique, probably because it 149 public DTM getDTM(Source source, boolean unique, argument 153 return getDTM(source, unique, whiteSpaceFilter, incremental, 159 * specified source. If the unique flag is true, a new instance will 167 * @param unique true if the returned DTM must be unique, probably because it 179 public DTM getDTM(Source source, boolean unique, argument 183 return getDTM(source, unique, whiteSpaceFilte 211 getDTM(Source source, boolean unique, DTMWSFilter whiteSpaceFilter, boolean incremental, boolean doIndexing, boolean buildIdIndex, boolean newNameTable) argument 247 getDTM(Source source, boolean unique, DTMWSFilter whiteSpaceFilter, boolean incremental, boolean doIndexing, boolean hasUserReader, int size, boolean buildIdIndex) argument 286 getDTM(Source source, boolean unique, DTMWSFilter whiteSpaceFilter, boolean incremental, boolean doIndexing, boolean hasUserReader, int size, boolean buildIdIndex, boolean newNameTable) argument [all...] |
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/ |
H A D | AttributeGen.java | 65 private boolean unique (InterfaceEntry entry, String name) method in class:AttributeGen 76 // Recursively call unique on each derivedFrom interface 79 if (!unique ((InterfaceEntry)derivedFrom.nextElement (), name)) 83 // derivedFrom interfaces, then the name is unique. 85 } // unique
|
/openjdk7/jdk/src/share/classes/java/rmi/server/ |
H A D | UID.java | 34 * A <code>UID</code> represents an identifier that is unique over time 39 * identifier that is unique over time with respect to the host it is 45 * <li><code>unique</code>, an <code>int</code> that uniquely identifies 48 * example implementation of the <code>unique</code> value would be a 60 * <p>An independently generated <code>UID</code> instance is unique 63 * clock is never set backward. A globally unique identifier can be 64 * constructed by pairing a <code>UID</code> instance with a unique host 88 private final int unique; field in class:UID 105 * Generates a <code>UID</code> that is unique over time with 115 unique 165 UID(int unique, long time, short count) argument [all...] |
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | regalloc.cpp | 37 PhaseRegAlloc::PhaseRegAlloc( uint unique, PhaseCFG &cfg, argument
|
H A D | coalesce.cpp | 53 uint unique = _names.Size(); local 54 for( uint i=0; i<unique; i++ ) { 176 uint unique = _names.Size(); local 177 for( i=0; i<unique; i++ ) 379 _unique = C->unique();
|
H A D | chaitin.cpp | 149 PhaseChaitin::PhaseChaitin(uint unique, PhaseCFG &cfg, Matcher &matcher) argument 150 : PhaseRegAlloc(unique, cfg, matcher, 157 _names(unique), _uf_map(unique), 162 _oldphi(unique) 240 if (C->unique() > _names.Size()) _names.extend(C->unique()-1, 0); 325 // Bail out if unique gets too large (ie - unique > MaxNodeLimit) 329 // Bail out if unique get [all...] |
H A D | gcm.cpp | 124 // Allocate node stack of size C->unique()+8 to avoid frequent realloc 125 GrowableArray <Node *> spstack(C->unique()+8); 189 // tree, or else there will not be a unique deepest block. 206 Node_Stack nstack(roots.Size() + 8); // (unique >> 1) + 24 from Java2D stats 419 // tree, or else there will not be a unique deepest block. 487 // by the unique point in the dom tree where all memory effects 515 DEBUG_ONLY(GrowableArray<uint> phi_inputs(area, C->unique(),0,0)); 1250 void PhaseCFG::GlobalCodeMotion( Matcher &matcher, uint unique, Node_List &proj_list ) { argument 1274 stack.map( (unique >> 1) + 16, NULL); // Pre-grow the list 1303 unique [all...] |
H A D | loopopts.cpp | 60 uint old_unique = C->unique(); 709 if( C->unique() > 35000 ) return n; // Method too big 736 tty->print_cr("*** Split-if bails out: %d nodes, region weight %d", C->unique(), weight); 793 if( C->unique() > 35000 ) return; // Method too big 1302 uint new_counter = C->unique(); 1591 // Return the (unique) control output node that's in the loop (if it exists.) 1593 Node* unique = NULL; local 1598 if (unique != NULL) { 1601 unique = use; 1604 return unique; [all...] |
H A D | loopnode.cpp | 2101 uint unique = C->unique(); local 2103 _loop_work += unique; 2114 _nodes.map(C->unique(), NULL); 2115 memset(_nodes.adr(), 0, wordSize * C->unique()); 2188 _idom_size = C->unique(); 2220 int stack_size = (C->unique() >> 1) + 16; // (unique>>1)+16 from Java2D stats 2249 assert(C->unique() == unique, "verificatio [all...] |
H A D | compile.hpp | 119 int _index; // unique index, used with MergeMemNode 311 uint _unique; // Counter for unique Node indices 672 uint unique() const { return _unique; } function in class:Compile 844 return unique() > (uint)NodeCountInliningCutoff;
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ |
H A D | DTMManager.java | 176 * specified source. If the unique flag is true, a new instance will 187 * @param unique true if the returned DTM must be unique, probably because it 199 boolean unique, DTMWSFilter whiteSpaceFilter, 198 getDTM(javax.xml.transform.Source source, boolean unique, DTMWSFilter whiteSpaceFilter, boolean incremental, boolean doIndexing) argument
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/ |
H A D | DTMManagerDefault.java | 215 * specified source. If the unique flag is true, a new instance will 220 * A bit of magic in this implementation: If the source is null, unique is true, 228 * @param unique true if the returned DTM must be unique, probably because it 239 synchronized public DTM getDTM(Source source, boolean unique, argument 246 (unique ? "UNIQUE" : "shared")+ 302 if (source==null && unique && !incremental && !doIndexing) { 569 // Can't return the same node since it's unique to a specific DTM,
|
/openjdk7/jdk/src/share/classes/java/util/logging/ |
H A D | FileHandler.java | 88 * <li> "%u" a unique number to resolve conflicts 102 * Normally the "%u" unique field is set to 0. However, if the <tt>FileHandler</tt> 104 * another process it will increment the unique number field and try 114 * Note that the use of unique ids to avoid conflicts is only guaranteed 385 int unique = -1; 387 unique++; 388 if (unique > MAX_LOCKS) { 391 // Generate a lock file name from the "unique" int. 392 lockFileName = generate(pattern, 0, unique).toString() + ".lck"; 436 files[i] = generate(pattern, i, unique); 463 generate(String pattern, int generation, int unique) argument [all...] |
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/resources/ |
H A D | hat.js | 1431 * Returns array of unique elements from the given input 1434 * @param array from which unique elements are returned. 1435 * @param code optional expression (or function) giving unique 1439 function unique(array, code) { function
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/ |
H A D | MonitorBase.java | 88 // In general, monitoring will add -N, where N is unique integer, 91 // The endpoint address would be unique, but we do not know 195 private @NotNull ManagedObjectManager createMOMLoop(final String rootName, final int unique) { argument 199 mom = createRoot(mom, rootName, unique); 265 private ManagedObjectManager createRoot(final ManagedObjectManager mom, final String rootName, int unique) { argument 266 final String name = rootName + (unique == 0 ? "" : "-" + String.valueOf(unique)); 283 if (unique > maxUniqueEndpointRootNameRetries) { 288 final String msg = basemsg + "Will try to make unique"; 290 return createMOMLoop(rootName, ++unique); [all...] |
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/ |
H A D | RichDiagnosticFormatter.java | 226 private boolean unique(TypeVar typevar) { method in class:RichDiagnosticFormatter 384 if (unique(t) ||
|
/openjdk7/jdk/test/sun/net/www/ftptest/ |
H A D | FtpCommandHandler.java | 312 private void doStor(String arg, boolean unique) { argument
|
/openjdk7/jdk/src/share/classes/sun/net/ftp/ |
H A D | FtpClient.java | 411 * {@code unique} argument, and returns the {@code OutputStream} 419 * If {@code unique} is set to {@code true}, the resultant file 420 * is to be created under a name unique to that directory, meaning 422 * generate a new, unique, file name. 427 * @param unique {@code true} if the remote files should be unique, 433 public abstract OutputStream putFileStream(String name, boolean unique) throws FtpProtocolException, IOException; argument 438 * {@code unique} argument. The content of the {@code InputStream} 445 * If {@code unique} is set to {@code true}, the resultant file 446 * is to be created under a name unique t 488 putFile(String name, InputStream local, boolean unique) argument [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/ |
H A D | XPathContext.java | 138 * specified source. If the unique flag is true, a new instance will 148 * @param unique true if the returned DTM must be unique, probably because it 157 public DTM getDTM(javax.xml.transform.Source source, boolean unique, argument 162 return m_dtmManager.getDTM(source, unique, wsfilter,
|
/openjdk7/jdk/src/share/classes/sun/net/ftp/impl/ |
H A D | FtpClient.java | 394 * 226 Transfer complete (unique file name:toto.txt.1). 395 * Usually happens when a STOU (store unique) command had been issued. 400 int i = response.indexOf("unique file name:"); 403 i += 17; // Length of "unique file name:" 1295 * <code>unique</code> argument, and returns the <code>OutputStream</code> 1303 * If <code>unique</code> is set to <code>true</code>, the resultant file 1304 * is to be created under a name unique to that directory, meaning 1306 * generate a new, unique, file name. 1311 * @param unique <code>true</code> if the remote files should be unique, 1317 putFileStream(String name, boolean unique) argument 1347 putFile(String name, InputStream local, boolean unique) argument [all...] |
/openjdk7/jdk/src/share/classes/java/sql/ |
H A D | DatabaseMetaData.java | 2271 * table that reference the primary key or the columns representing a unique constraint of the parent table (could be the same or a different table). 2504 * <LI><B>NON_UNIQUE</B> boolean => Can index values be non-unique. 2527 * number of unique values in the index. 2545 * @param unique when true, return only indices for unique values; 2546 * when false, return indices regardless of whether unique or not 2554 boolean unique, boolean approximate) 2553 getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate) argument
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/ |
H A D | XMLSchemaValidator.java | 3401 * for handling unique, key, and keyref. 3846 /** Constructs a unique value store. */ 3847 public UniqueValueStore(UniqueOrKey unique) { argument 3848 super(unique); 4093 // initialize value stores for unique fields 4099 // initialize value stores for unique fields 4100 UniqueOrKey unique = (UniqueOrKey) icArray[i]; 4101 LocalIDKey toHash = new LocalIDKey(unique, fElementDepth); 4105 uniqueValueStore = new UniqueValueStore(unique); 4161 // hashtable, if id is a <unique> o [all...] |
/openjdk7/hotspot/src/share/vm/adlc/ |
H A D | formssel.cpp | 658 Component *unique = NULL; local 673 unique = comp; 681 unique = comp; 701 assert(unique != NULL, ""); 703 // unique def, no uses 705 // // unique def, some uses 707 // unique = NULL; 711 unique = NULL; 713 // unique use, no defs 714 assert(unique ! [all...] |