/external/chromium_org/third_party/icu/source/common/ |
D | uvector.h | 90 class U_COMMON_API UVector : public UObject { 110 UVector(UErrorCode &status); 112 UVector(int32_t initialCapacity, UErrorCode &status); 114 UVector(UObjectDeleter *d, UKeyComparator *c, UErrorCode &status); 116 UVector(UObjectDeleter *d, UKeyComparator *c, int32_t initialCapacity, UErrorCode &status); 118 virtual ~UVector(); 124 void assign(const UVector& other, UTokenAssigner *assign, UErrorCode &ec); 131 UBool operator==(const UVector& other); 136 inline UBool operator!=(const UVector& other); 158 UBool equals(const UVector &other) const; [all …]
|
D | uvector.cpp | 27 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UVector) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() argument 29 UVector::UVector(UErrorCode &status) : in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 39 UVector::UVector(int32_t initialCapacity, UErrorCode &status) : in UVector() function in UVector 49 UVector::UVector(UObjectDeleter *d, UKeyComparator *c, UErrorCode &status) : in UVector() function in UVector 59 UVector::UVector(UObjectDeleter *d, UKeyComparator *c, int32_t initialCapacity, UErrorCode &status)… in UVector() function in UVector 69 void UVector::_init(int32_t initialCapacity, UErrorCode &status) { in _init() 85 UVector::~UVector() { in ~UVector() 95 void UVector::assign(const UVector& other, UTokenAssigner *assign, UErrorCode &ec) { in assign() 110 UBool UVector::operator==(const UVector& other) { in operator ==() 124 void UVector::addElement(void* obj, UErrorCode &status) { in addElement() [all …]
|
D | rbbitblb.h | 64 void setAdd(UVector *dest, UVector *source); 65 UBool setEquals(UVector *a, UVector *b); 67 void sortedAdd(UVector **dest, int32_t val); 71 void printSet(UVector *s); 88 UVector *fDStates; // D states (Aho's terminology) 105 UVector *fTagVals; 107 UVector *fPositions; // Set of parse tree positions associated 111 UVector *fDtran; // Transitions out of this state.
|
D | serv.h | 543 UVector* factories; 666 UVector& getVisibleIDs(UVector& result, UErrorCode& status) const; 688 UVector& getVisibleIDs(UVector& result, const UnicodeString* matchID, UErrorCode& status) const; 721 UVector& getDisplayNames(UVector& result, UErrorCode& status) const; 732 UVector& getDisplayNames(UVector& result, const Locale& locale, UErrorCode& status) const; 757 UVector& getDisplayNames(UVector& result,
|
D | rbbinode.h | 23 class UVector; variable 82 UVector *fFirstPosSet; 83 UVector *fLastPosSet; // TODO: rename fFirstPos & fLastPos to avoid confusion. 84 UVector *fFollowPos; 94 void findNodes(UVector *dest, RBBINode::NodeType kind, UErrorCode &status);
|
D | ustack.cpp | 15 UVector(status) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 20 UVector(initialCapacity, status) in UStack() 25 UVector(d, c, status) in UStack() 30 UVector(d, c, initialCapacity, status) in UStack()
|
D | rbbinode.cpp | 63 fFirstPosSet = new UVector(status); // TODO - get a real status from somewhere in RBBINode() 64 fLastPosSet = new UVector(status); in RBBINode() 65 fFollowPos = new UVector(status); in RBBINode() 90 fFirstPosSet = new UVector(status); // TODO - get a real status from somewhere in RBBINode() 91 fLastPosSet = new UVector(status); in RBBINode() 92 fFollowPos = new UVector(status); in RBBINode() 252 void RBBINode::findNodes(UVector *dest, RBBINode::NodeType kind, UErrorCode &status) { in findNodes()
|
D | rbbitblb.cpp | 32 fDStates = new UVector(status); in RBBITableBuilder() 354 UVector *LastPosOfLeftChild = n->fLeftChild->fLastPosSet; in calcFollowPos() 387 UVector endMarkerNodes(*fStatus); in calcChainedFollowPos() 388 UVector leafNodes(*fStatus); in calcChainedFollowPos() 412 UVector *matchStartNodes = userRuleRoot->fFirstPosSet; in calcChainedFollowPos() 514 UVector *matchStartNodes = fTree->fLeftChild->fRightChild->fFirstPosSet; in bofFixup() 559 failState->fPositions = new UVector(*fStatus); in buildStateTable() 580 initialState->fPositions = new UVector(*fStatus); in buildStateTable() 618 UVector *U = NULL; in buildStateTable() 625 U = new UVector(*fStatus); in buildStateTable() [all …]
|
/external/icu4c/common/ |
D | uvector.h | 73 class U_COMMON_API UVector : public UObject { 93 UVector(UErrorCode &status); 95 UVector(int32_t initialCapacity, UErrorCode &status); 97 UVector(UObjectDeleter *d, UElementsAreEqual *c, UErrorCode &status); 99 UVector(UObjectDeleter *d, UElementsAreEqual *c, int32_t initialCapacity, UErrorCode &status); 101 virtual ~UVector(); 107 void assign(const UVector& other, UElementAssigner *assign, UErrorCode &ec); 114 UBool operator==(const UVector& other); 119 inline UBool operator!=(const UVector& other); 141 UBool equals(const UVector &other) const; [all …]
|
D | uvector.cpp | 28 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UVector) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() argument 30 UVector::UVector(UErrorCode &status) : in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 40 UVector::UVector(int32_t initialCapacity, UErrorCode &status) : in UVector() function in UVector 50 UVector::UVector(UObjectDeleter *d, UElementsAreEqual *c, UErrorCode &status) : in UVector() function in UVector 60 UVector::UVector(UObjectDeleter *d, UElementsAreEqual *c, int32_t initialCapacity, UErrorCode &stat… in UVector() function in UVector 70 void UVector::_init(int32_t initialCapacity, UErrorCode &status) { in _init() 86 UVector::~UVector() { in ~UVector() 96 void UVector::assign(const UVector& other, UElementAssigner *assign, UErrorCode &ec) { in assign() 111 UBool UVector::operator==(const UVector& other) { in operator ==() 125 void UVector::addElement(void* obj, UErrorCode &status) { in addElement() [all …]
|
D | rbbitblb.h | 64 void setAdd(UVector *dest, UVector *source); 65 UBool setEquals(UVector *a, UVector *b); 67 void sortedAdd(UVector **dest, int32_t val); 71 void printSet(UVector *s); 88 UVector *fDStates; // D states (Aho's terminology) 105 UVector *fTagVals; 107 UVector *fPositions; // Set of parse tree positions associated 111 UVector *fDtran; // Transitions out of this state.
|
D | serv.h | 541 UVector* factories; 664 UVector& getVisibleIDs(UVector& result, UErrorCode& status) const; 686 UVector& getVisibleIDs(UVector& result, const UnicodeString* matchID, UErrorCode& status) const; 719 UVector& getDisplayNames(UVector& result, UErrorCode& status) const; 730 UVector& getDisplayNames(UVector& result, const Locale& locale, UErrorCode& status) const; 755 UVector& getDisplayNames(UVector& result,
|
D | rbbinode.h | 23 class UVector; variable 82 UVector *fFirstPosSet; 83 UVector *fLastPosSet; // TODO: rename fFirstPos & fLastPos to avoid confusion. 84 UVector *fFollowPos; 94 void findNodes(UVector *dest, RBBINode::NodeType kind, UErrorCode &status);
|
D | ustack.cpp | 15 UVector(status) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 20 UVector(initialCapacity, status) in UStack() 25 UVector(d, c, status) in UStack() 30 UVector(d, c, initialCapacity, status) in UStack()
|
D | rbbinode.cpp | 63 fFirstPosSet = new UVector(status); // TODO - get a real status from somewhere in RBBINode() 64 fLastPosSet = new UVector(status); in RBBINode() 65 fFollowPos = new UVector(status); in RBBINode() 90 fFirstPosSet = new UVector(status); // TODO - get a real status from somewhere in RBBINode() 91 fLastPosSet = new UVector(status); in RBBINode() 92 fFollowPos = new UVector(status); in RBBINode() 252 void RBBINode::findNodes(UVector *dest, RBBINode::NodeType kind, UErrorCode &status) { in findNodes()
|
D | rbbitblb.cpp | 32 fDStates = new UVector(status); in RBBITableBuilder() 354 UVector *LastPosOfLeftChild = n->fLeftChild->fLastPosSet; in calcFollowPos() 387 UVector endMarkerNodes(*fStatus); in calcChainedFollowPos() 388 UVector leafNodes(*fStatus); in calcChainedFollowPos() 412 UVector *matchStartNodes = userRuleRoot->fFirstPosSet; in calcChainedFollowPos() 514 UVector *matchStartNodes = fTree->fLeftChild->fRightChild->fFirstPosSet; in bofFixup() 559 failState->fPositions = new UVector(*fStatus); in buildStateTable() 580 initialState->fPositions = new UVector(*fStatus); in buildStateTable() 618 UVector *U = NULL; in buildStateTable() 625 U = new UVector(*fStatus); in buildStateTable() [all …]
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | cpdtrans.h | 21 class U_COMMON_API UVector; variable 206 UVector& list, 212 CompoundTransliterator(UVector& list, 216 CompoundTransliterator(UVector& list, 226 void init(UVector& list,
|
D | zonemeta.cpp | 33 static U_NAMESPACE_QUALIFIER UVector *gSingleZoneCountries = NULL; 34 static U_NAMESPACE_QUALIFIER UVector *gMultiZonesCountries = NULL; 74 delete (U_NAMESPACE_QUALIFIER UVector*) obj; in deleteUVector() 305 gSingleZoneCountries = new UVector(NULL, uhash_compareUChars, status); in getSingleCountry() 309 gMultiZonesCountries = new UVector(NULL, uhash_compareUChars, status); in getSingleCountry() 407 const UVector *mappings = getMetazoneMappings(tzid); in getMetazoneID() 424 const UVector* U_EXPORT2 461 const UVector *result = NULL; in getMetazoneMappings() 465 result = (UVector*) uhash_get(gOlsonToMeta, tzidUChars); in getMetazoneMappings() 474 UVector *tmpResult = createMetazoneMappings(tzid); in getMetazoneMappings() [all …]
|
D | uspoof_conf.h | 73 UVector *fVec; // Elements are SPUString * 95 UVector *fKeyVec; 96 UVector *fValueVec; 98 UVector *fStringLengthsTable;
|
D | zonemeta.h | 25 class UVector; variable 58 static const UVector* U_EXPORT2 getMetazoneMappings(const UnicodeString &tzid); 62 static UVector* createMetazoneMappings(const UnicodeString &tzid);
|
/external/icu4c/i18n/ |
D | cpdtrans.h | 21 class U_COMMON_API UVector; variable 188 UVector& list, 194 CompoundTransliterator(UVector& list, 198 CompoundTransliterator(UVector& list, 208 void init(UVector& list,
|
D | zonemeta.h | 25 class UVector; variable 70 static const UVector* U_EXPORT2 getMetazoneMappings(const UnicodeString &tzid); 72 static const UVector* U_EXPORT2 getAvailableMetazoneIDs(); 111 static UVector* createMetazoneMappings(const UnicodeString &tzid);
|
D | uspoof_conf.h | 73 UVector *fVec; // Elements are SPUString * 95 UVector *fKeyVec; 96 UVector *fValueVec; 98 UVector *fStringLengthsTable;
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
D | rbtz.h | 25 class UVector; variable 309 UVector* copyRules(UVector* source); 322 UVector *fHistoricRules; 323 UVector *fFinalRules; 324 UVector *fHistoricTransitions;
|
/external/icu4c/i18n/unicode/ |
D | rbtz.h | 25 class UVector; variable 309 UVector* copyRules(UVector* source); 323 UVector *fHistoricRules; 324 UVector *fFinalRules; 325 UVector *fHistoricTransitions;
|