HomeSort by relevance Sort by last modified time
    Searched defs:Style (Results 1 - 25 of 267) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/clang/tools/clang-format/fuzzer/
ClangFormatFuzzer.cpp 19 // FIXME: fuzz more things: different styles, different style features.
21 auto Style = getGoogleStyle(clang::format::FormatStyle::LK_Cpp);
22 Style.ColumnLimit = 60;
24 Style, s, {clang::tooling::Range(0, s.size())}));
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
Style.java 3 public interface Style {
  /external/clang/lib/Format/
UnwrappedLineFormatter.h 35 const FormatStyle &Style,
38 : Indenter(Indenter), Whitespaces(Whitespaces), Style(Style),
66 const FormatStyle &Style;
  /external/clang/unittests/Format/
FormatTestJava.cpp 23 unsigned Length, const FormatStyle &Style) {
27 tooling::Replacements Replaces = reformat(Style, Code, Ranges);
36 const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_Java)) {
37 return format(Code, 0, Code.size(), Style);
41 FormatStyle Style = getGoogleStyle(FormatStyle::LK_Java);
42 Style.ColumnLimit = ColumnLimit;
43 return Style;
48 const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_Java)) {
49 EXPECT_EQ(Code.str(), format(test::messUp(Code), Style));
62 FormatStyle Style = getStyleWithColumns(50)
    [all...]
FormatTestProto.cpp 23 unsigned Length, const FormatStyle &Style) {
27 tooling::Replacements Replaces = reformat(Style, Code, Ranges);
35 FormatStyle Style = getGoogleStyle(FormatStyle::LK_Proto);
36 Style.ColumnLimit = 60; // To make writing tests easier.
37 return format(Code, 0, Code.size(), Style);
FormatTestSelective.cpp 29 reformat(Style, Code, Ranges, "<stdin>", &IncompleteFormat);
37 FormatStyle Style = getLLVMStyle();
57 Style.ColumnLimit = 12;
102 Style.AllowShortIfStatementsOnASingleLine = true;
322 Style.AlignEscapedNewlinesLeft = true;
451 Style.ColumnLimit = 11;
462 Style.IndentWidth = 8;
463 Style.UseTab = FormatStyle::UT_Always;
464 Style.AlignEscapedNewlinesLeft = true;
516 Style = getGoogleStyle(FormatStyle::LK_JavaScript)
    [all...]
FormatTestJS.cpp 23 unsigned Length, const FormatStyle &Style) {
29 reformat(Style, Code, Ranges, "<stdin>", &IncompleteFormat);
39 const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_JavaScript)) {
40 return format(Code, 0, Code.size(), Style);
44 FormatStyle Style = getGoogleStyle(FormatStyle::LK_JavaScript);
45 Style.ColumnLimit = ColumnLimit;
46 return Style;
51 const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_JavaScript)) {
52 std::string Result = format(test::messUp(Code), Style);
59 const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_JavaScript))
    [all...]
SortImportsTestJS.cpp 29 applyAllReplacements(Code, sortIncludes(Style, Code, Ranges, FileName));
32 *Sorted, reformat(Style, *Sorted, Ranges, FileName));
45 FormatStyle Style = getGoogleStyle(FormatStyle::LK_JavaScript);
SortIncludesTest.cpp 30 applyAllReplacements(Code, sortIncludes(Style, Code, Ranges, FileName));
33 *Sorted, reformat(Style, *Sorted, Ranges, FileName));
39 sortIncludes(Style, Code, GetCodeRange(Code), "input.cpp", &Cursor);
43 FormatStyle Style = getLLVMStyle();
64 EXPECT_TRUE(sortIncludes(Style, Code, GetCodeRange(Code), "a.cc").empty());
87 Style.SortIncludes = false;
159 Style = getGoogleStyle(FormatStyle::LK_Cpp);
181 Style.IncludeIsMainRegex = "([-_](test|unittest))?$";
257 Style.IncludeCategories = {{".*important_os_header.*", -1}, {".*", 1}};
  /frameworks/base/graphics/java/android/graphics/
