Home
last modified time | relevance | path

Searched refs:captype (Results 1 – 25 of 275) sorted by relevance

1234567891011

/dports/astro/geographiclib/GeographicLib-1.52/dotnet/NETGeographicLib/
H A DNETGeographicLib.h18 enum class captype { enum
49 LATITUDE = 1U<<7 | unsigned(captype::CAP_NONE),
54 LONGITUDE = 1U<<8 | unsigned(captype::CAP_C3),
66 DISTANCE = 1U<<10 | unsigned(captype::CAP_C1),
72 DISTANCE_IN = 1U<<11 | unsigned(captype::CAP_C1) |
73 unsigned(captype::CAP_C1p),
78 REDUCEDLENGTH = 1U<<12 | unsigned(captype::CAP_C1) |
79 unsigned(captype::CAP_C2),
85 unsigned(captype::CAP_C2),
90 AREA = 1U<<14 | unsigned(captype::CAP_C4),
[all …]
H A DGeodesicLine.h102 LATITUDE = 1U<<7 | unsigned(captype::CAP_NONE),
107 LONGITUDE = 1U<<8 | unsigned(captype::CAP_C3),
114 AZIMUTH = 1U<<9 | unsigned(captype::CAP_NONE),
119 DISTANCE = 1U<<10 | unsigned(captype::CAP_C1),
125 DISTANCE_IN = 1U<<11 | unsigned(captype::CAP_C1) | unsigned(captype::CAP_C1p),
130 REDUCEDLENGTH = 1U<<12 | unsigned(captype::CAP_C1) | unsigned(captype::CAP_C2),
135 GEODESICSCALE = 1U<<13 | unsigned(captype::CAP_C1) | unsigned(captype::CAP_C2),
140 AREA = 1U<<14 | unsigned(captype::CAP_C4),
151 ALL = unsigned(captype::OUT_ALL)| unsigned(captype::CAP_ALL),
H A DGeodesicLineExact.h53 enum class captype { enum
91 LATITUDE = 1U<<7 | unsigned(captype::CAP_NONE),
96 LONGITUDE = 1U<<8 | unsigned(captype::CAP_H),
103 AZIMUTH = 1U<<9 | unsigned(captype::CAP_NONE),
108 DISTANCE = 1U<<10 | unsigned(captype::CAP_E),
114 DISTANCE_IN = 1U<<11 | unsigned(captype::CAP_E),
119 REDUCEDLENGTH = 1U<<12 | unsigned(captype::CAP_D),
124 GEODESICSCALE = 1U<<13 | unsigned(captype::CAP_D),
129 AREA = 1U<<14 | unsigned(captype::CAP_C4),
140 ALL = unsigned(captype::OUT_ALL)| unsigned(captype::CAP_ALL),
H A DGeodesic.h198 LATITUDE = 1U<<7 | unsigned(captype::CAP_NONE),
203 LONGITUDE = 1U<<8 | unsigned(captype::CAP_C3),
210 AZIMUTH = 1U<<9 | unsigned(captype::CAP_NONE),
215 DISTANCE = 1U<<10 | unsigned(captype::CAP_C1),
221 DISTANCE_IN = 1U<<11 | unsigned(captype::CAP_C1) | unsigned(captype::CAP_C1p),
226 REDUCEDLENGTH = 1U<<12 | unsigned(captype::CAP_C1) | unsigned(captype::CAP_C2),
231 GEODESICSCALE = 1U<<13 | unsigned(captype::CAP_C1) | unsigned(captype::CAP_C2),
236 AREA = 1U<<14 | unsigned(captype::CAP_C4),
247 ALL = unsigned(captype::OUT_ALL)| unsigned(captype::CAP_ALL),
H A DGeodesicExact.h89 enum class captype { enum
127 LATITUDE = 1U<<7 | unsigned(captype::CAP_NONE),
132 LONGITUDE = 1U<<8 | unsigned(captype::CAP_H),
139 AZIMUTH = 1U<<9 | unsigned(captype::CAP_NONE),
144 DISTANCE = 1U<<10 | unsigned(captype::CAP_E),
150 DISTANCE_IN = 1U<<11 | unsigned(captype::CAP_E),
155 REDUCEDLENGTH = 1U<<12 | unsigned(captype::CAP_D),
160 GEODESICSCALE = 1U<<13 | unsigned(captype::CAP_D),
165 AREA = 1U<<14 | unsigned(captype::CAP_C4),
176 ALL = unsigned(captype::OUT_ALL)| unsigned(captype::CAP_ALL),
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/plugins_unsupported/external/maxflow-v2.21.src/forward_star/
H A Dgraph.h49 typedef short captype; typedef
71 void add_edge(node_id from, node_id to, captype cap, captype rev_cap);
76 void set_tweights(node_id i, captype cap_source, captype cap_sink);
81 void add_tweights(node_id i, captype cap_source, captype cap_sink);
139 captype tr_cap; /* if tr_cap > 0 then tr_cap is residual capacity of the arc SOURCE->node
149 captype r_cap; /* residual capacity */
150 captype r_rev_cap; /* residual capacity of the reverse arc*/
229 void augment(node *s_start, node *t_start, captype *cap_middle, captype *rev_cap_middle);
/dports/textproc/py-spylls/spylls-0.1.6/spylls/hunspell/algo/
H A Dlookup.py321 … for form in self.affix_forms(variant, captype=captype, allow_nosuggest=allow_nosuggest):
338 … yield from self.compound_forms(variant, captype=captype, allow_nosuggest=allow_nosuggest)
342 captype: CapType,
381 captype=captype,
668 if captype != form.in_dictionary.captype and aff.KEEPCASE in root_flags:
766 captype=captype,
791 for form in self.affix_forms(beg, captype=captype, compoundpos=compoundpos,
798 for partial in self.compounds_by_flags(rest, captype=captype, depth=depth+1,
807 … for form in self.affix_forms(beg + beg[-1], captype=captype, compoundpos=compoundpos,
812 for partial in self.compounds_by_flags(rest, captype=captype, depth=depth+1,
[all …]
H A Dcapitalization.py109 captype = self.guess(word)
111 if captype == Type.NO:
113 elif captype == Type.INIT:
117 elif captype == Type.HUH:
119 elif captype == Type.ALL:
122 return (captype, result)
134 captype = self.guess(word)
136 if captype == Type.NO:
143 elif captype == Type.HUH:
145 elif captype == Type.ALL:
[all …]
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/plugins_unsupported/external/maxflow-v2.21.src/adjacency_list/
H A Dgraph.h49 typedef double captype; typedef
71 void add_edge(node_id from, node_id to, captype cap, captype rev_cap);
76 void set_tweights(node_id i, captype cap_source, captype cap_sink);
81 void add_tweights(node_id i, captype cap_source, captype cap_sink);
111 captype tr_cap; /* if tr_cap > 0 then tr_cap is residual capacity of the arc SOURCE->node
122 captype r_cap; /* residual capacity */
H A Dgraph.cpp30 void Graph::add_edge(node_id from, node_id to, captype cap, captype rev_cap) in add_edge()
49 void Graph::set_tweights(node_id i, captype cap_source, captype cap_sink) in set_tweights()
55 void Graph::add_tweights(node_id i, captype cap_source, captype cap_sink) in add_tweights()
57 register captype delta = ((node*)i) -> tr_cap; in add_tweights()
/dports/converters/p5-LaTeXML/LaTeXML-0.8.6/lib/LaTeXML/Package/
H A Dsubfig.sty.ltxml47 '\iflx@donecaption\else\refstepcounter@noreset{\@captype}\fi'
49 . '\iflx@donecaption\else\addtocounter{\@captype}{\m@ne}\fi');
71 '\ifx\@captype\@undefined
80 #'\@ifundefined{caption@setfloattype}{\caption@settype\@captype}{\caption@setfloattype\@captype}
82 #\caption@settype{sub\@captype}
85 #'\refstepcounter{sub\@captype}
86 #'\setcounter{sub\@captype @save}{\value{sub\@captype}}
87 '\csname lx@subfloat@\@captype\endcsname');
99 my $captype = ToString(Expand(T_CS('\@captype')));
100 AddToCounter($captype, Number(-1));
[all …]
H A Dsubcaption.sty.ltxml48 '{\edef\@captype{sub\@captype}\caption[#2]{#3}}');
58 beforeDigest => sub { DefMacroI('\@captype', undef, 'subfigure'); },
66 beforeDigest => sub { DefMacroI('\@captype', undef, 'subfigure'); },
74 beforeDigest => sub { DefMacroI('\@captype', undef, 'subtable'); },
82 beforeDigest => sub { DefMacroI('\@captype', undef, 'subtable'); },
87 DefMacro('\subcaptionbox', '\expandafter\@@subcaptionbox\expandafter{\@captype}');
H A Dsubfloat.sty.ltxml45 DefMacroI('\@captype', undef, 'figure');
53 beforeDigest => sub { DefMacroI('\@captype', undef, 'subfloatfigure'); },
61 beforeDigest => sub { DefMacroI('\@captype', undef, 'subfloatfigure'); },
77 DefMacroI('\@captype', undef, 'table');
85 beforeDigest => sub { DefMacroI('\@captype', undef, 'subfloattable'); },
93 beforeDigest => sub { DefMacroI('\@captype', undef, 'subfloattable'); },
/dports/print/hp2xx/hp2xx-3.4.4/sources/
H A Dto_fig.c41 int captype = 1; /* 0=butt 1=round 2=projecting */ in to_fig() local
120 captype, md, npoints, x, y); in to_fig()
165 captype = 1; in to_fig()
170 captype = 0; in to_fig()
173 captype = 2; in to_fig()
176 captype = 0; in to_fig()
198 captype, md, npoints, x, y); in to_fig()
225 captype, md, npoints, x, y); in to_fig()
235 captype, md, npoints, x, y); in to_fig()
243 fig_poly_end(pensize, colour, jointype, captype, in to_fig()
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/hunspell/src/hunspell/
H A Dhashmgr.cxx187 int captype) { in add_word() argument
312 if (captype==INITCAP) { in add_word()
434 if (((captype == HUHCAP) || (captype == HUHINITCAP) || in add_hidden_capitalized_word()
435 ((captype == ALLCAP) && (flagslen != 0))) && in add_hidden_capitalized_word()
468 *captype = get_captype_utf8(workbuf, langnum); in get_clen_and_captype()
471 *captype = get_captype(word, csconv); in get_clen_and_captype()
519 int captype; in add() local
522 int wcl = get_clen_and_captype(word, &captype); in add()
525 captype); in add()
535 int captype; in add_with_affix() local
[all …]
/dports/www/firefox-esr/firefox-91.8.0/extensions/spellcheck/hunspell/src/
H A Dhashmgr.cxx187 int captype) { in add_word() argument
312 if (captype==INITCAP) { in add_word()
434 if (((captype == HUHCAP) || (captype == HUHINITCAP) || in add_hidden_capitalized_word()
435 ((captype == ALLCAP) && (flagslen != 0))) && in add_hidden_capitalized_word()
468 *captype = get_captype_utf8(workbuf, langnum); in get_clen_and_captype()
471 *captype = get_captype(word, csconv); in get_clen_and_captype()
519 int captype; in add() local
522 int wcl = get_clen_and_captype(word, &captype); in add()
525 captype); in add()
535 int captype; in add_with_affix() local
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/extensions/spellcheck/hunspell/src/
H A Dhashmgr.cxx187 int captype) { in add_word() argument
312 if (captype==INITCAP) { in add_word()
434 if (((captype == HUHCAP) || (captype == HUHINITCAP) || in add_hidden_capitalized_word()
435 ((captype == ALLCAP) && (flagslen != 0))) && in add_hidden_capitalized_word()
468 *captype = get_captype_utf8(workbuf, langnum); in get_clen_and_captype()
471 *captype = get_captype(word, csconv); in get_clen_and_captype()
519 int captype; in add() local
522 int wcl = get_clen_and_captype(word, &captype); in add()
525 captype); in add()
535 int captype; in add_with_affix() local
[all …]
/dports/textproc/R-cran-hunspell/hunspell/src/hunspell/
H A Dhashmgr.cc187 int captype) { in add_word() argument
312 if (captype==INITCAP) { in add_word()
434 if (((captype == HUHCAP) || (captype == HUHINITCAP) || in add_hidden_capitalized_word()
435 ((captype == ALLCAP) && (flagslen != 0))) && in add_hidden_capitalized_word()
468 *captype = get_captype_utf8(workbuf, langnum); in get_clen_and_captype()
471 *captype = get_captype(word, csconv); in get_clen_and_captype()
519 int captype; in add() local
522 int wcl = get_clen_and_captype(word, &captype); in add()
525 captype); in add()
535 int captype; in add_with_affix() local
[all …]
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/SpellChecker/hunspell/src/hunspell/
H A Dhashmgr.cxx187 int captype) { in add_word() argument
312 if (captype==INITCAP) { in add_word()
434 if (((captype == HUHCAP) || (captype == HUHINITCAP) || in add_hidden_capitalized_word()
435 ((captype == ALLCAP) && (flagslen != 0))) && in add_hidden_capitalized_word()
468 *captype = get_captype_utf8(workbuf, langnum); in get_clen_and_captype()
471 *captype = get_captype(word, csconv); in get_clen_and_captype()
519 int captype; in add() local
522 int wcl = get_clen_and_captype(word, &captype); in add()
525 captype); in add()
535 int captype; in add_with_affix() local
[all …]
/dports/www/firefox/firefox-99.0/extensions/spellcheck/hunspell/src/
H A Dhashmgr.cxx190 int captype) { in add_word() argument
315 if (captype==INITCAP) { in add_word()
437 if (((captype == HUHCAP) || (captype == HUHINITCAP) || in add_hidden_capitalized_word()
438 ((captype == ALLCAP) && (flagslen != 0))) && in add_hidden_capitalized_word()
471 *captype = get_captype_utf8(workbuf, langnum); in get_clen_and_captype()
474 *captype = get_captype(word, csconv); in get_clen_and_captype()
522 int captype; in add() local
525 int wcl = get_clen_and_captype(word, &captype); in add()
528 captype); in add()
538 int captype; in add_with_affix() local
[all …]
/dports/editors/focuswriter/focuswriter-1.7.6/src/spelling/hunspell/
H A Dhashmgr.cxx187 int captype) { in add_word() argument
312 if (captype==INITCAP) { in add_word()
434 if (((captype == HUHCAP) || (captype == HUHINITCAP) || in add_hidden_capitalized_word()
435 ((captype == ALLCAP) && (flagslen != 0))) && in add_hidden_capitalized_word()
468 *captype = get_captype_utf8(workbuf, langnum); in get_clen_and_captype()
471 *captype = get_captype(word, csconv); in get_clen_and_captype()
519 int captype; in add() local
522 int wcl = get_clen_and_captype(word, &captype); in add()
525 captype); in add()
535 int captype; in add_with_affix() local
[all …]
/dports/net-im/beebeep/beebeep-code-r1476/src/hunspell/
H A Dhashmgr.cxx187 int captype) { in add_word() argument
312 if (captype==INITCAP) { in add_word()
434 if (((captype == HUHCAP) || (captype == HUHINITCAP) || in add_hidden_capitalized_word()
435 ((captype == ALLCAP) && (flagslen != 0))) && in add_hidden_capitalized_word()
468 *captype = get_captype_utf8(workbuf, langnum); in get_clen_and_captype()
471 *captype = get_captype(word, csconv); in get_clen_and_captype()
519 int captype; in add() local
522 int wcl = get_clen_and_captype(word, &captype); in add()
525 captype); in add()
535 int captype; in add_with_affix() local
[all …]
/dports/textproc/hunspell/hunspell-1.7.0/src/hunspell/
H A Dhashmgr.cxx187 int captype) { in add_word() argument
312 if (captype==INITCAP) { in add_word()
434 if (((captype == HUHCAP) || (captype == HUHINITCAP) || in add_hidden_capitalized_word()
435 ((captype == ALLCAP) && (flagslen != 0))) && in add_hidden_capitalized_word()
468 *captype = get_captype_utf8(workbuf, langnum); in get_clen_and_captype()
471 *captype = get_captype(word, csconv); in get_clen_and_captype()
519 int captype; in add() local
522 int wcl = get_clen_and_captype(word, &captype); in add()
525 captype); in add()
535 int captype; in add_with_affix() local
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/extensions/spellcheck/hunspell/src/
H A Dhashmgr.cxx187 int captype) { in add_word() argument
312 if (captype==INITCAP) { in add_word()
434 if (((captype == HUHCAP) || (captype == HUHINITCAP) || in add_hidden_capitalized_word()
435 ((captype == ALLCAP) && (flagslen != 0))) && in add_hidden_capitalized_word()
468 *captype = get_captype_utf8(workbuf, langnum); in get_clen_and_captype()
471 *captype = get_captype(word, csconv); in get_clen_and_captype()
519 int captype; in add() local
522 int wcl = get_clen_and_captype(word, &captype); in add()
525 captype); in add()
535 int captype; in add_with_affix() local
[all …]
/dports/editors/texstudio/texstudio-4.1.2/src/hunspell/
H A Dhashmgr.cxx187 int captype) { in add_word() argument
312 if (captype==INITCAP) { in add_word()
434 if (((captype == HUHCAP) || (captype == HUHINITCAP) || in add_hidden_capitalized_word()
435 ((captype == ALLCAP) && (flagslen != 0))) && in add_hidden_capitalized_word()
468 *captype = get_captype_utf8(workbuf, langnum); in get_clen_and_captype()
471 *captype = get_captype(word, csconv); in get_clen_and_captype()
519 int captype; in add() local
522 int wcl = get_clen_and_captype(word, &captype); in add()
525 captype); in add()
535 int captype; in add_with_affix() local
[all …]

1234567891011