Home
last modified time | relevance | path

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

/external/antlr/antlr-3.4/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);
354 antlr3BitsetOR(pANTLR3_BITSET bitset1, pANTLR3_BITSET bitset2) in antlr3BitsetOR() argument
360 return antlr3BitsetClone(bitset2); in antlr3BitsetOR()
363 if (bitset2 == NULL) in antlr3BitsetOR()
372 antlr3BitsetORInPlace(bitset, bitset2); in antlr3BitsetOR()
440 antlr3BitsetORInPlace(pANTLR3_BITSET bitset, pANTLR3_BITSET bitset2) in antlr3BitsetORInPlace() argument
445 if (bitset2 == NULL) in antlr3BitsetORInPlace()
454 if (bitset->blist.length < bitset2->blist.length) in antlr3BitsetORInPlace()
[all …]
/external/antlr/antlr-3.4/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.cpp511 ScriptSet bitset2; bitset2.set(USCRIPT_HANGUL, status); in testScriptSet() local
512 TEST_ASSERT(bitset12.contains(bitset2)); in testScriptSet()
514 TEST_ASSERT(!bitset2.contains(bitset12)); in testScriptSet()