Searched defs:nullOK (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbands.h38 byte ixTag; // 0 or 1; null is coded as (nullOK?0:-1)
39 byte nullOK; // 0 or 1; null is coded as (nullOK?0:-1) member in struct:band
74 nullOK = nullOK_;
108 entry* getRefCommon(cpindex* ix, bool nullOK);
H A Dunpack.cpp1815 bool nullOK = false; local
1817 nullOK = true;
1822 b->initRef(ixTag, nullOK);
3934 entry* ref = bc_which->getRefCommon(bc_which->ix, bc_which->nullOK);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DBandStructure.java980 boolean nullOK; field in class:BandStructure.CPRefBand
982 public CPRefBand(String name, Coding regularCoding, byte cpTag, boolean nullOK) { argument
984 this.nullOK = nullOK;
1037 return (nullOK ? 1 : 0) + nonNullCode;
1041 int nonNullCode = code - (nullOK ? 1 : 0);
1256 byte cpTag, boolean nullOK) {
1257 CPRefBand b = new CPRefBand(name, regularCoding, cpTag, nullOK);
2004 assert(((CPRefBand)b).nullOK == e.flagTest(Attribute.EF_NULL));
2187 boolean nullOK
1255 newCPRefBand(String name, Coding regularCoding, byte cpTag, boolean nullOK) argument
[all...]

Completed in 77 milliseconds