HomeSort by relevance Sort by last modified time
    Searched refs:Style (Results 126 - 150 of 931) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/MC/
MCInstPrinter.h 32 enum Style {
57 /// Which style to use for printing hexadecimal values.
58 HexStyle::Style PrintHexStyle = HexStyle::C;
93 HexStyle::Style getPrintHexStyle() const { return PrintHexStyle; }
94 void setPrintHexStyle(HexStyle::Style Value) { PrintHexStyle = Value; }
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/
MCInstPrinter.h 32 enum Style {
57 /// Which style to use for printing hexadecimal values.
58 HexStyle::Style PrintHexStyle = HexStyle::C;
93 HexStyle::Style getPrintHexStyle() const { return PrintHexStyle; }
94 void setPrintHexStyle(HexStyle::Style Value) { PrintHexStyle = Value; }
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/
MCInstPrinter.h 32 enum Style {
57 /// Which style to use for printing hexadecimal values.
58 HexStyle::Style PrintHexStyle = HexStyle::C;
93 HexStyle::Style getPrintHexStyle() const { return PrintHexStyle; }
94 void setPrintHexStyle(HexStyle::Style Value) { PrintHexStyle = Value; }
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
Formatters.h 35 void format(raw_ostream &Stream, StringRef Style) override;
53 StringRef Style) {
66 StringRef Style) {
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
Formatters.h 35 void format(raw_ostream &Stream, StringRef Style) override;
53 StringRef Style) {
66 StringRef Style) {
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
Formatters.h 35 void format(raw_ostream &Stream, StringRef Style) override;
53 StringRef Style) {
66 StringRef Style) {
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
Formatters.h 35 void format(raw_ostream &Stream, StringRef Style) override;
53 StringRef Style) {
66 StringRef Style) {
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
Formatters.h 35 void format(raw_ostream &Stream, StringRef Style) override;
53 StringRef Style) {
66 StringRef Style) {
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
Formatters.h 35 void format(raw_ostream &Stream, StringRef Style) override;
53 StringRef Style) {
66 StringRef Style) {
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
Formatters.h 35 void format(raw_ostream &Stream, StringRef Style) override;
53 StringRef Style) {
66 StringRef Style) {
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
Formatters.h 35 void format(raw_ostream &Stream, StringRef Style) override;
53 StringRef Style) {
66 StringRef Style) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RelativeDateTimeFormatter.java 77 * The formatting style
80 public static enum Style {
346 return getInstance(ULocale.getDefault(), null, Style.LONG, DisplayContext.CAPITALIZATION_NONE);
356 return getInstance(locale, null, Style.LONG, DisplayContext.CAPITALIZATION_NONE);
379 return getInstance(locale, nf, Style.LONG, DisplayContext.CAPITALIZATION_NONE);
384 * NumberFormat object, style, and capitalization context
389 * @param style the style.
395 Style style,
768 private final Style style; field in class:RelativeDateTimeFormatter
925 Style style; \/\/ {LONG, SHORT, NARROW} Derived from unit key string. field in class:RelativeDateTimeFormatter.RelDateTimeDataSink
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RelativeDateTimeFormatter.java 78 * The formatting style
82 public static enum Style {
396 return getInstance(ULocale.getDefault(), null, Style.LONG, DisplayContext.CAPITALIZATION_NONE);
407 return getInstance(locale, null, Style.LONG, DisplayContext.CAPITALIZATION_NONE);
432 return getInstance(locale, nf, Style.LONG, DisplayContext.CAPITALIZATION_NONE);
437 * NumberFormat object, style, and capitalization context
442 * @param style the style.
449 Style style,
831 private final Style style; field in class:RelativeDateTimeFormatter
988 Style style; \/\/ {LONG, SHORT, NARROW} Derived from unit key string. field in class:RelativeDateTimeFormatter.RelDateTimeDataSink
    [all...]
  /external/clang/lib/Format/
TokenAnalyzer.cpp 77 TokenAnalyzer::TokenAnalyzer(const Environment &Env, const FormatStyle &Style)
78 : Style(Style), Env(Env),
87 DEBUG(llvm::dbgs() << "Language: " << getLanguageName(Style.Language)
93 FormatTokenLexer Tokens(Env.getSourceManager(), Env.getFileID(), Style,
96 UnwrappedLineParser Parser(Style, Tokens.getKeywords(), Tokens.lex(), *this);
103 TokenAnnotator Annotator(Style, Tokens.getKeywords());
UnwrappedLineParser.cpp 155 const FormatStyle &Style, unsigned &LineLevel)
157 if (Style.BraceWrapping.AfterControlStatement)
159 if (Style.BraceWrapping.IndentBraces)
200 UnwrappedLineParser::UnwrappedLineParser(const FormatStyle &Style,
205 CurrentLines(&Lines), Style(Style), Keywords(Keywords), Tokens(nullptr),
258 !Line->InPPDirective && Style.Language != FormatStyle::LK_JavaScript;
299 (Style.IndentCaseLabels || (Line->InPPDirective && Line->Level == 1)))
335 if (Style.Language == FormatStyle::LK_JavaScript && PrevTok &&
349 if (Style.Language == FormatStyle::LK_Proto)
    [all...]
FormatTokenLexer.cpp 27 const FormatStyle &Style,
31 SourceMgr(SourceMgr), ID(ID), Style(Style),
32 IdentTable(getFormattingLangOpts(Style)), Keywords(IdentTable),
34 MacroBlockBeginRegex(Style.MacroBlockBegin),
35 MacroBlockEndRegex(Style.MacroBlockEnd) {
37 getFormattingLangOpts(Style)));
40 for (const std::string &ForEachMacro : Style.ForEachMacros)
50 if (Style.Language == FormatStyle::LK_JavaScript) {
69 if (Style.Language == FormatStyle::LK_JavaScript)
    [all...]
WhitespaceManager.cpp 199 static void AlignTokens(const FormatStyle &Style, F &&Matches,
291 unsigned ChangeMaxColumn = Style.ColumnLimit - LineLengthAfter;
309 if (!Style.AlignConsecutiveAssignments)
312 AlignTokens(Style,
328 if (!Style.AlignConsecutiveDeclarations)
338 AlignTokens(Style, [](Change const &C) { return C.IsStartOfDeclName; },
356 unsigned ChangeMaxColumn = Style.ColumnLimit - Changes[i].TokenLength;
387 CommentColumn == NextColumn + Style.IndentWidth;
391 if (!Style.AlignTrailingComments || FollowsRBraceInColumn0) {
443 Style.AlignEscapedNewlinesLeft ? 0 : Style.ColumnLimit
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieMapTest.java 29 import android.icu.dev.test.util.TrieMap.Style;
134 checkGet(unicodeTestMap, TrieMap.Style.BYTES);
135 checkGet(unicodeTestMap, TrieMap.Style.CHARS);
138 private void checkGet(Map<String, Integer> testmap, TrieMap.Style style) {
142 TrieMap<Integer> trieMap = TrieMap.Builder.with(style, Option.SMALL, testmap).build();
151 assertEquals(style + "\tGet of '" + key + "' = {" + Utility.hex(key) + "}", value, foundValue);
162 timeIteration(unicodeTestMap, comparisonTime, Style.BYTES, 5);
163 timeIteration(unicodeTestMap, comparisonTime, Style.CHARS, 3);
167 public long timeIteration(Map<String, Integer> testMap, long comparisonTime, Style style, double ratioToMap)
484 Style style; field in class:TrieMapTest.MyLoop
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TrieMapTest.java 28 import com.ibm.icu.dev.test.util.TrieMap.Style;
131 checkGet(unicodeTestMap, TrieMap.Style.BYTES);
132 checkGet(unicodeTestMap, TrieMap.Style.CHARS);
135 private void checkGet(Map<String, Integer> testmap, TrieMap.Style style) {
139 TrieMap<Integer> trieMap = TrieMap.Builder.with(style, Option.SMALL, testmap).build();
148 assertEquals(style + "\tGet of '" + key + "' = {" + Utility.hex(key) + "}", value, foundValue);
159 timeIteration(unicodeTestMap, comparisonTime, Style.BYTES, 5);
160 timeIteration(unicodeTestMap, comparisonTime, Style.CHARS, 3);
164 public long timeIteration(Map<String, Integer> testMap, long comparisonTime, Style style, double ratioToMap)
481 Style style; field in class:TrieMapTest.MyLoop
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
TimeZoneFormatTest.java 42 import android.icu.text.TimeZoneFormat.Style;
564 // text inpos locale style
566 {"Z", 0, "en_US", Style.ISO_EXTENDED_FULL,
569 {"Z", 0, "en_US", Style.SPECIFIC_LONG,
572 {"Zambia time", 0, "en_US", Style.ISO_EXTENDED_FULL,
575 {"Zambia time", 0, "en_US", Style.GENERIC_LOCATION,
578 {"Zambia time", 0, "en_US", Style.ISO_BASIC_LOCAL_FULL,
581 {"+00:00", 0, "en_US", Style.ISO_EXTENDED_FULL,
584 {"-01:30:45", 0, "en_US", Style.ISO_EXTENDED_FULL,
587 {"-7", 0, "en_US", Style.ISO_BASIC_LOCAL_FULL
658 Style style = (Style)test[3]; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
TimeZoneFormatTest.java 41 import com.ibm.icu.text.TimeZoneFormat.Style;
561 // text inpos locale style
563 {"Z", 0, "en_US", Style.ISO_EXTENDED_FULL,
566 {"Z", 0, "en_US", Style.SPECIFIC_LONG,
569 {"Zambia time", 0, "en_US", Style.ISO_EXTENDED_FULL,
572 {"Zambia time", 0, "en_US", Style.GENERIC_LOCATION,
575 {"Zambia time", 0, "en_US", Style.ISO_BASIC_LOCAL_FULL,
578 {"+00:00", 0, "en_US", Style.ISO_EXTENDED_FULL,
581 {"-01:30:45", 0, "en_US", Style.ISO_EXTENDED_FULL,
584 {"-7", 0, "en_US", Style.ISO_BASIC_LOCAL_FULL
655 Style style = (Style)test[3]; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86Subtarget.h 33 enum Style {
52 /// PICStyle - Which PIC style to use
54 PICStyles::Style PICStyle;
168 PICStyles::Style getPICStyle() const { return PICStyle; }
169 void setPICStyle(PICStyles::Style Style) { PICStyle = Style; }
  /external/clang/unittests/Format/
SortImportsTestJS.cpp 29 applyAllReplacements(Code, sortIncludes(Style, Code, Ranges, FileName));
32 *Sorted, reformat(Style, *Sorted, Ranges, FileName));
45 FormatStyle Style = getGoogleStyle(FormatStyle::LK_JavaScript);
  /frameworks/base/media/java/android/media/
Rating2.java 33 * A rating is defined by its rating style (see {@link #RATING_HEART},
48 public @interface Style {}
58 * Indicates a rating style is not supported. A Rating2 will never have this
65 * A rating style with a single degree of rating, "heart" vs "no heart". Can be used to
71 * A rating style for "thumb up" vs "thumb down".
76 * A rating style with 0 to 3 stars.
81 * A rating style with 0 to 4 stars.
86 * A rating style with 0 to 5 stars.
91 * A rating style expressed as a percentage.
147 * rating style
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYRegionFormatter.java 32 paint.setStyle(Paint.Style.FILL);
53 //paint.setStyle(Paint.Style.FILL);

Completed in 2211 milliseconds

1 2 3 4 56 7 8 91011>>