Searched defs:first (Results 151 - 162 of 162) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java261 * The boolean value indicating whether this is the first page or not.
847 * is set to the first "updated" row that resulted in an exception
951 * Before returning, this method moves the cursor before the first row
974 // move to before the first
1029 * the first row, after the last row, or on the insert row.
1068 * @throws SQLException if cursor is before the first row, after the last
1143 * from first principles, which can be quite expensive.
1440 * positioned before the first row. The first call to the method
1441 * <code>next</code> moves the cursor to the first ro
3326 public boolean first() throws SQLException { method in class:CachedRowSetImpl
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DExpressionParser.java3713 c.first = null;
3884 jj_lastpos = jj_scanpos = p.first;
3931 p.first = token;
3939 Token first; field in class:JJExpressionParserCalls
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp85 // Each top-level keyword should appear as the first non-whitespace on a line.
94 ident = get_ident(); // Get first token
186 // This is first match rule encountered
449 // This is first match rule encountered
2468 // Record the first instruction at this level
4275 start = end = _ptr; // Start points at first character
4283 if (start == end) { // We popped out on the first try
4298 _curchar = c; // Save the first character of next token
4402 // Return the next replacement variable identifier, skipping first '$'
4474 start = end = _ptr; // Start points at first characte
4511 char first = *_ptr; // the first character local
[all...]
H A Dformssel.cpp129 // Skip the first component, if already handled as (SET dst (...))
360 // Check MatchRule to see if the first entry is the ideal "Return" node
397 // Check MatchRule to see if the first entry is the ideal "Call" node
974 "Component::DEF can only occur in the first position");
1305 const RegDef* first = oper->get_RegClass()->find_first_elem(); local
1306 fprintf(fp, " st->print(\"%s\");\n", first->_regname);
1358 // When the first component is not a DEF,
1479 uint first = 1; local
1482 if( first ) first
1948 bool first = true; local
[all...]
H A Doutput_c.cpp684 fprintf(fp_cpp, " // Multiple possible functional units, choose first unused one\n");
716 fprintf(fp_cpp, " // Multiple possible functional units, choose first unused one\n");
1707 // Skip the first component, if already handled as (SET dst (...))
1787 // Skip first unique operands.
2316 const RegDef* first = oper->get_RegClass()->find_first_elem(); local
2318 fprintf(_fp, "%s(%s_enc)", reg_convert, first->_regname);
2320 fprintf(_fp, "%s_enc", first->_regname);
3439 // Output all simple instruction chain rules first
3769 // Check if the first post-match component may be an interesting def
/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.cpp112 // this list from first to last, all definitions are visited before their uses.
336 // Looks first at stores then at loads, looking for a memory reference
520 // Get slice in predecessor order (last is first)
705 // assert(s1->Opcode() == s2->Opcode(), "check isomorphic first");
930 // Combine packs A and B with A.last == B.first into A.first..,A.last,B.second,..B.last
1211 // To schedule a load pack, we use the memory state of either the first or the last load in
1215 MemNode* first = executed_first(pk)->as_Mem(); local
1230 if (current == first) break;
1259 Node* upper_insert_pt = first
1371 Node* first = executed_first(p); local
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp2810 // stillborn flag for the first case, and if the thread has already
3187 KlassLink* first = NULL; variable
3198 if (first == NULL) {
3199 first = last = l;
3211 while (first != NULL) {
3212 result->obj_at_put(index++, Klass::cast(first->klass())->java_mirror());
3213 first = first->next;
3404 // Return the first non-null class loader up the execution stack, or null
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DCompactSyntax.java3208 if (c.gen < jj_gen) c.first = null;
3353 jj_la = p.arg; jj_lastpos = jj_scanpos = p.first;
3378 p.gen = jj_gen + xla - jj_la; p.first = token; p.arg = xla;
3383 Token first; field in class:CompactSyntax.JJCalls
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp438 // iterate all instructions of the block. skip the first because it is always a label
494 // Compute depth-first and linear scan block orders, and number LIR_Op nodes for linear scan.
599 // iterate all instructions of the block. skip the first because it is always a label
600 assert(visitor.no_operands(instructions->at(0)), "first operation must always be a label");
803 // note: live_in has to be computed only in first iteration or if live_out has changed!
842 // check that the live_in set of the first block is empty
847 tty->print_cr("Error: live_in set of first block must be empty (when this fails, virtual registers are used before they are defined)");
871 assert(false, "live_in set of first block must be empty");
873 bailout("live_in set of first block not empty");
963 Range* r = interval->first();
1489 add_to_list(Interval** first, Interval** prev, Interval* interval) argument
2651 ScopeValue* first; local
[all...]
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c1040 /* Set up first instruction, and start of exception handlers. */
1740 /* A non static method. If this is an <init> method, the first
1776 /* Indicate that we need to look at the first instruction. */
2904 * address of the first instruction of the subroutine. We can return
3476 struct CCpool *first = context->CCroot; local
3477 context->CCcurrent = first;
3479 context->CCfree_ptr = &first->space[0];
3946 * first. */
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp627 uint first = G1_NULL_HRS_INDEX; local
634 first = hr->hrs_index();
636 first = G1_NULL_HRS_INDEX;
651 first = _hrs.find_contiguous(num_regions);
652 if (first != G1_NULL_HRS_INDEX) {
653 for (uint i = first; i < first + num_regions; ++i) {
663 return first;
667 G1CollectedHeap::humongous_obj_allocate_initialize_regions(uint first, argument
670 assert(first !
811 uint first = humongous_obj_allocate_find_first(num_regions, word_size); local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.hpp161 // (e.g., check _external_suspend first without lock and then recheck
740 // Otherwise the first task to enroll will trigger the start
1860 static JavaThread* first() { return _thread_list; } function in class:Threads

Completed in 154 milliseconds

1234567