OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inprops
(Results
1 - 12
of
12
) sorted by null
/external/srec/tools/thirdparty/OpenFst/fst/lib/
properties.cpp
34
uint64 ClosureProperties(uint64
inprops
, bool star, bool delayed) {
35
uint64 outprops = (kAcceptor | kUnweighted | kAccessible) &
inprops
;
38
kNotTopSorted | kNotString) &
inprops
;
39
if (!delayed ||
inprops
& kAccessible)
42
kNotAccessible | kNotCoAccessible) &
inprops
;
47
uint64 ComplementProperties(uint64
inprops
) {
51
outprops |= (kILabelSorted | kOLabelSorted | kInitialCyclic) &
inprops
;
52
if (
inprops
& kAccessible)
102
uint64 DeterminizeProperties(uint64
inprops
) {
105
kInitialAcyclic | kCoAccessible | kString) &
inprops
;
[
all
...]
properties.h
297
uint64 ClosureProperties(uint64
inprops
, bool star, bool delayed = false);
298
uint64 ComplementProperties(uint64
inprops
);
302
uint64 DeterminizeProperties(uint64
inprops
);
304
uint64 FactorWeightProperties(uint64
inprops
);
306
uint64 InvertProperties(uint64
inprops
);
307
uint64 ProjectProperties(uint64
inprops
, bool project_input);
308
uint64 RelabelProperties(uint64
inprops
);
309
uint64 ReplaceProperties(const vector<uint64>&
inprops
);
310
uint64 ReverseProperties(uint64
inprops
);
311
uint64 ReweightProperties(uint64
inprops
);
[
all
...]
replace.h
147
vector<uint64>
inprops
(fst_array_.size());
150
inprops
[i] = fst_array_[i]->Properties(kCopyProperties, false);
152
SetProperties(ReplaceProperties(
inprops
));
/external/openfst/src/lib/
properties.cc
38
uint64 ClosureProperties(uint64
inprops
, bool star, bool delayed) {
39
uint64 outprops = (kError | kAcceptor | kUnweighted | kAccessible) &
inprops
;
42
kNotTopSorted | kNotString) &
inprops
;
43
if (!delayed ||
inprops
& kAccessible)
46
kNotAccessible | kNotCoAccessible) &
inprops
;
51
uint64 ComplementProperties(uint64
inprops
) {
56
inprops
;
57
if (
inprops
& kAccessible)
116
uint64 DeterminizeProperties(uint64
inprops
, bool has_subsequential_label) {
118
if (((kAcceptor | kNoIEpsilons) &
inprops
) || has_subsequential_label
[
all
...]
/external/openfst/src/include/fst/
properties.h
323
inline uint64 SetStartProperties(uint64
inprops
);
325
uint64 SetFinalProperties(uint64
inprops
, Weight old_weight,
327
inline uint64 AddStateProperties(uint64
inprops
);
329
uint64 AddArcProperties(uint64
inprops
, typename A::StateId s, const A &arc,
331
inline uint64 DeleteStatesProperties(uint64
inprops
);
332
inline uint64 DeleteAllStatesProperties(uint64
inprops
, uint64 staticProps);
333
inline uint64 DeleteArcsProperties(uint64
inprops
);
335
uint64 ClosureProperties(uint64
inprops
, bool star, bool delayed = false);
336
uint64 ComplementProperties(uint64
inprops
);
340
uint64 DeterminizeProperties(uint64
inprops
, bool has_subsequential_label)
[
all
...]
matcher.h
249
virtual uint64 Properties(uint64
inprops
) const {
250
uint64 outprops =
inprops
;
475
uint64 RhoMatcher<M>::Properties(uint64
inprops
) const {
476
uint64 outprops = matcher_->Properties(
inprops
);
655
uint64 SigmaMatcher<M>::Properties(uint64
inprops
) const {
656
uint64 outprops = matcher_->Properties(
inprops
);
852
uint64 PhiMatcher<M>::Properties(uint64
inprops
) const {
853
uint64 outprops = matcher_->Properties(
inprops
);
[
all
...]
encode.h
347
uint64 Properties(uint64
inprops
) {
348
uint64 outprops =
inprops
;
arc-map.h
848
uint64 Properties(uint64
inprops
) const {
849
uint64 outprops =
inprops
& kOLabelInvariantProperties &
941
uint64 Properties(uint64
inprops
) const {
942
uint64 outprops =
inprops
& kOLabelInvariantProperties &
[
all
...]
replace.h
366
vector<uint64>
inprops
;
local
383
inprops
.push_back(fst->Properties(kCopyProperties, false));
406
SetProperties(ReplaceProperties(
inprops
, root_ - 1, epsilon_on_replace_,
[
all
...]
lookahead-filter.h
271
uint64 Properties(uint64
inprops
) const {
272
uint64 outprops = filter_.Properties(
inprops
);
lookahead-matcher.h
502
uint64 Properties(uint64
inprops
) const {
503
uint64 outprops = matcher_.Properties(
inprops
);
/external/openfst/src/include/fst/extensions/pdt/
expand.h
54
inline uint64 ExpandProperties(uint64
inprops
) {
55
return
inprops
& (kAcceptor | kAcyclic | kInitialAcyclic | kUnweighted);
[
all
...]
Completed in 164 milliseconds