PathDashPathEffect.java 21 public enum Style {
26 Style(int value) {
34 * applies to drawings when the paint's style is STROKE or STROKE_AND_FILL.
35 * If the paint's style is FILL, then this effect is ignored. The paint's
40 * @param style how to transform the shape at each position as it is stamped
43 Style style) {
45 style.native_style);
  /system/tools/hidl/
CompoundType.h 29 enum Style {
34 CompoundType(Style style, const char* localName, const FQName& fullName,
37 Style style() const;
143 Style mStyle;
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
BarFormatter.java 45 fillPaint.setStyle(Paint.Style.FILL);
48 borderPaint.setStyle(Paint.Style.STROKE);
XYRegionFormatter.java 32 paint.setStyle(Paint.Style.FILL);
53 //paint.setStyle(Paint.Style.FILL);
  /external/icu/icu4c/source/i18n/unicode/
scientificnumberformatter.h 145 class U_I18N_API Style : public UObject {
147 virtual Style *clone() const = 0;
160 class U_I18N_API SuperscriptStyle : public Style {
162 virtual Style *clone() const;
173 class U_I18N_API MarkupStyle : public Style {
178 : Style(),
181 virtual Style *clone() const;
197 Style *styleToAdopt,
208 Style *styleToAdopt,
213 Style *fStyle
    [all...]
  /external/skia/include/effects/
Sk1DPathEffect.h 4 * Use of this source code is governed by a BSD-style license that can be
44 enum Style {
56 @param style how to transform path at each point (based on the current
59 static sk_sp<SkPathEffect> Make(const SkPath& path, SkScalar advance, SkScalar phase, Style);
68 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style);
79 Style fStyle; // copied from constructor
  /external/skqp/include/effects/
Sk1DPathEffect.h 4 * Use of this source code is governed by a BSD-style license that can be
44 enum Style {
56 @param style how to transform path at each point (based on the current
59 static sk_sp<SkPathEffect> Make(const SkPath& path, SkScalar advance, SkScalar phase, Style);
68 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style);
79 Style fStyle; // copied from constructor
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Path.h 27 enum class Style { windows, posix, native };
56 Style S; ///< The path style to use.
59 friend const_iterator begin(StringRef path, Style style);
83 Style S; ///< The path style to use.
85 friend reverse_iterator rbegin(StringRef path, Style style);
102 const_iterator begin(StringRef path, Style style = Style::native)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
Path.h 27 enum class Style { windows, posix, native };
56 Style S; ///< The path style to use.
59 friend const_iterator begin(StringRef path, Style style);
83 Style S; ///< The path style to use.
85 friend reverse_iterator rbegin(StringRef path, Style style);
102 const_iterator begin(StringRef path, Style style = Style::native)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
Path.h 27 enum class Style { windows, posix, native };
56 Style S; ///< The path style to use.
59 friend const_iterator begin(StringRef path, Style style);
83 Style S; ///< The path style to use.
85 friend reverse_iterator rbegin(StringRef path, Style style);
102 const_iterator begin(StringRef path, Style style = Style::native)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
Path.h 28 enum class Style { windows, posix, native };
58 Style S; ///< The path style to use.
61 friend const_iterator begin(StringRef path, Style style);
84 Style S; ///< The path style to use.
86 friend reverse_iterator rbegin(StringRef path, Style style);
101 const_iterator begin(StringRef path, Style style = Style::native)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
Path.h 28 enum class Style { windows, posix, native };
58 Style S; ///< The path style to use.
61 friend const_iterator begin(StringRef path, Style style);
84 Style S; ///< The path style to use.
86 friend reverse_iterator rbegin(StringRef path, Style style);
101 const_iterator begin(StringRef path, Style style = Style::native)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
Path.h 28 enum class Style { windows, posix, native };
58 Style S; ///< The path style to use.
61 friend const_iterator begin(StringRef path, Style style);
84 Style S; ///< The path style to use.
86 friend reverse_iterator rbegin(StringRef path, Style style);
101 const_iterator begin(StringRef path, Style style = Style::native)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
Path.h 28 enum class Style { windows, posix, native };
58 Style S; ///< The path style to use.
61 friend const_iterator begin(StringRef path, Style style);
84 Style S; ///< The path style to use.
86 friend reverse_iterator rbegin(StringRef path, Style style);
101 const_iterator begin(StringRef path, Style style = Style::native)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Path.h 27 enum class Style { windows, posix, native };
56 Style S; ///< The path style to use.
59 friend const_iterator begin(StringRef path, Style style);
83 Style S; ///< The path style to use.
85 friend reverse_iterator rbegin(StringRef path, Style style);
102 const_iterator begin(StringRef path, Style style = Style::native)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
Path.h 27 enum class Style { windows, posix, native };
56 Style S; ///< The path style to use.
59 friend const_iterator begin(StringRef path, Style style);
83 Style S; ///< The path style to use.
85 friend reverse_iterator rbegin(StringRef path, Style style);
102 const_iterator begin(StringRef path, Style style = Style::native)
    [all...]

Completed in 600 milliseconds

1 2 3 4 5 6 7 8 91011