Searched defs:Format (Results 1 - 25 of 124) sorted by path

12345

/external/chromium-trace/catapult/telemetry/
H A Djson_format29 def Format(file_path): function
48 help='Format the JSON file.')
51 Format(options.file_path)
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/
H A Dchart_json_output_formatter.py105 def Format(self, page_test_results): member in class:ChartJsonOutputFormatter
H A Dcsv_pivot_table_output_formatter.py34 def Format(self, page_test_results): member in class:CsvPivotTableOutputFormatter
H A Dcsv_pivot_table_output_formatter_unittest.py59 def Format(self): member in class:CsvPivotTableOutputFormatterTest
60 self._formatter.Format(self._results)
74 self.assertEqual(expected, self.Format())
100 csv_string = self.Format()
121 output = self.Format().split(self._LINE_SEPARATOR)
H A Dhistogram_set_json_output_formatter.py17 def Format(self, page_test_results): member in class:HistogramSetJsonOutputFormatter
H A Dhtml_output_formatter.py50 def Format(self, page_test_results): member in class:HtmlOutputFormatter
H A Djson_output_formatter.py55 def Format(self, page_test_results): member in class:JsonOutputFormatter
H A Dlegacy_html_output_formatter.py157 def Format(self, page_test_results): member in class:LegacyHtmlOutputFormatter
H A Doutput_formatter.py27 def Format(self, page_test_results): member in class:OutputFormatter
/external/clang/include/clang/Frontend/
H A DCompilerInstance.h520 StringRef Format = getHeaderSearchOpts().ModuleFormat; local
521 auto *Writer = ThePCHContainerOperations->getWriterOrNull(Format);
524 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
534 StringRef Format = getHeaderSearchOpts().ModuleFormat; local
535 auto *Reader = ThePCHContainerOperations->getReaderOrNull(Format);
538 Diagnostics->Report(diag::err_module_format_unhandled) << Format;
H A DPCHContainerOperations.h105 const PCHContainerWriter *getWriterOrNull(StringRef Format) { argument
106 return Writers[Format].get();
108 const PCHContainerReader *getReaderOrNull(StringRef Format) { argument
109 return Readers[Format].get();
/external/clang/lib/Format/
H A DFormatToken.cpp1 //===--- FormatToken.cpp - Format C++ code --------------------------------===//
18 #include "clang/Format/Format.h"
95 const ColumnFormat *Format = getColumnFormat(RemainingCodePoints); local
99 if (!Format)
102 // Format the entire list.
113 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item];
119 if (Column == Format->Columns || State.NextToken->MustBreakBefore) {
236 ColumnFormat Format; local
237 Format
[all...]
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp980 StringRef Format = local
982 if (Format == "clang")
984 else if (Format == "msvc")
986 else if (Format == "msvc-fallback") {
989 } else if (Format == "vi")
996 << Format;
/external/clang/lib/Sema/
H A DSemaChecking.cpp39 #include "llvm/Support/Format.h"
1875 bool Sema::getFormatStringInfo(const FormatAttr *Format, bool IsCXXMember, argument
1877 FSI->HasVAListArg = Format->getFirstArg() == 0;
1878 FSI->FormatIdx = Format->getFormatIdx() - 1;
1879 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1;
1930 bool Sema::GetFormatNSStringIdx(const FormatAttr *Format, unsigned &Idx) { argument
1932 if ((GetFormatStringType(Format) == FST_NSString) &&
1933 getFormatStringInfo(Format, false, &FSI)) {
1947 bool Format = false; local
1951 Format
4011 GetFormatStringType(const FormatAttr *Format) argument
4027 CheckFormatArguments(const FormatAttr *Format, ArrayRef<const Expr *> Args, bool IsCXXMember, VariadicCallType CallType, SourceLocation Loc, SourceRange Range, llvm::SmallBitVector &CheckedVarArgs) argument
[all...]
H A DSemaDeclAttr.cpp2804 static FormatAttrKind getFormatAttrKind(StringRef Format) { argument
2805 return llvm::StringSwitch<FormatAttrKind>(Format)
2864 IdentifierInfo *Format, int FormatIdx,
2869 if (F->getType() == Format &&
2880 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
2899 StringRef Format = II->getName(); local
2901 if (normalizeName(Format)) {
2903 II = &S.Context.Idents.get(Format);
2907 FormatAttrKind Kind = getFormatAttrKind(Format);
2863 mergeFormatAttr(Decl *D, SourceRange Range, IdentifierInfo *Format, int FormatIdx, int FirstArg, unsigned AttrSpellingListIndex) argument
H A DSemaExpr.cpp3185 const llvm::fltSemantics &Format = S.Context.getFloatTypeSemantics(Ty); local
3188 APFloat Val(Format);
3200 APFloat::getLargest(Format).toString(buffer);
3203 APFloat::getSmallest(Format).toString(buffer);
H A DSemaExprObjC.cpp2271 bool Format = false; local
2275 Format = true;
2280 Format = true;
2285 if (!Format || NumArgs <= Idx)
/external/clang/tools/c-index-test/
H A Dc-index-test.c1298 static void PrintTypeAndTypeKind(CXType T, const char *Format) { argument
1303 printf(Format,
/external/compiler-rt/lib/scudo/
H A Dscudo_utils.cpp36 void dieWithMessage(const char *Format, ...) { argument
40 va_start(Args, Format);
41 __sanitizer::VSNPrintf(Message, sizeof(Message), Format, Args);
/external/deqp/executor/
H A DxeTestCaseResult.hpp245 enum Format enum in class:xe::ri::Image
268 Format format;
/external/deqp/framework/common/
H A DtcuFormatUtil.hpp34 namespace Format namespace in namespace:tcu
67 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex)
83 #define TCU_BIT_DESC(BIT) tcu::Format::BitDesc(BIT, #BIT)
241 } // Format
247 /** Format value as hexadecimal number. */
249 inline Format::Hex<NumDigits> toHex (T value)
251 return Format::Hex<NumDigits>(toUint64(value));
254 /** Format value as hexadecimal number. */
256 inline Format::Hex<sizeof(T)*2> toHex (T value)
258 return Format
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp299 enum Format enum in class:sglr::rc::Renderbuffer
/external/dng_sdk/source/
H A Ddng_date_time.cpp955 dng_date_time_format dng_date_time_storage_info::Format () const function in class:dng_date_time_storage_info
/external/dtc/Documentation/
H A Ddtc-paper.tex152 \subsection{Format of the device tree blob}
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-junit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 713 milliseconds

12345