Searched defs:idx (Results 26 - 50 of 126) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DRow.java131 * @param idx the number of the column in this <code>Row</code> object
136 public void initColumnObject(int idx, Object val) { argument
137 origVals[idx - 1] = val;
146 * @param idx the number of the column in this <code>Row</code> object
151 public void setColumnObject(int idx, Object val) { argument
152 currentVals[idx - 1] = val;
153 setColUpdated(idx - 1);
177 * @param idx the index into the <code>BitSet</code> object maintained by
185 public boolean getColUpdated(int idx) { argument
186 return colsChanged.get(idx);
293 setColUpdated(int idx) argument
[all...]
H A DWebRowSetXmlWriter.java364 private void writeValue(int idx, RowSet caller) throws java.io.IOException { argument
366 int type = caller.getMetaData().getColumnType(idx);
371 boolean b = caller.getBoolean(idx);
379 short s = caller.getShort(idx);
386 int i = caller.getInt(idx);
393 long l = caller.getLong(idx);
401 float f = caller.getFloat(idx);
408 double d = caller.getDouble(idx);
416 writeBigDecimal(caller.getBigDecimal(idx));
423 java.sql.Date date = caller.getDate(idx);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/
H A DJavaStructureMember.java116 public void setConstructorPos(int idx) { argument
117 constructorPos = idx;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DXSSchemaSet.java41 XSSchema getSchema(int idx); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DNode.java105 public int idx() { method in class:Node
142 set.set(idx());
159 if (!set.get(n.idx())) {
161 set.set(n.idx());
214 out.print(idx());
223 out.print(in(i).idx());
237 out.print(in(i).idx());
260 out.print(u.idx());
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DCachedRowSet.java949 * @param idx an <code>int</code> identifying the column to be checked for updates
956 public boolean columnUpdated(int idx) throws SQLException; argument
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DDirectColorModel.java321 private int getsRGBComponentFromsRGB(int pixel, int idx) { argument
322 int c = ((pixel & maskArray[idx]) >>> maskOffsets[idx]);
326 (int) (((c * scaleFactors[idx]) * 255.0f /
328 } else if (scaleFactors[idx] != 1.0f) {
329 c = (int) ((c * scaleFactors[idx]) + 0.5f);
335 private int getsRGBComponentFromLinearRGB(int pixel, int idx) { argument
336 int c = ((pixel & maskArray[idx]) >>> maskOffsets[idx]);
341 (int) (((c * scaleFactors[idx]) * facto
[all...]
H A DComponentColorModel.java609 private int getRGBComponent(int pixel, int idx) { argument
648 return (int) (rgb[idx] * 255.0f + 0.5f);
778 private int extractComponent(Object inData, int idx, int precision) { argument
779 // Extract component idx from inData. The precision argument
797 int mask = (1 << nBits[idx]) - 1;
808 return (int) ((((float) sdata[idx]) /
814 return (int) ((sdata[idx] / 32767.0f) * scalefactor + 0.5f);
823 return (int) (((fdata[idx] / f) * scalefactor) + 0.5f);
828 return (int) (fdata[idx] * scalefactor + 0.5f);
837 return (int) (((ddata[idx] /
892 getRGBComponent(Object inData, int idx) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DobjArrayKlassKlass.cpp129 int idx = 0; local
130 new_str[idx++] = '[';
132 new_str[idx++] = 'L';
134 memcpy(&new_str[idx], name_str, len * sizeof(char));
135 idx += len;
137 new_str[idx++] = ';';
139 new_str[idx++] = '\0';
/openjdk7/jdk/src/share/classes/java/awt/color/
H A DColorSpace.java506 * @param idx the component index
508 * @throws IllegalArgumentException if <code>idx</code> is
511 public String getName (int idx) { argument
513 if ((idx < 0) || (idx > numComponents - 1)) {
515 "Component index out of range: " + idx);
563 return compName[idx];
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueMap.cpp140 int idx = entry_index(hash, size()); local
141 _entries.at_put(idx, new ValueMapEntry(hash, x, nesting(), entry_at(idx)));
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe_hp.cpp343 void jvmtiDeferredLocalVariableSet::set_local_at(int idx, BasicType type, jvalue val) { argument
346 if ( locals()->at(i)->index() == idx) {
352 locals()->push(new jvmtiDeferredLocalVariable(idx, type, val));
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticFramework.cpp357 int idx = 0; local
362 false, idx));
363 idx++;
/openjdk7/jdk/src/solaris/native/java/lang/
H A Djava_props_macosx.c294 CFIndex len = CFArrayGetCount(cf_list), idx; local
297 for (idx = (CFIndex)0; idx < len; idx++) {
299 if ((cf_ehost = CFArrayGetValueAtIndex(cf_list, idx))) {
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRECompiler.java48 int idx; // Current input index into ac field in class:RECompiler
289 if (idx >= len || pattern.charAt(idx++) != '{')
295 if (idx >= len || !Character.isDigit(pattern.charAt(idx)))
302 while (idx < len && Character.isDigit(pattern.charAt(idx)))
304 number.append(pattern.charAt(idx++));
316 if (idx >= len)
322 if (pattern.charAt(idx)
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/x86/
H A DX86Frame.java436 public Address getNativeParamAddr(int idx) { argument
437 return addressOfStackSlot(NATIVE_FRAME_INITIAL_PARAM_OFFSET + idx);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeTracer.cpp497 int idx = ll - lo; local
500 st->print(format, ll, dest[idx], dest[idx]-bci);
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.cpp143 uint idx = hash(k) % _size; local
145 KlassInfoEntry* e = _buckets[idx].lookup(k);
/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp148 int idx = n->is_Copy(); local
149 if( idx ) { // Copies move callee-save info
150 OptoReg::Name old_first = regalloc->get_reg_first(n->in(idx));
151 OptoReg::Name old_second = regalloc->get_reg_second(n->in(idx));
307 int idx = d->is_Copy(); local
308 if( !idx ) break;
309 d = d->in(idx); // Link through copy
311 int idx = m->is_Copy(); local
312 if( !idx ) break;
313 m = m->in(idx);
[all...]
H A Difg.cpp288 uint idx; local
290 while ((idx = elements.next()) != 0) {
291 assert( idx != i, "Must have empty diagonal");
292 assert( pc->Find_const(idx) == idx, "Must not need Find" );
293 assert( _adjs[idx].member(i), "IFG not square" );
294 assert( !(*_yanked)[idx], "No yanked neighbors" );
295 assert( last < idx, "not sorted increasing");
296 last = idx;
357 uint idx local
376 uint idx; local
662 uint idx = n->is_Copy(); local
[all...]
H A Dpostaloc.cpp158 int PhaseChaitin::use_prior_register( Node *n, uint idx, Node *def, Block *current_block, Node_List &value, Node_List &regnd ) { argument
160 if( def == n->in(idx) ) return 0;
169 const RegMask &use_mask = n->in_RegMask(idx);
181 Node *old = n->in(idx);
190 int idx = old->is_Copy(); local
191 assert( idx, "chain of copies being removed" );
192 Node *old2 = old->in(idx); // Chain of copies
200 n->set_req(idx,def);
211 int idx = c->is_Copy(); local
213 while (idx !
233 int idx; local
566 int idx; // Skip occasional useless copy local
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DnativeInst_sparc.cpp208 uint idx; local
226 for (idx = 0; idx < ARRAY_SIZE(offsets); idx++) {
227 nc->set_destination( cb.insts_begin() + offsets[idx] );
228 assert(nc->destination() == (cb.insts_begin() + offsets[idx]), "check unit test");
377 uint idx; local
401 for (idx = 0; idx < ARRAY_SIZE(offsets); idx
487 uint idx; local
581 uint idx = 0; local
726 uint idx = 0; local
856 uint idx; local
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A DdtraceJSDT_solaris.cpp507 for (size_t idx = 0; idx < limit; /*empty*/) {
508 char* str = ((char*)dof) + tab + idx;
509 tty->print_cr("// [0x%x + 0x%x] '%s'", tab, idx, str);
510 idx += strlen(str) + 1;
531 size_t idx = sec->dofs_offset; local
532 size_t limit = idx + sec->dofs_size;
533 for (size_t idx = sec->dofs_offset; idx < limit; idx
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DgrowableArray.hpp208 int idx = _len++; local
209 _data[idx] = elem;
210 return idx;
327 void insert_before(const int idx, const E& elem) { argument
330 for (int j = _len - 1; j >= idx; j--) {
334 _data[idx] = elem;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJCodeModel.java180 int idx = fullyqualifiedName.lastIndexOf('.');
181 if( idx<0 ) return rootPackage()._class(fullyqualifiedName);
183 return _package(fullyqualifiedName.substring(0,idx))
184 ._class(mods, fullyqualifiedName.substring(idx+1), t );
205 int idx = fullyQualifiedName.lastIndexOf('.');
206 if( idx<0 ) return rootPackage()._getClass(fullyQualifiedName);
208 return _package(fullyQualifiedName.substring(0,idx))
209 ._getClass( fullyQualifiedName.substring(idx+1) );
414 private int idx; field in class:JCodeModel.TypeNameParser
427 int start = idx;
[all...]

Completed in 166 milliseconds

123456