LCOV - code coverage report
Current view: top level - extensions/universalchardet/src/base - nsEUCJPProber.h (source / functions) Hit Total Coverage
Test: output.info Lines: 0 6 0.0 %
Date: 2017-07-14 16:53:18 Functions: 0 5 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
       2             : /* This Source Code Form is subject to the terms of the Mozilla Public
       3             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       4             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
       5             : 
       6             : // for S-JIS encoding, obeserve characteristic:
       7             : // 1, kana character (or hankaku?) often have hight frequency of appereance
       8             : // 2, kana character often exist in group
       9             : // 3, certain combination of kana is never used in japanese language
      10             : 
      11             : #ifndef nsEUCJPProber_h__
      12             : #define nsEUCJPProber_h__
      13             : 
      14             : #include "nsCharSetProber.h"
      15             : #include "nsCodingStateMachine.h"
      16             : #include "JpCntx.h"
      17             : #include "CharDistribution.h"
      18             : 
      19             : class nsEUCJPProber: public nsCharSetProber {
      20             : public:
      21           0 :   nsEUCJPProber()
      22           0 :   {mCodingSM = new nsCodingStateMachine(&EUCJPSMModel);
      23           0 :     Reset();}
      24           0 :   virtual ~nsEUCJPProber(void){delete mCodingSM;}
      25             :   nsProbingState HandleData(const char* aBuf, uint32_t aLen);
      26           0 :   const char* GetCharSetName() {return "EUC-JP";}
      27           0 :   nsProbingState GetState(void) {return mState;}
      28             :   void      Reset(void);
      29             :   float     GetConfidence(void);
      30             : 
      31             : protected:
      32             :   nsCodingStateMachine* mCodingSM;
      33             :   nsProbingState mState;
      34             : 
      35             :   EUCJPContextAnalysis mContextAnalyser;
      36             :   EUCJPDistributionAnalysis mDistributionAnalyser;
      37             : 
      38             :   char mLastChar[2];
      39             : };
      40             : 
      41             : 
      42             : #endif /* nsEUCJPProber_h__ */
      43             : 

Generated by: LCOV version 1.13