Searched defs:initType (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/
H A DKeyPairGenerator.java543 private int initType; field in class:KeyPairGenerator.Delegate
560 initType = I_NONE;
593 if (initType == I_SIZE) {
595 } else if (initType == I_PARAMS) {
597 } else if (initType != I_NONE) {
599 ("KeyPairGenerator initType: " + initType);
616 initType = 0;
632 initType = I_SIZE;
659 initType
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DKeyAgreement.java346 private void chooseProvider(int initType, Key key, argument
351 implInit(spi, initType, key, params, random);
372 implInit(spi, initType, key, params, random);
H A DKeyGenerator.java132 private int initType; field in class:KeyGenerator
155 initType = I_NONE;
335 if (initType == I_SIZE) {
337 } else if (initType == I_PARAMS) {
339 } else if (initType == I_RANDOM) {
341 } else if (initType != I_NONE) {
343 ("KeyGenerator initType: " + initType);
360 initType = 0;
380 initType
[all...]
H A DCipher.java806 private void chooseProvider(int initType, int opmode, Key key, argument
812 implInit(spi, initType, opmode, key, paramSpec, params, random);
849 implInit(thisSpi, initType, opmode, key, paramSpec,
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymtab.java194 public void initType(Type type, ClassSymbol c) { method in class:Symtab
199 public void initType(Type type, String name) { method in class:Symtab
200 initType(
206 public void initType(Type type, String name, String bname) { method in class:Symtab
207 initType(type, name);
380 initType(byteType, "byte", "Byte");
381 initType(shortType, "short", "Short");
382 initType(charType, "char", "Character");
383 initType(intType, "int", "Integer");
384 initType(longTyp
[all...]

Completed in 59 milliseconds