Searched refs:initType (Results 1 - 9 of 9) sorted by relevance

/openjdk10/jdk/src/java.base/share/classes/javax/crypto/
H A DKeyGenerator.java145 private int initType; field in class:KeyGenerator
174 initType = I_NONE;
374 if (initType == I_SIZE) {
376 } else if (initType == I_PARAMS) {
378 } else if (initType == I_RANDOM) {
380 } else if (initType != I_NONE) {
382 ("KeyGenerator initType: " + initType);
399 initType = 0;
419 initType
[all...]
H A DKeyAgreement.java360 private void chooseProvider(int initType, Key key, argument
365 implInit(spi, initType, key, params, random);
386 implInit(spi, initType, key, params, random);
H A DCipher.java847 private void chooseProvider(int initType, int opmode, Key key, argument
853 implInit(spi, initType, opmode, key, paramSpec, params, random);
890 implInit(thisSpi, initType, opmode, key, paramSpec,
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DKeyPairGenerator.java579 private int initType; field in class:KeyPairGenerator.Delegate
596 initType = I_NONE;
634 if (initType == I_SIZE) {
636 } else if (initType == I_PARAMS) {
638 } else if (initType != I_NONE) {
640 ("KeyPairGenerator initType: " + initType);
657 initType = 0;
673 initType = I_SIZE;
700 initType
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DSymtab.java249 public void initType(Type type, ClassSymbol c) { method in class:Symtab
254 public void initType(Type type, String name) { method in class:Symtab
255 initType(
261 public void initType(Type type, String name, String bname) { method in class:Symtab
262 initType(type, name);
423 initType(byteType, "byte", "Byte");
424 initType(shortType, "short", "Short");
425 initType(charType, "char", "Character");
426 initType(intType, "int", "Integer");
427 initType(longTyp
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/lang/invoke/
H A DMethodHandles.java5174 MethodType initType = init.type();
5175 if (initType.returnType() != returnType ||
5176 !initType.effectivelyIdenticalParameters(0, outerList)) {
5177 throw misMatchedTypes("loop initializer", initType, methodType(returnType, outerList));
5515 MethodType initType = init.type();
5516 if (initType.returnType() != returnType ||
5517 !initType.effectivelyIdenticalParameters(0, outerList)) {
5518 throw misMatchedTypes("loop initializer", initType, methodType(returnType, outerList));
5759 MethodType initType = init.type();
5760 if (initType
[all...]
/openjdk10/langtools/test/jdk/javadoc/tool/sampleapi/lib/sampleapi/generator/
H A DPackageGenerator.java426 Type initType = getTypeByName(type);
429 initExpr = make.Literal(initType.isPrimitive() ?
430 initType.getTag() :
/openjdk10/jdk/test/java/lang/invoke/
H A DLoopCombinatorTest.java537 public static void testCountedLoopBodyParameters(MethodType countType, MethodType initType, MethodType bodyType) throws Throwable { argument
540 initType == null ? null : MethodHandles.empty(initType),
543 // The initType has to just roll with whatever the other two agree on.
552 public static void testCountedLoopBodyParametersNullInit(MethodType countType, MethodType initType, MethodType bodyType) throws Throwable { argument
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DTypeEnter.java1034 Type initType = typarams.nonEmpty() ?
1038 initType, c);

Completed in 196 milliseconds