Searched refs:head (Results 151 - 175 of 217) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogManager.java714 String head;
716 head = name.substring(0, ix);
719 head = name;
725 LogNode child = node.children.get(head);
728 node.children.put(head, child);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DScheduledThreadPoolExecutor.java509 Delayed head = (Delayed) super.getQueue().peek();
510 if (head != null) {
511 long headDelay = head.getDelay(TimeUnit.NANOSECONDS);
840 * Thread designated to wait for the task at the head of the
848 * interim. Whenever the head of the queue is replaced with a
859 * head of the queue or a new thread may need to become leader.
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java225 l.head.symbolAdded(sym, this);
278 l.head.symbolRemoved(sym, this);
702 currentIterator = nextIterator(scopesToScan.head);
H A DLint.java326 Pair<MethodSymbol,Attribute> value = v.head;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DRichDiagnosticFormatter.java539 boolean boundErroneous = bounds.head == null ||
540 bounds.head.tag == NONE ||
541 bounds.head.tag == ERROR;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DUtil.java231 String head = name ;
239 trname = (String)(packageTranslation.get( head )) ;
243 index = head.lastIndexOf( '/' ) ;
245 tail = head.substring( index ) + tail ;
246 head = head.substring( 0, index ) ;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavaCompiler.java946 if (defs.head instanceof JCClassDecl)
947 cdefs.append((JCClassDecl)defs.head);
1353 if (pdef.head != null) {
1355 results.add(new Pair<Env<AttrContext>, JCClassDecl>(env, (JCClassDecl)pdef.head));
1403 JCClassDecl cdef = (JCClassDecl)l.head;
1505 JCTree t = it.head;
/openjdk7/corba/make/common/shared/
H A DDefs-utils.gmk103 HEAD = $(UTILS_USR_BIN_PATH)head
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DJavadocTool.java145 String name = it.head;
169 String packageName = packs.head;
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c1885 #define DELETE_ACTIVE(head,pnt) \
1892 head = nextp; \
1899 #define INSERT_ACTIVE(head,pnt,cy) \
1935 ne->next = head; \
1937 if (head) { \
1938 head->prev = ne; \
1940 head = active + nact; \
1941 pnt->edge = head; \
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp251 assert(_indexedFreeList[i].head() == NULL, "reset check failed");
263 assert(_indexedFreeList[i].head() == NULL, "reset check failed");
349 for (FreeChunk* fc = _indexedFreeList[i].head(); fc != NULL;
421 if (_indexedFreeList[i].head() != NULL) {
460 for (FreeChunk* fc = _indexedFreeList[i].head(); fc != NULL;
582 for (FreeChunk* fc = _indexedFreeList[i].head(); fc != NULL;
596 if (_indexedFreeList[i].head() != NULL) {
1189 for (FreeChunk* fc = _indexedFreeList[i].head(); fc != NULL;
1283 assert(res != (HeapWord*)_indexedFreeList[size].head(),
1341 if (fl->head()) {
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.hpp64 using FreeList<Chunk>::head;
100 // Returns the head of the free list as a pointer to a TreeChunk.
H A DfreeList.hpp33 // maintains a the structure of the list (head, tail, etc.) plus
94 // Reset the head, tail, hint, and count of a free list.
105 Chunk* head() const { function in class:VALUE_OBJ_CLASS_SPEC
114 // Set the head of the list and set the prev field of non-null
119 // If this method is not used (just set the head instead),
293 // Unlink head of list and return it. Returns NULL if
/openjdk7/jdk/src/macosx/native/jobjc/src/core/
H A DPrimitiveCoder.hs122 capitalize s = [toUpper $ head s] ++ tail s
185 then "\t\treturn " ++ (show.head $ sizes) ++ ";"
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DContext.h367 (list).head = NULL; \
/openjdk7/jdk/test/tools/launcher/
H A DMultipleJRE.sh305 RELEASE=`$JAVA -version 2>&1 | head -n 1 | cut -d ' ' -f 3 | \
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeScanner.java57 scan(l.head);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.h158 Posf *head; /* Heads of the hash chains or NIL. */ member in struct:internal_state
/openjdk7/hotspot/src/share/vm/opto/
H A Druntime.cpp1306 // atomically add the new counter to the head of the list. We only
1308 NamedCounter* head; local
1310 head = _named_counters;
1311 c->set_next(head);
1312 } while (Atomic::cmpxchg_ptr(c, &_named_counters, head) != head);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java366 head();
422 Content head = new HtmlTree(HtmlTag.HEAD);
426 head.addContent(headComment);
431 head.addContent(meta);
433 head.addContent(getTitle());
437 head.addContent(meta);
442 head.addContent(meta);
445 head.addContent(getStyleSheetProperties());
447 head, body);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlTree.java356 * Generates an HTML tag with lang attribute. It also adds head and body
360 * @param head head for the HTML tag
364 public static HtmlTree HTML(String lang, Content head, Content body) { argument
365 HtmlTree htmltree = new HtmlTree(HtmlTag.HTML, nullCheck(head), nullCheck(body));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DEnter.java272 Type t = classEnter(l.head, env);
291 log.error(tree.packageAnnotations.head.pos(),
/openjdk7/langtools/test/tools/javac/types/
H A DPrimitiveConversionTest.java192 Mapping(c1.getTypeArguments().head, predef.stringType));
197 Mapping(c1.getTypeArguments().head, predef.stringType)),
/openjdk7/jdk/make/common/shared/
H A DDefs-utils.gmk121 HEAD = $(UTILS_USR_BIN_PATH)head
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c977 char *head; local
987 head = p; /* Save the start of the token to return */
1009 * Update the parameter to point to the head of the remaining string
1014 return (head);

Completed in 140 milliseconds

123456789