/external/lzma/CPP/7zip/Archive/7z/ |
7zRegister.cpp | 8 static IInArchive *CreateArc() { return new NArchive::N7z::CHandler; }
16 { L"7z", L"7z", 0, 7, {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}, 6, false, CreateArc, CreateArcOut };
|
/external/srec/tools/grxmlcompile/ |
sub_phon.cpp | 60 arcOne= CreateArc (NONE_LABEL, NONE_LABEL, arc[ii]->GetFromId(), newId); 64 arcOne= CreateArc (-wordId, wordId, newId, nextId); 66 // (void) CreateArc (-wordId, NONE_LABEL, arc[ii]->GetFromId(), newId); 67 arcOne= CreateArc (WB_LABEL, NONE_LABEL, nextId, arc[ii]->GetToId()); 69 // (void) CreateArc (WB_LABEL, wordId, newId, arc[ii]->GetToId()); 83 arcOne= CreateArc (phoneId, NONE_LABEL, currId, newId); 90 arcOne= CreateArc (WB_LABEL, wordId, currId, arc[ii]->GetToId()); 185 arcOne= CreateArc (modelSequence[jj], NONE_LABEL, currId, newId); 250 arcOne= CreateArc (modelSequence[jj], 293 arcOne= CreateArc (followSequence[jj] [all...] |
sub_grph.cpp | 144 (void) CreateArc (begLabel, begOutLabel, lastId, beginScopeId); 146 (void) CreateArc (endLabel, endOutLabel, endScopeId, lastId); 149 (void) CreateArc (begLabel, begOutLabel, startId, beginScopeId); 150 (void) CreateArc (endLabel, endOutLabel, endScopeId, endId); 153 (void) CreateArc (begLabel, begOutLabel, lastId, beginScopeId); 155 (void) CreateArc (endLabel, ruleId, endScopeId, lastId); 158 (void) CreateArc (begLabel, begOutLabel, lastId, beginScopeId); 160 (void) CreateArc (endLabel, endOutLabel, endScopeId, lastId); 180 (void) CreateArc (NONE_LABEL, NONE_LABEL, startId, lastId); // start to end 192 (void) CreateArc (NONE_LABEL, NONE_LABEL, lastId + (ii - 1) * blockCount, finalId) [all...] |
sub_base.cpp | 71 NUANArc *SubGraph::CreateArc (int iLabel, int oLabel, int from, int to)
|
sub_grph.h | 209 NUANArc *CreateArc (int iLabel, int oLabel, int from, int to);
|
/external/lzma/CPP/7zip/Archive/ |
LzmaHandler.cpp | 411 static IInArchive *CreateArc() { return new CHandler(false); }
417 { L"lzma", L"lzma", 0, 0xA, { 0 }, 0, true, CreateArc, NULL };
|
SplitHandler.cpp | 359 static IInArchive *CreateArc() { return new CHandler; }
362 { L"Split", L"001", 0, 0xEA, { 0 }, 0, false, CreateArc, 0 };
|
XzHandler.cpp | 695 static IInArchive *CreateArc() { return new NArchive::NXz::CHandler; }
703 { L"xz", L"xz txz", L"* .tar", 0xC, {0xFD, '7' , 'z', 'X', 'Z', '\0'}, 6, true, CreateArc, CreateArcOut };
|