Searched refs:which (Results 51 - 75 of 160) sorted by relevance

1234567

/openjdk9/jdk/test/sun/security/tools/jarsigner/
H A Dsamename.sh30 JAVAC_CMD=`which javac`
H A Dnameclash.sh30 JAVAC_CMD=`which javac`
H A Dcollator.sh30 JAVAC_CMD=`which javac`
H A Djvindex.sh30 JAVAC_CMD=`which javac`
H A Donlymanifest.sh30 JAVAC_CMD=`which javac`
H A Dcrl.sh30 JAVAC_CMD=`which javac`
H A Dcertpolicy.sh32 JAVAC_CMD=`which javac`
/openjdk9/jdk/src/java.base/share/classes/sun/text/normalizer/
H A DUCharacterProperty.java204 int which; field in class:UCharacterProperty.NormQuickCheckIntProperty
207 NormQuickCheckIntProperty(int source, int which, int max) { argument
209 this.which=which;
220 public int getIntPropertyValue(int c, int which) { argument
221 if (which == BIDI_PAIRED_BRACKET_TYPE) {
H A DUnicodeSetStringSpan.java106 public UnicodeSetStringSpan(final UnicodeSet set, final ArrayList<String> setStrings, int which) { argument
114 all = (which == ALL);
116 if (0 != (which & NOT_CONTAINED)) {
141 if (/* (0 != (which & UTF16)) && */ length16 > maxLength16) {
145 if (!someRelevant && (which & WITH_COUNT) == 0) {
150 // a set takes some time and memory which are wasted if there are no relevant strings.
182 if (true /* 0 != (which & UTF16) */) {
183 if (0 != (which & CONTAINED)) {
184 if (0 != (which & FWD)) {
187 if (0 != (which
[all...]
/openjdk9/jdk/test/java/awt/JAWT/
H A DJAWT.sh39 PARENT=`dirname \`which java\``
134 which ${MAKE} >${NULL} 2>&1
141 which ${CC} >${NULL} 2>&1
/openjdk9/jdk/src/java.base/share/classes/java/lang/invoke/
H A DInvokers.java121 int which = (isExact ? MethodTypeForm.LF_EX_INVOKER : MethodTypeForm.LF_GEN_INVOKER);
122 LambdaForm lform = invokeHandleForm(mtype, false, which);
186 * Find or create an invoker which passes unchanged a given number of arguments
230 int which;
232 case "invokeExact": which = MethodTypeForm.LF_EX_LINKER; break;
233 case "invoke": which = MethodTypeForm.LF_GEN_LINKER; break;
238 lform = invokeHandleForm(mtype, false, which);
241 lform = invokeHandleForm(mtype, true, which);
255 * @param which bit-encoded 0x01 whether it is a CP adapter ("linker") or MHs.invoker value ("invoker");
258 static LambdaForm invokeHandleForm(MethodType mtype, boolean customized, int which) { argument
[all...]
H A DDirectMethodHandle.java48 * The flavor of method handle which implements a constant reference
153 * Create a LF which can invoke the given method.
161 int which;
163 case REF_invokeVirtual: which = LF_INVVIRTUAL; break;
164 case REF_invokeStatic: which = LF_INVSTATIC; break;
165 case REF_invokeSpecial: which = LF_INVSPECIAL; break;
166 case REF_invokeInterface: which = LF_INVINTERFACE; break;
167 case REF_newInvokeSpecial: which = LF_NEWINVSPECIAL; break;
170 if (which == LF_INVSTATIC && shouldBeInitialized(m)) {
172 preparedLambdaForm(mtype, which);
183 preparedLambdaForm(MethodType mtype, int which) argument
190 makePreparedLambdaForm(MethodType mtype, int which) argument
[all...]
/openjdk9/jdk/src/jdk.management/solaris/native/libmanagement_ext/
H A DUnixOperatingSystem.c182 * Return the cpu load (0-1) for proc number 'which' (or average all if which == -1)
184 double get_cpu_load(int which) { argument
192 if (which == -1) {
203 load = MIN(get_single_cpu_load(which), 1.0);
/openjdk9/hotspot/test/gc/g1/
H A DTestRemsetLoggingTools.java91 private static void checkCounts(int expected, int actual, String which) throws Exception { argument
93 throw new Exception("RSet summaries mention " + which + " regions an incorrect number of times. Expected " + expected + ", got " + actual);
/openjdk9/jdk/test/com/sun/corba/5036554/
H A DTestCorbaBug.sh36 PARENT=`dirname \`which java\``
/openjdk9/jdk/test/sun/security/tools/keytool/
H A Demptysubject.sh32 JAVAC_CMD=`which javac`
H A Dselfissued.sh32 JAVAC_CMD=`which javac`
/openjdk9/
H A DMakefile37 $(info Error: '$(MAKE)' does not seem to be GNU Make, which is a requirement.)
/openjdk9/hotspot/src/share/vm/classfile/
H A DresolutionErrors.hpp59 const constantPoolHandle& pool, int which, Symbol* error, Symbol* message);
/openjdk9/hotspot/src/share/tools/LogCompilation/
H A DMakefile35 JDK_HOME := $(shell dirname $(shell which java))/..
/openjdk9/jdk/test/com/sun/jdi/
H A DRedefineChangeClassOrder.sh74 // moved after the Foo2 code below which causes things to be
/openjdk9/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A Drun_tests.sh42 # clear which version of 'java' is running we do a 'which java' and
49 which $JAVA
/openjdk9/nashorn/test/script/trusted/
H A DJDK-util.js49 * Returns which command is selected from PATH
52 function which(cmd) {
/openjdk9/nashorn/test/script/nosecurity/
H A DJDK-util.js49 * Returns which command is selected from PATH
52 function which(cmd) {
/openjdk9/jdk/src/jdk.pack/share/native/common-unpack/
H A Dunpack.h85 ptrlist requested_bsms; // which bsms need output?
253 int files_written; // also tells which file we're working on
254 int classes_written; // also tells which class we're working on
260 fillbytes code_fixup_type; // which format of branch operand?
263 ptrlist requested_ics; // which ics need output?
274 uint idx; // index (0..31...) which identifies this layout
431 void set_output(fillbytes* which) { argument
433 which->ensureSize(1 << 12); // covers the average classfile
434 wpbase = which->base();
435 wp = which
[all...]

Completed in 117 milliseconds

1234567