HomeSort by relevance Sort by last modified time
    Searched refs:Union (Results 1 - 25 of 35) sorted by null

1 2

  /external/icu4c/i18n/
uspoof_impl.h 72 // Add (union) to the UnicodeSet all of the characters for the scripts used for
205 void Union(const ScriptSet &other);
206 void Union(UScriptCode script);
uspoof_buildwsconf.cpp 249 bsset->sset->Union(targScript);
250 bsset->sset->Union(srcScript);
uspoof_impl.cpp 689 void ScriptSet::Union(UScriptCode script) {
697 void ScriptSet::Union(const ScriptSet &other) {
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
union.h 0 // union.h
17 // Functions and classes to compute the union of two FSTs.
27 // Computes the union (sum) of two FSTs. This version writes the
28 // union to an output MurableFst. If A transduces string x to y with
30 // union transduces x to y with weight a and w to v with weight b.
37 void Union(MutableFst<Arc> *fst1, const Fst<Arc> &fst2) {
84 // Computes the union of two FSTs; this version modifies its
87 void Union(RationalFst<Arc> *fst1, const Fst<Arc> &fst2) {
95 // Computes the union (sum) of two FSTs. This version is a delayed
97 // string w to v with weight b, then their union transduces x to
    [all...]
union-find.h 0 // union-find.h
16 // \file Union-Find algorithm for dense sets of non-negative
28 // Union-Find algorithm for dense sets of non-negative integers
58 // Creates the (destructive) union of the sets x and y belong to.
59 void Union(T x, T y) {
rational.h 37 template <class A> void Union(RationalFst<A> *fst1, const Fst<A> &fst2);
135 // Implementation of Union(Fst &, RationalFst *)
145 Union(&rfst_, afst);
183 // Parent class for the delayed rational operations - delayed union,
192 friend void Union<>(RationalFst<A> *fst1, const Fst<A> &fst2);
equivalent.h 29 #include "fst/lib/union-find.h"
43 // mapped to kDeadState for both acceptors). The union-find algorithm
103 // forest (the union-find algorithm) is used to represent the sets of
149 // The union-find structure.
152 // Initialize the union-find structure.
186 eq_classes.Union(rep1, rep2);
  /external/webkit/WebCore/xml/
XPathPredicate.h 102 class Union : public Expression {
XPathPredicate.cpp 232 Value Union::evaluate() const
XPathGrammar.y 59 %union
414 $$ = new Union;
  /system/wlan/ti/sta_dk_4_0_4_32/common/inc/
osDot11.h 70 union
177 PACKED_UNION(Union,
237 PACKED_UNION(Union,
267 PACKED_UNION(Union,
  /hardware/ti/wlan/wl1271/Test/
smeDebug.c 216 Freq2Chan(pBssid->Configuration.Union.channel),
  /system/wlan/ti/wilink_6_1/Test/
smeDebug.c 216 Freq2Chan(pBssid->Configuration.Union.channel),
  /external/v8/src/
ast.cc 221 result = result.Union(children->at(i)->CaptureRegisters());
243 return self.Union(body()->CaptureRegisters());
  /hardware/ti/wlan/wl1271/utils/
osDot11.h 69 union
171 union
175 } Union;
  /system/wlan/ti/wilink_6_1/utils/
osDot11.h 69 union
171 union
175 } Union;
  /external/v8/tools/
test.py 721 def Union(self, that):
723 return that.Union(self)
735 def Union(self, that):
747 def Union(self, that):
775 return self.left.GetOutcomes(env, defs).Union(self.right.GetOutcomes(env, defs))
984 outcomes = outcomes.union(rule.GetOutcomes(env, self.defs))
989 all_outcomes = all_outcomes.union(outcomes)
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/sme/siteMgr/
siteMgr.c 680 channel = Freq2Chan(pConfig->Union.channel);
685 pConfig->Union.channel = channel;
687 if((pSiteMgr->pDesiredParams->siteMgrDesiredChannel != pConfig->Union.channel) ||
688 (pSiteMgr->pDesiredParams->siteMgrDesiredChannel != pConfig->Union.channel) ||
691 pSiteMgr->pDesiredParams->siteMgrDesiredChannel = (UINT8)pConfig->Union.channel;
    [all...]
  /hardware/ti/wlan/wl1271/CUDK/os/linux/src/
cu_wext.c 56 union iwreq_data req_data;
114 bssidList[index-1].Configuration.Union.channel = iwe->u.freq.m;
  /system/wlan/ti/wilink_6_1/CUDK/os/linux/src/
cu_wext.c 56 union iwreq_data req_data;
114 bssidList[index-1].Configuration.Union.channel = iwe->u.freq.m;
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
siteMgr.c 623 channel = Freq2Chan(pConfig->Union.channel);
628 pConfig->Union.channel = channel;
630 if((pSiteMgr->pDesiredParams->siteMgrDesiredChannel != pConfig->Union.channel) ||
633 pSiteMgr->pDesiredParams->siteMgrDesiredChannel = (TI_UINT8)pConfig->Union.channel;
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
siteMgr.c 610 channel = Freq2Chan(pConfig->Union.channel);
615 pConfig->Union.channel = channel;
617 if((pSiteMgr->pDesiredParams->siteMgrDesiredChannel != pConfig->Union.channel) ||
620 pSiteMgr->pDesiredParams->siteMgrDesiredChannel = (TI_UINT8)pConfig->Union.channel;
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/wpa_supplicant_lib/
driver_ti.c     [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/
MultiRectArea.java 540 * Union with another MultiRectArea object
543 setRect(union(this, mra).rect, false);
564 * Union with Rectangle object
567 setRect(union(this, new MultiRectArea(rect)).rect, false);
587 * Union two MutliRectareArea objects
597 public static MultiRectArea union(MultiRectArea src1, MultiRectArea src2) { method in class:MultiRectArea
598 MultiRectArea res = check(new MultiRectAreaOp.Union().getResult(src1, src2), "union(MRA,MRA)"); //$NON-NLS-1$
MultiRectAreaOp.java 379 * Union class provides union of two MultiRectAre aobjects
381 static class Union {

Completed in 654 milliseconds

1 2