Home
last modified time | relevance | path

Searched refs:fNamedCaptureMap (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4c/source/i18n/
Drepattrn.cpp138 while (const UHashElement *hashEl = uhash_nextElement(other.fNamedCaptureMap, &hashPos)) { in operator =()
148 uhash_puti(fNamedCaptureMap, key, val, &fDeferredStatus); in operator =()
181 fNamedCaptureMap = NULL; in init()
190 fNamedCaptureMap = uhash_open(uhash_hashUnicodeString, // Key hash function in init()
198 fInitialChars == NULL || fInitialChars8 == NULL || fNamedCaptureMap == NULL) { in init()
207 uhash_setKeyDeleter(fNamedCaptureMap, uprv_deleteUObject); in init()
245 uhash_close(fNamedCaptureMap); in zap()
246 fNamedCaptureMap = NULL; in zap()
617 int32_t number = uhash_geti(fNamedCaptureMap, &groupName); in groupNumberFromName()
865 if (uhash_count(fNamedCaptureMap) == 0) { in dumpPattern()
[all …]
Dregexcmp.cpp490 …int32_t previousMapping = uhash_puti(fRXPat->fNamedCaptureMap, fCaptureName, groupNumber, fStatus); in doParseActions()
1331 int32_t groupNumber = uhash_geti(fRXPat->fNamedCaptureMap, fCaptureName); in doParseActions()
Duregex.cpp1507 groupNum = uhash_geti(regexp->fPat->fNamedCaptureMap, &groupName); in appendReplacement()
Drematch.cpp432 groupNum = uhash_geti(fPattern->fNamedCaptureMap, &groupName); in appendReplacement()
/external/icu/icu4c/source/i18n/unicode/
Dregex.h627 UHashtable *fNamedCaptureMap; // Map from capture group names to numbers. variable