Home
last modified time | relevance | path

Searched refs:TextColors (Results 1 – 24 of 24) sorted by relevance

/dports/java/java-subversion/subversion-1.14.1/subversion/tests/cmdline/svntest/
H A Dtestcase.py39 class TextColors: class
61 TextColors.disable()
69 RESULT_OK: (0, TextColors.success('PASS: '), True),
70 RESULT_FAIL: (1, TextColors.failure('FAIL: '), False),
71 RESULT_SKIP: (2, TextColors.success('SKIP: '), True),
187 RESULT_OK: (1, TextColors.failure('XPASS:'), False),
188 RESULT_FAIL: (0, TextColors.success('XFAIL:'), True),
189 RESULT_SKIP: (2, TextColors.success('SKIP: '), True),
220 RESULT_OK: (0, TextColors.success('XPASS:'), True),
221 RESULT_FAIL: (0, TextColors.success('XFAIL:'), True),
[all …]
/dports/devel/py-subversion/subversion-1.14.1/subversion/tests/cmdline/svntest/
H A Dtestcase.py39 class TextColors: class
61 TextColors.disable()
69 RESULT_OK: (0, TextColors.success('PASS: '), True),
70 RESULT_FAIL: (1, TextColors.failure('FAIL: '), False),
71 RESULT_SKIP: (2, TextColors.success('SKIP: '), True),
187 RESULT_OK: (1, TextColors.failure('XPASS:'), False),
188 RESULT_FAIL: (0, TextColors.success('XFAIL:'), True),
189 RESULT_SKIP: (2, TextColors.success('SKIP: '), True),
220 RESULT_OK: (0, TextColors.success('XPASS:'), True),
221 RESULT_FAIL: (0, TextColors.success('XFAIL:'), True),
[all …]
/dports/security/subversion-gnome-keyring/subversion-1.14.1/subversion/tests/cmdline/svntest/
H A Dtestcase.py39 class TextColors: class
61 TextColors.disable()
69 RESULT_OK: (0, TextColors.success('PASS: '), True),
70 RESULT_FAIL: (1, TextColors.failure('FAIL: '), False),
71 RESULT_SKIP: (2, TextColors.success('SKIP: '), True),
187 RESULT_OK: (1, TextColors.failure('XPASS:'), False),
188 RESULT_FAIL: (0, TextColors.success('XFAIL:'), True),
189 RESULT_SKIP: (2, TextColors.success('SKIP: '), True),
220 RESULT_OK: (0, TextColors.success('XPASS:'), True),
221 RESULT_FAIL: (0, TextColors.success('XFAIL:'), True),
[all …]
/dports/devel/p5-subversion/subversion-1.14.1/subversion/tests/cmdline/svntest/
H A Dtestcase.py39 class TextColors: class
61 TextColors.disable()
69 RESULT_OK: (0, TextColors.success('PASS: '), True),
70 RESULT_FAIL: (1, TextColors.failure('FAIL: '), False),
71 RESULT_SKIP: (2, TextColors.success('SKIP: '), True),
187 RESULT_OK: (1, TextColors.failure('XPASS:'), False),
188 RESULT_FAIL: (0, TextColors.success('XFAIL:'), True),
189 RESULT_SKIP: (2, TextColors.success('SKIP: '), True),
220 RESULT_OK: (0, TextColors.success('XPASS:'), True),
221 RESULT_FAIL: (0, TextColors.success('XFAIL:'), True),
[all …]
/dports/irc/unreal/Unreal3.2.10.7/src/win32/
H A Drtf.c158 IRCColor *TextColors = NULL; in RTFToIRC() local
274 strcat(buffer, TextColors->color); in RTFToIRC()
275 i += strlen(TextColors->color); in RTFToIRC()
331 ColorPop(&TextColors); in RTFToIRC()
336 strcat(buffer, TextColors->color); in RTFToIRC()
337 i += strlen(TextColors->color); in RTFToIRC()
356 ColorPush(number, &TextColors); in RTFToIRC()
375 strcat(buffer, TextColors->color); in RTFToIRC()
376 i += strlen(TextColors->color); in RTFToIRC()
396 ColorPop(&TextColors); in RTFToIRC()
[all …]
/dports/math/vtk9/VTK-9.1.0/Rendering/Matplotlib/
H A DvtkMatplotlibMathTextUtilities.h62 struct TextColors;
144 void ComputeTextColors(vtkTextProperty* tprop, TextColors& tcolors);
244 vtkTextProperty* tprop, const TextColors& tcolors);
H A DvtkMatplotlibMathTextUtilities.cxx728 struct TextColors struct
741 void vtkMatplotlibMathTextUtilities::ComputeTextColors(vtkTextProperty* tprop, TextColors& tcolors) in ComputeTextColors() argument
800 const std::uint64_t cellCols, vtkTextProperty* tprop, const TextColors& tcolors) in RenderOneCell()
989 TextColors tcolors; in RenderString()
/dports/www/otrs/otrs-rel-6_0_29/Kernel/System/
H A DCalendar.pm1945 my %TextColors = (
1959 for my $TextColor ( sort keys %TextColors ) {
1961 0.2126 * ( $TextColors{$TextColor}->[0] / 255**2.2 ) +
1962 0.7152 * ( $TextColors{$TextColor}->[1] / 255**2.2 ) +
1963 0.0722 * ( $TextColors{$TextColor}->[2] / 255**2.2 );
1984 $TextColors{$BestTextColor}->[0],
1985 $TextColors{$BestTextColor}->[1],
1986 $TextColors{$BestTextColor}->[2],
/dports/games/xboard-devel/xboard-f49e7e1/
H A Dusystem.h55 } TextColors; typedef
H A Dusystem.c177 TextColors textColors[(int)NColorClasses];
/dports/games/xboard/xboard-4.9.1/
H A Dusystem.h56 } TextColors; typedef
H A Dusystem.c178 TextColors textColors[(int)NColorClasses];
/dports/www/grafana8/grafana-8.3.6/packages/grafana-ui/src/components/ThemeDemos/
H A DThemeDemo.tsx99 <TextColors t={t} />
102 <TextColors t={t} />
105 <TextColors t={t} />
277 export function TextColors({ t }: { t: GrafanaTheme2 }) {
/dports/java/java-subversion/subversion-1.14.1/build/
H A Drun_tests.py81 class TextColors: class
194 TextColors.disable()
323 svntest.testcase.TextColors.disable()
977 print(TextColors.FAILURE + 'FAILURE' + TextColors.ENDC)
979 print(TextColors.SUCCESS + 'success' + TextColors.ENDC)
/dports/devel/py-subversion/subversion-1.14.1/build/
H A Drun_tests.py81 class TextColors: class
194 TextColors.disable()
323 svntest.testcase.TextColors.disable()
977 print(TextColors.FAILURE + 'FAILURE' + TextColors.ENDC)
979 print(TextColors.SUCCESS + 'success' + TextColors.ENDC)
/dports/security/subversion-gnome-keyring/subversion-1.14.1/build/
H A Drun_tests.py81 class TextColors: class
194 TextColors.disable()
323 svntest.testcase.TextColors.disable()
977 print(TextColors.FAILURE + 'FAILURE' + TextColors.ENDC)
979 print(TextColors.SUCCESS + 'success' + TextColors.ENDC)
/dports/devel/p5-subversion/subversion-1.14.1/build/
H A Drun_tests.py81 class TextColors: class
194 TextColors.disable()
323 svntest.testcase.TextColors.disable()
977 print(TextColors.FAILURE + 'FAILURE' + TextColors.ENDC)
979 print(TextColors.SUCCESS + 'success' + TextColors.ENDC)
/dports/games/odamex/odamex-src-0.7.0/client/src/
H A Dm_options.cpp906 static value_t TextColors[] =
945 { cdiscrete, "Item Pickup", {&msg0color}, {10.0}, {0.0}, {0.0}, {TextColors} },
946 { cdiscrete, "Obituaries", {&msg1color}, {10.0}, {0.0}, {0.0}, {TextColors} },
947 { cdiscrete, "Critical Messages", {&msg2color}, {10.0}, {0.0}, {0.0}, {TextColors} },
948 { cdiscrete, "Chat Messages", {&msg3color}, {10.0}, {0.0}, {0.0}, {TextColors} },
949 { cdiscrete, "Team Messages", {&msg4color}, {10.0}, {0.0}, {0.0}, {TextColors} },
950 { cdiscrete, "Centered Messages", {&msgmidcolor}, {10.0}, {0.0}, {0.0}, {TextColors} }
/dports/x11-toolkits/gtk-sharp30/gtk-sharp-2.99.3/gtk/
H A DStyle.cs78 public Gdk.Color[] TextColors { property in Gtk.Style
/dports/games/gemrb/gemrb-0.9.0/gemrb/core/GUI/TextSystem/
H A DTextContainer.h290 const Font::PrintColors* TextColors() const { return colors; } in TextColors() function
H A DTextContainer.cpp261 pc = container->TextColors(); in DrawContentsInRegions()
/dports/x11-toolkits/gtk-sharp20/gtk-sharp-2.12.45/gtk/
H A DStyle.custom251 public Gdk.Color[] TextColors {
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/sci/engine/
H A Dkernel_tables.h842 …{ MAP_CALL(TextColors), SIG_SCI16, SIGFOR_ALL, "(i*)", NULL, …
881 …{ MAP_DUMMY(TextColors), SIG_THRU_SCI21EARLY, SIGFOR_ALL, "(.*)", NULL, …
/dports/games/scummvm/scummvm-2.5.1/engines/sci/engine/
H A Dkernel_tables.h848 …{ MAP_CALL(TextColors), SIG_SCI16, SIGFOR_ALL, "(i*)", NULL, …
887 …{ MAP_DUMMY(TextColors), SIG_THRU_SCI21EARLY, SIGFOR_ALL, "(.*)", NULL, …