Home
last modified time | relevance | path

Searched refs:bitset2 (Results 1 – 7 of 7) sorted by relevance

/external/antlr/runtime/C/src/
Dantlr3bitset.c42 static pANTLR3_BITSET antlr3BitsetOR (pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2);
43 static void antlr3BitsetORInPlace (pANTLR3_BITSET bitset, pANTLR3_BITSET bitset2);
46 static ANTLR3_BOOLEAN antlr3BitsetEquals (pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2);
353 antlr3BitsetOR(pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2) in antlr3BitsetOR() argument
359 return antlr3BitsetClone(bitset2); in antlr3BitsetOR()
362 if (bitset2 == NULL) in antlr3BitsetOR()
371 antlr3BitsetORInPlace(bitset, bitset2); in antlr3BitsetOR()
439 antlr3BitsetORInPlace(pANTLR3_BITSET bitset, pANTLR3_BITSET bitset2) in antlr3BitsetORInPlace() argument
444 if (bitset2 == NULL) in antlr3BitsetORInPlace()
453 if (bitset->blist.length < bitset2->blist.length) in antlr3BitsetORInPlace()
[all …]
/external/antlr/runtime/Cpp/include/
Dantlr3bitset.inl139 Bitset<ImplTraits>* Bitset<ImplTraits>::bor(Bitset* bitset2) argument
144 return bitset2->clone();
146 if (bitset2 == NULL)
152 bitset->bitsetORInPlace(bitset2);
157 void Bitset<ImplTraits>::borInPlace(Bitset* bitset2) argument
161 if (bitset2 == NULL)
167 if ( m_blist.get_length() < bitset2->m_blist.get_length() )
168 this->growToInclude( bitset2->m_blist.get_length() * sizeof(ANTLR_BITWORD) );
172 if ( m_blist.get_length() < bitset2->m_blist.get_length() )
175 minimum = bitset2->m_blist.get_length();
[all …]
Dantlr3bitset.hpp140 Bitset* bor(Bitset* bitset2);
143 void borInPlace(Bitset* bitset2);
147 bool equals(Bitset* bitset2) const;
215 void bitsetORInPlace(Bitset* bitset2);
/external/antlr/runtime/C/include/
Dantlr3bitset.h94 …ITSET (*bor) (struct ANTLR3_BITSET_struct * bitset1, struct ANTLR3_BITSET_struct * bitset2);
95 … (*borInPlace) (struct ANTLR3_BITSET_struct * bitset, struct ANTLR3_BITSET_struct * bitset2);
99 … (*equals) (struct ANTLR3_BITSET_struct * bitset1, struct ANTLR3_BITSET_struct * bitset2);
/external/icu/icu4c/source/test/intltest/
Ditspoof.cpp537 ScriptSet bitset2; bitset2.set(USCRIPT_HANGUL, status); in testScriptSet() local
538 TEST_ASSERT(bitset12.contains(bitset2)); in testScriptSet()
540 TEST_ASSERT(!bitset2.contains(bitset12)); in testScriptSet()
/external/cronet/third_party/icu/source/test/intltest/
Ditspoof.cpp537 ScriptSet bitset2; bitset2.set(USCRIPT_HANGUL, status); in testScriptSet() local
538 TEST_ASSERT(bitset12.contains(bitset2)); in testScriptSet()
540 TEST_ASSERT(!bitset2.contains(bitset12)); in testScriptSet()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DShowKeyboards.java576 BitSet bitset2 = new BitSet(); field in ShowKeyboards.IdInfo
610 UScript.getScriptExtensions(ch, bitset2); in getScriptExtensions()
611 outputBitset.or(bitset2); in getScriptExtensions()