#include "nscore.h"
Go to the source code of this file.
Data Structures | |
class | nsCharSetProber |
Defines | |
#define | SHORTCUT_THRESHOLD (float)0.95 |
Enumerations | |
enum | nsProbingState { eDetecting = 0, eFoundIt = 1, eNotMe = 2 } |
#define SHORTCUT_THRESHOLD (float)0.95 |
Definition at line 51 of file nsCharSetProber.h.
Referenced by nsUTF8Prober::HandleData(), nsSJISProber::HandleData(), nsGB18030Prober::HandleData(), nsEUCTWProber::HandleData(), nsEUCKRProber::HandleData(), nsEUCJPProber::HandleData(), and nsBig5Prober::HandleData().
enum nsProbingState |
Definition at line 45 of file nsCharSetProber.h.
00045 { 00046 eDetecting = 0, //We are still detecting, no sure answer yet, but caller can ask for confidence. 00047 eFoundIt = 1, //That's a positive answer 00048 eNotMe = 2 //Negative answer 00049 } nsProbingState;