• Home
  • Raw
  • Download

Lines Matching refs:currIndex

318         Index currIndex = null; // The entry which is emitted  in emitIndexEntries()  local
322 if (currIndex == null) { in emitIndexEntries()
323 currIndex = nextIndex; // Prime the pump in emitIndexEntries()
325 if (nextIndex.name_.compareTo(currIndex.name_) == 0) { in emitIndexEntries()
332 oldsw = emitIndexEntry(currIndex, oldsw, multipleMarker); in emitIndexEntries()
336 oldsw = emitIndexEntry(currIndex, oldsw, multipleMarker); in emitIndexEntries()
339 currIndex = nextIndex; in emitIndexEntries()
345 if (currIndex != null) in emitIndexEntries()
346 oldsw = emitIndexEntry(currIndex, oldsw, multipleMarker); in emitIndexEntries()
377 Index currIndex = (Index)(iter.next()); in emitMissingSinces() local
379 if (currIndex.changeType_ != 1) in emitMissingSinces()
381 String programElementType = currIndex.ename_; in emitMissingSinces()
384 details = currIndex.pkgName_ + "." + currIndex.name_; in emitMissingSinces()
385 if (currIndex.isInterface_) in emitMissingSinces()
390 … details = currIndex.pkgName_ + "." + currIndex.name_ + " Constructor (" + currIndex.type_ + ")"; in emitMissingSinces()
392 …details = currIndex.pkgName_ + "." + currIndex.className_ + " " + "Method " + currIndex.name_ + "(… in emitMissingSinces()
394 … details = currIndex.pkgName_ + "." + currIndex.className_ + " " + "Field " + currIndex.name_; in emitMissingSinces()
399 if (currIndex.doc_ == null) { in emitMissingSinces()
404 } else if (currIndex.doc_.indexOf("@since") != -1) { in emitMissingSinces()
422 public char emitIndexEntry(Index currIndex, char oldsw, int multipleMarker) { in emitIndexEntry() argument
423 String programElementType = currIndex.ename_; in emitIndexEntry()
425 return emitClassIndexEntry(currIndex, oldsw, multipleMarker); in emitIndexEntry()
427 return emitCtorIndexEntry(currIndex, oldsw, multipleMarker); in emitIndexEntry()
429 return emitMethodIndexEntry(currIndex, oldsw, multipleMarker); in emitIndexEntry()
431 return emitFieldIndexEntry(currIndex, oldsw, multipleMarker); in emitIndexEntry()
888 Index currIndex = null; // The entry which is emitted in emitAllDiffsIndex() local
892 if (currIndex == null) { in emitAllDiffsIndex()
893 currIndex = nextIndex; // Prime the pump in emitAllDiffsIndex()
895 if (nextIndex.name_.compareTo(currIndex.name_) == 0) { in emitAllDiffsIndex()
902 oldsw = emitIndexEntryForAny(currIndex, oldsw, multipleMarker); in emitAllDiffsIndex()
906 oldsw = emitIndexEntryForAny(currIndex, oldsw, multipleMarker); in emitAllDiffsIndex()
909 currIndex = nextIndex; in emitAllDiffsIndex()
915 if (currIndex != null) in emitAllDiffsIndex()
916 oldsw = emitIndexEntryForAny(currIndex, oldsw, multipleMarker); in emitAllDiffsIndex()
924 public char emitIndexEntryForAny(Index currIndex, char oldsw, in emitIndexEntryForAny() argument
926 if (currIndex.ename_.compareTo("package") == 0) { in emitIndexEntryForAny()
927 h_.writeText("<!-- Package " + currIndex.name_ + " -->"); in emitIndexEntryForAny()
928 return emitPackageIndexEntry(currIndex, oldsw); in emitIndexEntryForAny()
929 } else if (currIndex.ename_.compareTo("class") == 0) { in emitIndexEntryForAny()
930 h_.writeText("<!-- Class " + currIndex.name_ + " -->"); in emitIndexEntryForAny()
931 return emitClassIndexEntry(currIndex, oldsw, multipleMarker); in emitIndexEntryForAny()
932 } else if (currIndex.ename_.compareTo("constructor") == 0) { in emitIndexEntryForAny()
933 h_.writeText("<!-- Constructor " + currIndex.name_ + " -->"); in emitIndexEntryForAny()
934 return emitCtorIndexEntry(currIndex, oldsw, multipleMarker); in emitIndexEntryForAny()
935 } else if (currIndex.ename_.compareTo("method") == 0) { in emitIndexEntryForAny()
936 h_.writeText("<!-- Method " + currIndex.name_ + " -->"); in emitIndexEntryForAny()
937 return emitMethodIndexEntry(currIndex, oldsw, multipleMarker); in emitIndexEntryForAny()
938 } else if (currIndex.ename_.compareTo("field") == 0) { in emitIndexEntryForAny()
939 h_.writeText("<!-- Field " + currIndex.name_ + " -->"); in emitIndexEntryForAny()
940 return emitFieldIndexEntry(currIndex, oldsw, multipleMarker); in emitIndexEntryForAny()