Searched refs:param (Results 276 - 300 of 315) sorted by relevance

<<111213

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeCopier.java129 JCVariableDecl param = copy(t.param, p);
131 return M.at(t.pos).Catch(param, body);
H A DJCTree.java416 * @param pid The tree representing the package clause.
417 * @param sourcefile The source file name.
418 * @param defs All definitions in this file (ClassDef, Import, and Skip)
419 * @param packge The package it belongs to.
420 * @param namedImportScope A scope for all named imports.
421 * @param starImportScope A scope for all import-on-demands.
422 * @param lineMap Line starting positions, defined only
424 * @param docComments A hashtable that stores all documentation comments
427 * @param endPositions A hashtable that stores ending positions of source
503 * @param quali
1070 public JCVariableDecl param; field in class:JCTree.JCCatch
1072 JCCatch(JCVariableDecl param, JCBlock body) argument
2140 Catch(JCVariableDecl param, JCBlock body) argument
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java216 static Object randomArg(Class<?> param) { argument
217 Object wrap = castToWrapperOrNull(nextArg(param), param);
227 if (param.isInterface()) {
228 for (Class<?> c : param.getClasses()) {
229 if (param.isAssignableFrom(c) && !c.isInterface())
230 { param = c; break; }
233 if (param.isInterface() && param.isAssignableFrom(List.class))
235 if (param
250 randomArgs(int nargs, Class<?> param) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DDTD.java74 public final Element param = getElement("param"); field in class:DTD
85 * @param name the name, as a <code>String</code> of the new DTD
125 * @param name the requested <code>String</code>
137 * @param name the requested <code>String</code>
154 * @param index the requested index
168 * @param name the name of the <code>Entity</code> as a <code>String</code>
169 * @param type the type of the <code>Entity</code>
170 * @param data the <code>Entity</code>'s data
196 * @param nam
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BC.c211 mlib_status mlib_ImageAffine_u8_1ch_bc (mlib_affine_param *param) argument
453 mlib_status mlib_ImageAffine_u8_2ch_bc (mlib_affine_param *param) argument
763 mlib_status mlib_ImageAffine_u8_3ch_bc (mlib_affine_param *param) argument
1034 mlib_status mlib_ImageAffine_u8_4ch_bc (mlib_affine_param *param) argument
H A Dmlib_v_ImageAffine_BC_S16.c189 mlib_status mlib_ImageAffine_s16_1ch_bc (mlib_affine_param *param) argument
495 mlib_status mlib_ImageAffine_s16_2ch_bc (mlib_affine_param *param) argument
918 mlib_status mlib_ImageAffine_s16_3ch_bc (mlib_affine_param *param) argument
1302 mlib_status mlib_ImageAffine_s16_4ch_bc (mlib_affine_param *param) argument
H A Dmlib_v_ImageAffine_BC_U16.c181 mlib_status mlib_ImageAffine_u16_1ch_bc (mlib_affine_param *param) argument
480 mlib_status mlib_ImageAffine_u16_2ch_bc (mlib_affine_param *param) argument
904 mlib_status mlib_ImageAffine_u16_3ch_bc (mlib_affine_param *param) argument
1289 mlib_status mlib_ImageAffine_u16_4ch_bc (mlib_affine_param *param) argument
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decdecode.c45 #include <sys/param.h>
H A Dmpi.h48 #include <sys/param.h>
H A Doid.c44 #include <sys/param.h>
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformssel.cpp1672 Opcode::opcode_type Opcode::as_opcode_type(const char *param) { argument
1673 if( strcmp(param,"primary") == 0 ) {
1676 else if( strcmp(param,"secondary") == 0 ) {
1679 else if( strcmp(param,"tertiary") == 0 ) {
1757 const char *param = (*params)[param_no]; local
1760 return ( param != NULL && *param == '$') ? (param+1) : param;
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageIO.java247 * @param useCache a <code>boolean</code> indicating whether a
276 * @param cacheDirectory a <code>File</code> specifying a directory.
323 * @param input an <code>Object</code> to be used as an input
384 * @param output an <code>Object</code> to be used as an output
629 * @param input an <code>ImageInputStream</code> or other
688 * @param formatName a <code>String</code> containing the informal
723 * @param fileSuffix a <code>String</code> containing a file
758 * @param MIMEType a <code>String</code> containing a file
871 * @param formatName a <code>String</code> containing the informal
906 * @param fileSuffi
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp2669 LIRItem* param = args->at(i); local
2672 param->load_item_force(loc);
2675 param->load_for_store(addr->type());
2677 __ move_wide(param->result(), addr);
2680 __ unaligned_move(param->result(), addr);
2682 __ move(param->result(), addr);
2709 LIRItem* param = new LIRItem(x->argument_at(i), this); local
2710 argument_items->append(param);
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c734 SplashScreenThread(void *param) { argument
735 Splash *splash = (Splash *) param;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_MenuItem.cpp717 void AwtMenuItem::_SetLabel(void *param) argument
721 SetLabelStruct *sls = (SetLabelStruct *)param;
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DLLNI.java492 for (VariableElement param: params) {
493 argTypes.add(types.erasure(param.asType()));
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngpriv.h135 # define PNG_UNUSED(param) (void)param;
/openjdk7/jdk/make/tools/reorder/tools/
H A Dmcount.c32 #include <sys/param.h>
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java204 * @param prefix
686 public boolean isAttributeSpecified(int param) { argument
/openjdk7/jdk/src/solaris/native/java/net/
H A DInet4AddressImpl.c41 #include <sys/param.h>
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java98 * @param filename File to be generated.
110 * @param path Platform-dependent {@link #path} used when
112 * @param filename Name of file to be generated.
113 * @param relativePath Value for the variable {@link #relativePath}.
207 * @param link String name of the file.
208 * @param where Position in the file
209 * @param target Name of the target frame.
210 * @param label Tag for the link.
211 * @param strong Whether the label should be strong or not?
233 * @param i
2702 writeAnnotationInfo(int indent, Doc doc, Parameter param) argument
2714 addAnnotationInfo(int indent, Doc doc, Parameter param, Content tree) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTrees.java374 * @param errorType The errorType for which we want to get the original type.
390 * @param kind the kind of message
391 * @param msg the message, or an empty string if none
392 * @param t the tree to use as a position hint
393 * @param root the compilation unit that contains tree
439 JCVariableDecl v = ct.param;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCRTable.java74 * @param tree The tree or the list of trees for which
76 * @param flags The set of flags designating type of the entry.
77 * @param startPc The starting code position.
78 * @param endPc The ending code position.
85 * @param databuf The buffer to write bytecodes to.
337 sr.mergeWith(csp(tree.param));
H A DGen.java203 * @param n The integer to be loaded.
210 * @param tc The given type code (@see ByteCode).
228 * @param tc The given type code (@see ByteCode).
235 * @param tc The given type code (@see ByteCode).
254 * @param sym The accessed symbol
255 * @param site The qualifier's type.
302 * @param type The type for which a reference is inserted.
330 * @param type The variable's type.
342 * @param pos Position to be used for error reporting.
343 * @param sit
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParser.java166 public void addParameter(Param param) { argument
167 addVariableOrParam(param);
421 * @param reader A SAX2 SAXReader (parser)
422 * @param input A SAX2 InputSource can be passed to a SAX reader
458 * @param input A SAX2 InputSource can be passed to a SAX reader
517 * @param media The media attribute to be matched. May be null, in which
519 * @param title The value of the title attribute to match. May be null.
520 * @param charset The value of the charset attribute to match. May be null.
654 initAttrTable("param", new String[] {"name", "select"});
655 initAttrTable("with-param", ne
[all...]

Completed in 329 milliseconds

<<111213