コード例 #1
0
ファイル: nsTreeSelection.cpp プロジェクト: lofter2011/Icefox
 PRInt32 Count() {
   PRInt32 total = mMax - mMin + 1;
   if (mNext)
     total += mNext->Count();
   return total;
 }
コード例 #2
0
 int32_t Count() {
   int32_t total = mMax - mMin + 1;
   if (mNext)
     total += mNext->Count();
   return total;
 }