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

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DOpenTypeUtilities.h48 static Offset getTagOffset(LETag tag, const LEReferenceToArrayOf<TagAndOffsetRecord> &records, LEErrorCode &success);
52 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount) { argument
54 LETableReference recordRef0((const le_uint8*)records);
58 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const LEReferenceToArrayOf<GlyphRangeRecord> &records, LEErrorCode &success);
H A DOpenTypeUtilities.cpp80 Offset OpenTypeUtilities::getTagOffset(LETag tag, const LEReferenceToArrayOf<TagAndOffsetRecord> &records, LEErrorCode &success) argument
84 le_uint32 recordCount = records.getCount();
92 const ATag &aTag = records.getAlias(extra,success)->tag;
102 const ATag &aTag = records.getAlias(index+probe,success)->tag;
110 const ATag &aTag = records.getAlias(index,success)->tag;
112 return SWAPW(records.getAlias(index,success)->offset);
119 le_int32 OpenTypeUtilities::getGlyphRangeIndex(TTGlyphID glyphID, const LEReferenceToArrayOf<GlyphRangeRecord> &records, LEErrorCode &success) argument
123 le_uint32 recordCount = records.getCount();
134 if (SWAPW(records(extra,success).firstGlyph) <= glyphID) {
141 if (SWAPW(records(rang
[all...]
H A DPairPositioningSubtables.h80 LEReferenceTo<PairValueRecord> findPairValueRecord(const LETableReference &base, TTGlyphID glyphID, const PairValueRecord *records,
H A DPairPositioningSubtables.cpp169 LEReferenceTo<PairValueRecord> PairPositioningFormat1Subtable::findPairValueRecord(const LETableReference &base, TTGlyphID glyphID, const PairValueRecord *records, le_uint16 recordCount, le_uint16 recordSize, LEErrorCode &success) const argument
175 LEReferenceTo<PairValueRecord> record(base, success, records);
193 const PairValueRecord *record = records;
/openjdk7/langtools/test/tools/javac/generics/
H A DExtendedRaw2.java54 List records = null;
56 int result = Collections.binarySearch(records, x);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DDisposer.java51 private static final Hashtable records = new Hashtable(); field in class:Disposer
139 records.put(ref, rec);
147 DisposerRecord rec = (DisposerRecord)records.remove(obj);
214 DisposerRecord rec = (DisposerRecord)records.remove(obj);
245 * so will clutter the records hashmap and no one will be cleaning up
249 records.put(ref, rec);
253 records.put(new WeakReference(obj, queue) , rec);
/openjdk7/jdk/test/demo/jvmti/
H A DHeapUser.java40 String records; field in class:Pet
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbServiceLocator.java66 * to Kerberos realms is stored using DNS TXT records
75 // search realm in SRV TXT records
77 String[] records = null;
96 // gather the text records
114 records = trimmed;
116 records = txtRecords;
122 return records;
157 // create the service records
178 // Sort the service records in ascending order of their
179 // priority value. For records wit
[all...]
H A DConfig.java1291 String[] records = null;
1293 while ((records == null) && (newRealm != null)) {
1295 records = KrbServiceLocator.getKerberosService(newRealm);
1297 // if no DNS TXT records found, try again using sub-realm
1299 if (records != null) {
1300 for (int i = 0; i < records.length; i++) {
1301 if (records[i].equalsIgnoreCase(mapRealm)) {
1302 return records[i];
1332 // no DNS SRV records

Completed in 289 milliseconds