Searched refs:props2 (Results 1 - 25 of 26) sorted by relevance

12

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Ddifference.h60 uint64 props2 = fst2.Properties(kFstProperties, false); local
61 Impl()->SetProperties(DifferenceProperties(props1, props2),
74 uint64 props2 = fst2.Properties(kFstProperties, false); local
75 Impl()->SetProperties(DifferenceProperties(props1, props2),
H A Dintersect.h54 uint64 props2 = fst2.Properties(kFstProperties, false); local
55 Impl()->SetProperties(IntersectProperties(props1, props2),
66 uint64 props2 = fst2.Properties(kFstProperties, false); local
67 Impl()->SetProperties(IntersectProperties(props1, props2),
H A Dunion.h49 uint64 props2 = fst2.Properties(kFstProperties, false); local
68 fst1->SetProperties(props2, kCopyProperties);
80 fst1->SetProperties(UnionProperties(props1, props2), kFstProperties);
H A Drational.h65 uint64 props2 = fst2.Properties(kFstProperties, false); local
81 SetProperties(UnionProperties(props1, props2, true), kCopyProperties);
87 uint64 props2 = fst2.Properties(kFstProperties, false); local
104 SetProperties(ConcatProperties(props1, props2, true), kCopyProperties);
138 uint64 props2 = fst.Properties(kFstProperties, false); local
148 SetProperties(UnionProperties(props1, props2, true), kCopyProperties);
154 uint64 props2 = fst.Properties(kFstProperties, false); local
164 SetProperties(ConcatProperties(props1, props2, true), kCopyProperties);
H A Dtest-properties.h42 inline bool CompatProperties(uint64 props1, uint64 props2) { argument
44 uint64 known_props2 = KnownProperties(props2);
46 uint64 incompat_props = (props1 & known_props) ^ (props2 & known_props);
53 << ", props2 = " << (props2 & prop ? "true" : "false");
233 << " (stored: props1, computed: props2)";
H A Dconcat.h49 uint64 props2 = fst2.Properties(kFstProperties, false); local
78 fst1->SetProperties(ConcatProperties(props1, props2), kFstProperties);
H A Dcompose.h110 uint64 props2 = fst2.Properties(kFstProperties, false); local
111 SetProperties(ComposeProperties(props1, props2), kCopyProperties);
776 uint64 props2 = fst2.Properties(sort_props_mask, true); local
779 props2 |= fst2.Properties(opt_props_mask, false);
783 props2 |= fst2.Properties(kUnweighted, true);
784 if (!(props1 & kUnweighted) && !(props2 & kUnweighted))
802 ((props2 & kStringDetOptProps) == kStringDetOptProps)) {
807 if ((props2 & kString) &&
H A Dproduct-weight.h90 uint64 props2 = W2::Properties(); local
91 return props1 & props2 & (kLeftSemiring | kRightSemiring |
/external/openfst/src/include/fst/
H A Dunion.h62 uint64 props2 = fst2.Properties(kFstProperties, false); local
66 if (props2 & kError) fst1->SetProperties(kError, kError);
93 fst1->SetProperties(props2, kCopyProperties);
105 fst1->SetProperties(UnionProperties(props1, props2), kFstProperties);
H A Dconcat.h63 uint64 props2 = fst2.Properties(kFstProperties, false); local
67 if (props2 & kError) fst1->SetProperties(kError, kError);
101 fst1->SetProperties(ConcatProperties(props1, props2), kFstProperties);
128 uint64 props2 = fst2->Properties(kFstProperties, false); local
160 fst2->SetProperties(ConcatProperties(props1, props2), kFstProperties);
H A Drational.h124 uint64 props2 = fst2.Properties(kFstProperties, false); local
138 SetProperties(UnionProperties(props1, props2, true), kCopyProperties);
146 uint64 props2 = fst2.Properties(kFstProperties, false); local
161 SetProperties(ConcatProperties(props1, props2, true), kCopyProperties);
197 uint64 props2 = fst.Properties(kFstProperties, false); local
207 SetProperties(UnionProperties(props1, props2, true), kCopyProperties);
215 uint64 props2 = fst.Properties(kFstProperties, false); local
228 SetProperties(ConcatProperties(props1, props2, true), kCopyProperties);
H A Dtest-properties.h46 inline bool CompatProperties(uint64 props1, uint64 props2) { argument
48 uint64 known_props2 = KnownProperties(props2);
50 uint64 incompat_props = (props1 & known_props) ^ (props2 & known_props);
57 << ", props2 = " << (props2 & prop ? "true" : "false");
241 << " (stored: props1, computed: props2)";
H A Dexpectation-weight.h110 uint64 props2 = W2::Properties(); local
111 return props1 & props2 & (kLeftSemiring | kRightSemiring |
H A Dproduct-weight.h75 uint64 props2 = W2::Properties(); local
76 return props1 & props2 & (kLeftSemiring | kRightSemiring |
H A Dstate-table.h394 uint64 props2 = kIDeterministic | kNoIEpsilons; local
396 fst2.Properties(props2, true) != props2) {
436 uint64 props2 = kString; local
438 fst2.Properties(props2, true) != props2) {
H A Dlexicographic-weight.h114 uint64 props2 = W2::Properties(); local
115 return props1 & props2 & (kLeftSemiring | kRightSemiring | kPath |
H A Dcompose.h568 int64 props2 = fst2.Properties(kUnweighted, true); local
569 if (!(props1 & kUnweighted) && !(props2 & kUnweighted)) {
/external/chromium_org/third_party/lzma_sdk/
H A DLzmaEnc.h35 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2);
H A DLzmaEnc.c76 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2) argument
78 CLzmaEncProps props = *props2;
391 SRes LzmaEnc_SetProps(CLzmaEncHandle pp, const CLzmaEncProps *props2) argument
394 CLzmaEncProps props = *props2;
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaEnc.h36 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2);
H A DLzmaEnc.c77 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2) argument
79 CLzmaEncProps props = *props2;
392 SRes LzmaEnc_SetProps(CLzmaEncHandle pp, const CLzmaEncProps *props2) argument
395 CLzmaEncProps props = *props2;
/external/lzma/C/
H A DLzmaEnc.h35 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2);
H A DLzmaEnc.c76 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2) argument
78 CLzmaEncProps props = *props2;
391 SRes LzmaEnc_SetProps(CLzmaEncHandle pp, const CLzmaEncProps *props2) argument
394 CLzmaEncProps props = *props2;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar ... .util.Properties props1 java.util.Properties props2 java.util.Iterator iterator String key String prop1 ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...

Completed in 888 milliseconds

12