Searched refs:formatIndex (Results 1 - 16 of 16) sorted by relevance

/external/lzma/CPP/7zip/Archive/
H A DArchiveExports.cpp70 int formatIndex = FindFormatCalssId(clsid); local
71 if (formatIndex < 0)
74 const CArcInfo &arc = *g_Arcs[formatIndex];
92 STDAPI GetHandlerProperty2(UInt32 formatIndex, PROPID propID, PROPVARIANT *value) argument
96 if (formatIndex >= g_NumArcs)
98 const CArcInfo &arc = *g_Arcs[formatIndex];
144 STDAPI GetIsArc(UInt32 formatIndex, Func_IsArc *isArc) argument
147 if (formatIndex >= g_NumArcs)
149 *isArc = g_Arcs[formatIndex]->IsArc;
H A DIArchive.h585 typedef HRESULT (WINAPI *Func_GetIsArc)(UInt32 formatIndex, Func_IsArc *isArc);
/external/lzma/CPP/7zip/UI/Common/
H A DLoadCodecs.h307 const wchar_t *GetFormatNamePtr(int formatIndex) const
309 return formatIndex < 0 ? L"#" : (const wchar_t *)Formats[formatIndex].Name;
357 HRESULT CreateInArchive(unsigned formatIndex, CMyComPtr<IInArchive> &archive) const argument
359 const CArcInfoEx &ai = Formats[formatIndex];
376 HRESULT CreateOutArchive(unsigned formatIndex, CMyComPtr<IOutArchive> &archive) const argument
378 const CArcInfoEx &ai = Formats[formatIndex];
H A DOpenArchive.cpp46 - formatIndex >= 0 (exact Format)
50 - formatIndex = -1 (Parser:0) (default)
53 - formatIndex = -2 (#1)
77 - formatIndex = -3 (#2)
81 - formatIndex = -4 (#3)
84 - formatIndex = -5 (#4)
1270 HRESULT CArc::PrepareToOpen(const COpenOptions &op, unsigned formatIndex, CMyComPtr<IInArchive> &archive) argument
1273 // PrintNumber("formatIndex", formatIndex);
1275 RINOK(op.codecs->CreateInArchive(formatIndex, archiv
1616 int formatIndex = op.openType.FormatIndex; local
[all...]
H A DUpdate.cpp387 int formatIndex = MethodMode.Type.FormatIndex; local
388 if (formatIndex < 0)
394 const CArcInfoEx &arcInfo = codecs->Formats[formatIndex];
505 int formatIndex = options.MethodMode.Type.FormatIndex; local
509 formatIndex = arc->FormatIndex;
510 if (formatIndex < 0)
519 RINOK(codecs->CreateOutArchive(formatIndex, outArchive));
554 const CArcInfoEx &arcInfo = codecs->Formats[formatIndex];
H A DOpenArchive.h263 HRESULT PrepareToOpen(const COpenOptions &op, unsigned formatIndex, CMyComPtr<IInArchive> &archive);
/external/deqp/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupsBallotBroadcastTests.cpp654 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex)
656 const VkFormat format = formats[formatIndex];
H A DvktSubgroupsShuffleTests.cpp727 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex)
729 const VkFormat format = formats[formatIndex];
H A DvktSubgroupsArithmeticTests.cpp973 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex)
975 const VkFormat format = formats[formatIndex];
H A DvktSubgroupsClusteredTests.cpp845 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex)
847 const VkFormat format = formats[formatIndex];
H A DvktSubgroupsQuadTests.cpp716 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex)
718 const VkFormat format = formats[formatIndex];
H A DvktSubgroupsVoteTests.cpp797 for (int formatIndex = 0; formatIndex < DE_LENGTH_OF_ARRAY(formats); ++formatIndex)
799 const VkFormat format = formats[formatIndex];
/external/swiftshader/src/OpenGL/libEGL/
H A DDisplay.cpp186 for(unsigned int formatIndex = 0; formatIndex < sizeof(renderTargetFormats) / sizeof(sw::Format); formatIndex++)
188 sw::Format renderTargetFormat = renderTargetFormats[formatIndex];
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DMessageFormat.java2287 * Followed by an int with the number of (int formatIndex, Object formatter) pairs,
2309 int formatIndex = 0;
2312 out.writeInt(formatIndex);
2315 ++formatIndex;
2341 int formatIndex = in.readInt();
2343 setFormat(formatIndex, formatter);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DMessageFormat.java2331 * Followed by an int with the number of (int formatIndex, Object formatter) pairs,
2353 int formatIndex = 0;
2356 out.writeInt(formatIndex);
2359 ++formatIndex;
2385 int formatIndex = in.readInt();
2387 setFormat(formatIndex, formatter);
/external/v8/tools/profviz/
H A Dgnuplot-4.6.3-emscripten.js2984 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]
[all...]

Completed in 681 milliseconds