Home
last modified time | relevance | path

Searched refs:_match (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
DMakefile.in75 $(CPP) match.S > _match.s
76 $(CC) -c _match.s
77 mv _match.o match.o
78 rm -f _match.s
125 _match.s maketree contrib/infback9/*.o
DMakefile75 $(CPP) match.S > _match.s
76 $(CC) -c _match.s
77 mv _match.o match.o
78 rm -f _match.s
125 _match.s maketree contrib/infback9/*.o
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
DAParser.h195 int _match(ANTLRTokenType, ANTLRChar **, ANTLRTokenType *,
294 if ( !_match((ANTLRTokenType)_t, &zzMissText, &zzMissTok, \
DAParser.cpp280 _match(ANTLRTokenType _t, ANTLRChar **MissText, in _match() function in ANTLRParser
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
DAParser.h195 int _match(ANTLRTokenType, ANTLRChar **, ANTLRTokenType *,
300 if ( !_match((ANTLRTokenType)_t, &zzMissText, &zzMissTok, \
DAParser.cpp289 _match(ANTLRTokenType _t, ANTLRChar **MissText, in _match() function in ANTLRParser
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dimaplib.py920 if self._match(self.tagre, resp):
933 if not self._match(Untagged_response, resp):
934 if self._match(Untagged_status, resp):
940 if self._match(Continuation, resp):
953 while self._match(Literal, dat):
975 if typ in ('OK', 'NO', 'BAD') and self._match(Response_code, dat):
1026 def _match(self, cre, s): member in IMAP4