Searched refs:formatIndex (Results 1 – 11 of 11) sorted by relevance
/external/lzma/CPP/7zip/Archive/ |
D | ArchiveExports.cpp | 68 int formatIndex = FindFormatCalssId(clsid); in CreateArchiver() 69 if (formatIndex < 0) in CreateArchiver() 72 const CArcInfo &arc = *g_Arcs[formatIndex]; in CreateArchiver() 90 STDAPI GetHandlerProperty2(UInt32 formatIndex, PROPID propID, PROPVARIANT *value) in GetHandlerProperty2() argument 94 if (formatIndex >= g_NumArcs) in GetHandlerProperty2() 96 const CArcInfo &arc = *g_Arcs[formatIndex]; in GetHandlerProperty2() 142 STDAPI GetIsArc(UInt32 formatIndex, Func_IsArc *isArc) in GetIsArc() argument 145 if (formatIndex >= g_NumArcs) in GetIsArc() 147 *isArc = g_Arcs[formatIndex]->IsArc; in GetIsArc()
|
D | IArchive.h | 463 typedef HRESULT (WINAPI *Func_GetIsArc)(UInt32 formatIndex, Func_IsArc *isArc);
|
/external/lzma/CPP/7zip/UI/Common/ |
D | LoadCodecs.h | 204 const wchar_t *GetFormatNamePtr(int formatIndex) in GetFormatNamePtr() argument 206 return formatIndex < 0 ? L"#" : (const wchar_t *)Formats[formatIndex].Name; in GetFormatNamePtr() 251 HRESULT CreateInArchive(unsigned formatIndex, CMyComPtr<IInArchive> &archive) const in CreateInArchive() argument 253 const CArcInfoEx &ai = Formats[formatIndex]; in CreateInArchive() 270 HRESULT CreateOutArchive(unsigned formatIndex, CMyComPtr<IOutArchive> &archive) const in CreateOutArchive() argument 272 const CArcInfoEx &ai = Formats[formatIndex]; in CreateOutArchive()
|
D | OpenArchive.cpp | 1040 HRESULT CArc::PrepareToOpen(const COpenOptions &op, unsigned formatIndex, CMyComPtr<IInArchive> &ar… in PrepareToOpen() argument 1045 RINOK(op.codecs->CreateInArchive(formatIndex, archive)); in PrepareToOpen() 1065 const CArcInfoEx &ai = op.codecs->Formats[formatIndex]; in PrepareToOpen() 1374 int formatIndex = op.openType.FormatIndex; in OpenStream2() local 1376 if (formatIndex >= 0) in OpenStream2() 1379 orderIndices.Add(formatIndex); in OpenStream2() 1381 isMainFormatArr[formatIndex] = true; in OpenStream2() 1554 if (formatIndex >= 0) in OpenStream2() 1685 if (formatIndex < 0) in OpenStream2() 1718 if (formatIndex >= 0 && !mode.CanReturnParser) in OpenStream2() [all …]
|
D | Update.cpp | 364 int formatIndex = MethodMode.Type.FormatIndex; in SetArcPath() local 365 if (formatIndex < 0) in SetArcPath() 371 const CArcInfoEx &arcInfo = codecs->Formats[formatIndex]; in SetArcPath() 487 int formatIndex = options.MethodMode.Type.FormatIndex; in Compress() local 490 formatIndex = arc->FormatIndex; in Compress() 491 if (formatIndex < 0) in Compress() 500 RINOK(codecs->CreateOutArchive(formatIndex, outArchive)); in Compress() 532 const CArcInfoEx &arcInfo = codecs->Formats[formatIndex]; in Compress()
|
D | OpenArchive.h | 217 …HRESULT PrepareToOpen(const COpenOptions &op, unsigned formatIndex, CMyComPtr<IInArchive> &archive…
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | MessageFormat.java | 2346 int formatIndex = 0; in writeObject() local 2349 out.writeInt(formatIndex); in writeObject() 2352 ++formatIndex; in writeObject() 2378 int formatIndex = in.readInt(); in readObject() local 2380 setFormat(formatIndex, formatter); in readObject()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | MessageFormat.java | 2302 int formatIndex = 0; in writeObject() local 2305 out.writeInt(formatIndex); in writeObject() 2308 ++formatIndex; in writeObject() 2334 int formatIndex = in.readInt(); in readObject() local 2336 setFormat(formatIndex, formatter); in readObject()
|
/external/v8/test/mjsunit/asm/embenchen/ |
D | lua_binarytrees.js | 5504 var formatIndex = 0; 5511 for (var formatIndex = 0; formatIndex < format.length;) { 5512 if (format[formatIndex] === '%' && format[formatIndex+1] == 'n') { 5516 formatIndex += 2; 5520 if (format[formatIndex] === '%') { 5521 var nextC = format.indexOf('c', formatIndex+1); 5524 if (nextC > formatIndex+1) { 5525 var sub = format.substring(formatIndex+1, nextC); 5538 formatIndex += nextC - formatIndex + 1; 5545 if (format[formatIndex] === '%' && format.indexOf('[', formatIndex+1) > 0) { [all …]
|
/external/v8/test/mjsunit/asm/poppler/ |
D | poppler.js | 6455 var formatIndex = 0; 6462 for (var formatIndex = 0; formatIndex < format.length;) { 6463 if (format[formatIndex] === '%' && format[formatIndex+1] == 'n') { 6467 formatIndex += 2; 6471 if (format[formatIndex] === '%') { 6472 var nextC = format.indexOf('c', formatIndex+1); 6475 if (nextC > formatIndex+1) { 6476 var sub = format.substring(formatIndex+1, nextC); 6488 formatIndex += nextC - formatIndex + 1; 6495 if (format[formatIndex] === '%' && format.indexOf('[', formatIndex+1) > 0) { [all …]
|
/external/v8/tools/profviz/ |
D | gnuplot-4.6.3-emscripten.js | 2984 var formatIndex = 0; 2990 for (var formatIndex = 0; formatIndex < format.length;) { 2991 if (format[formatIndex] === '%' && format[formatIndex+1] == 'n') { 2995 formatIndex += 2; 2999 if (format[formatIndex] === '%' && format[formatIndex+1] == 'c') { 3005 formatIndex += 2; 3015 if (format[formatIndex] === '%') { 3016 formatIndex++; 3018 if (format[formatIndex] == '*') { 3020 formatIndex++; [all …]
|