Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Drepattrn.cpp142 while (const UHashElement *hashEl = uhash_nextElement(other.fNamedCaptureMap, &hashPos)) { in operator =()
152 uhash_puti(fNamedCaptureMap, key, val, &fDeferredStatus); in operator =()
185 fNamedCaptureMap = NULL; in init()
194 fNamedCaptureMap = uhash_open(uhash_hashUnicodeString, // Key hash function in init()
202 fInitialChars == NULL || fInitialChars8 == NULL || fNamedCaptureMap == NULL) { in init()
211 uhash_setKeyDeleter(fNamedCaptureMap, uprv_deleteUObject); in init()
249 uhash_close(fNamedCaptureMap); in zap()
250 fNamedCaptureMap = NULL; in zap()
621 int32_t number = uhash_geti(fNamedCaptureMap, &groupName); in groupNumberFromName()
838 if (uhash_count(fNamedCaptureMap) == 0) { in dumpPattern()
[all …]
Dregexcmp.cpp493 …int32_t previousMapping = uhash_puti(fRXPat->fNamedCaptureMap, fCaptureName, groupNumber, fStatus); in doParseActions()
1334 int32_t groupNumber = uhash_geti(fRXPat->fNamedCaptureMap, fCaptureName); in doParseActions()
Duregex.cpp1509 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.h629 UHashtable *fNamedCaptureMap; // Map from capture group names to numbers. variable