/external/libpcap/ |
gencode.h | 213 typedef bpf_u_int32 *uset; typedef 224 uset edom; 244 uset dom; 245 uset closure;
|
optimize.c | 161 * True if a is in uset {p} 167 * Add 'a' to uset p. 173 * Delete 'a' from uset p. 208 static uset all_dom_sets; 209 static uset all_closure_sets; 210 static uset all_edge_sets; 309 uset x; 317 memset(root->et.edom, 0, edgewords * sizeof(*(uset)0)); 318 memset(root->ef.edom, 0, edgewords * sizeof(*(uset)0)); [all...] |
/external/chromium_org/third_party/icu/source/common/ |
rbbinode.h | 29 uset, enumerator in enum:RBBINode::NodeType 58 UnicodeSet *fInputSet; // For uset nodes only.
|
rbbiscan.cpp | 655 // - find the corresponding Unicode Set (uset node) 658 // to the uset node 659 // Maintain a hash table of uset nodes, so the same one is always used 679 U_ASSERT(node->fLeftChild->fType == RBBINode::uset); 697 // Make a new uset node to refer to this UnicodeSet 698 // This new uset node becomes the child of the caller's setReference node. 700 RBBINode *usetNode = new RBBINode(RBBINode::uset); 712 // Add the new uset node to the list of all uset nodes. [all...] |
uset.cpp | 8 * file name: uset.c 16 * There are functions to efficiently serialize a USet into an array of uint16_t 18 * instantiating a new USet. 23 #include "unicode/uset.h" 31 U_CAPI USet* U_EXPORT2 33 return (USet*) new UnicodeSet(); 36 U_CAPI USet* U_EXPORT2 38 return (USet*) new UnicodeSet(start, end); 42 uset_close(USet* set) { 46 U_CAPI USet * U_EXPORT [all...] |
rbbinode.cpp | 148 } else if (fType == RBBINode::uset) { 211 // the left child of the uset node. 278 "uset",
|
/external/icu4c/common/ |
rbbinode.h | 29 uset, enumerator in enum:RBBINode::NodeType 58 UnicodeSet *fInputSet; // For uset nodes only.
|
rbbiscan.cpp | 656 // - find the corresponding Unicode Set (uset node) 659 // to the uset node 660 // Maintain a hash table of uset nodes, so the same one is always used 680 U_ASSERT(node->fLeftChild->fType == RBBINode::uset); 698 // Make a new uset node to refer to this UnicodeSet 699 // This new uset node becomes the child of the caller's setReference node. 701 RBBINode *usetNode = new RBBINode(RBBINode::uset); 713 // Add the new uset node to the list of all uset nodes. [all...] |
uset.cpp | 8 * file name: uset.cpp 16 * There are functions to efficiently serialize a USet into an array of uint16_t 18 * instantiating a new USet. 23 #include "unicode/uset.h" 31 U_CAPI USet* U_EXPORT2 33 return (USet*) new UnicodeSet(); 36 U_CAPI USet* U_EXPORT2 38 return (USet*) new UnicodeSet(start, end); 42 uset_close(USet* set) { 46 U_CAPI USet * U_EXPORT [all...] |
rbbinode.cpp | 148 } else if (fType == RBBINode::uset) { 211 // the left child of the uset node. 278 "uset",
|
Android.mk | 88 uobject.cpp uset.cpp \
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
uniset.h | 16 #include "unicode/uset.h" 474 * Get a UnicodeSet pointer from a USet 476 * @param uset a USet (the ICU plain C type for UnicodeSet) 481 inline static UnicodeSet *fromUSet(USet *uset); 484 * Get a UnicodeSet pointer from a const USet 486 * @param uset a const USet (the ICU plain C type for UnicodeSet) 491 inline static const UnicodeSet *fromUSet(const USet *uset) [all...] |
/external/icu4c/common/unicode/ |
uniset.h | 16 #include "unicode/uset.h" 477 * Get a UnicodeSet pointer from a USet 479 * @param uset a USet (the ICU plain C type for UnicodeSet) 484 inline static UnicodeSet *fromUSet(USet *uset); 487 * Get a UnicodeSet pointer from a const USet 489 * @param uset a const USet (the ICU plain C type for UnicodeSet) 494 inline static const UnicodeSet *fromUSet(const USet *uset) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
SmartReplaceICU.cpp | 36 #include <unicode/uset.h> 40 static void addAllCodePoints(USet* smartSet, const String& string) 48 static USet* getSmartSet(bool isPreviousCharacter) 50 static USet* preSmartSet = NULL; 51 static USet* postSmartSet = NULL; 52 USet* smartSet = isPreviousCharacter ? preSmartSet : postSmartSet; 81 USet* icuPunct = uset_openPattern(punctuationClass.charactersWithNullTermination().data(), punctuationClass.length(), &ec);
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
spooftest.c | 28 #include "unicode/uset.h" 246 USet *us; 247 const USet *uset; local 249 uset = uspoof_getAllowedChars(sc, &status); 251 TEST_ASSERT(uset_isFrozen(uset)); 364 * AllowedChars set/get the USet of allowed characters. 367 const USet *set; 368 USet *tmpSet; 371 /* By default, we should see no restriction; the USet should allow all characters. * [all...] |
/external/icu4c/test/cintltst/ |
spooftest.c | 28 #include "unicode/uset.h" 251 USet *us; 252 const USet *uset; local 254 uset = uspoof_getAllowedChars(sc, &status); 256 TEST_ASSERT(uset_isFrozen(uset)); 388 * AllowedChars set/get the USet of allowed characters. 391 const USet *set; 392 USet *tmpSet; 395 /* By default, we should see no restriction; the USet should allow all characters. * [all...] |
/external/stlport/test/unit/ |
unordered_test.cpp | 29 CPPUNIT_TEST(uset); 46 void uset(); 66 void UnorderedTest::uset() function in class:UnorderedTest
|
/ndk/tests/device/test-gnustl-full/unit/ |
unordered_test.cpp | 29 CPPUNIT_TEST(uset); 46 void uset(); 66 void UnorderedTest::uset() function in class:UnorderedTest
|
/ndk/tests/device/test-stlport/unit/ |
unordered_test.cpp | 29 CPPUNIT_TEST(uset); 46 void uset(); 66 void UnorderedTest::uset() function in class:UnorderedTest
|
/external/chromium_org/third_party/icu/ |
icuuc.host.darwin-arm.mk | 152 third_party/icu/source/common/uset.cpp \
|
icuuc.host.darwin-mips.mk | 152 third_party/icu/source/common/uset.cpp \
|
icuuc.host.darwin-x86.mk | 152 third_party/icu/source/common/uset.cpp \
|
icuuc.host.linux-arm.mk | 152 third_party/icu/source/common/uset.cpp \
|
icuuc.host.linux-mips.mk | 152 third_party/icu/source/common/uset.cpp \
|
icuuc.host.linux-x86.mk | 152 third_party/icu/source/common/uset.cpp \
|