Searched refs:match (Results 1 - 25 of 67) sorted by path

123

/haiku/3rdparty/mmu_man/irc/Haiku/
H A Dgen_err_list.py16 match = re.match(r'#\s?define\s+(?P<define>\w+)\s+(?P<expr>.+)', line) variable
17 if match:
18 define = match.groupdict().get("define")
19 expr = match.groupdict().get("expr")
31 m = re.match(r"B_TO_POSIX_ERROR\((?P<expr>.*)\)", expr)
37 m = re.match(r"B_FROM_POSIX_ERROR\((?P<expr>.*)\)", expr)
43 m = re.match(r"\((?P<expr>.*)\)", expr)
49 m = re.match(r"(?P<expr>\w+)$", expr)
57 m = re.match(
94 match = re.match(r'\\t*case (?P<define>\\w+):', line) variable
98 match = re.match(r'\\t*//\\s+(?P<define>\\w+):*$', line) variable
103 match = re.match(r'\\t*return "(?P<str>.+)";', line) variable
[all...]
/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php52 // size of the java applet, must match the default resolution of the image.
/haiku/build/scripts/
H A Ddetermine_haiku_revision32 revision=`git describe --dirty --tags --match=hrev* --abbrev=1`
/haiku/headers/private/file_systems/
H A DQueryParserUtils.h26 enum match { enum in namespace:QueryParser
/haiku/src/add-ons/kernel/bus_managers/firewire/
H A Dfwohcireg.h212 fwohcireg_t match; member in struct:ohci_dma
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/
H A Dar9285_reset.c666 HAL_BOOL match; local
680 match = ath_ee_getLowerUpperIndex((uint8_t)FREQ2FBIN(centers.synth_center,
683 if (match) {
H A Dar9287_olc.c111 HAL_BOOL match; local
121 match = ath_ee_getLowerUpperIndex(
125 if (match) {
/haiku/src/apps/cortex/TipManager/
H A DTipManagerImpl.cpp254 // match the given point (in target's view coordinates)
257 pair<BView*, const tip_entry*> _ViewEntry::match( function in class:_ViewEntry
267 // match, and stop recursing here; children can't have tips.
272 // match against tips for my target view
281 // match:
298 pair<BView*, const tip_entry*> ret = entry->match(
449 // match the given point (in screen coordinates)
452 pair<BView*, const tip_entry*> _WindowEntry::match( function in class:_WindowEntry
463 "!!! _WindowEntry::match(): unexpected window for target view (%p)\n",
469 pair<BView*,const tip_entry*> ret = (*it)->match(
[all...]
H A DTipManagerImpl.h175 // match the given point (in target's view coordinates)
178 std::pair<BView*, const tip_entry*> match(
239 // match the given point (in screen coordinates)
242 std::pair<BView*, const tip_entry*> match(
/haiku/src/apps/poorman/libhttpd/
H A Dmatch.c0 /* match.c - simple shell-style filename matcher
33 #include "match.h"
38 match( const char* pattern, const char* string ) function
H A Dmatch.h0 /* match.h - simple shell-style filename patcher
38 extern int match( const char* pattern, const char* string );
/haiku/src/bin/unzip/
H A Dbeos.c78 /* Function do_wild() */ /* for porting: dir separator; match(ignore_case) */
128 continue; /* Unix: '*' and '?' do not match leading dot */
129 if (match(file->d_name, wildname, 0)) { /* 0 == case sens. */
163 continue; /* Unix: '*' and '?' do not match leading dot */
164 if (match(file->d_name, wildname, 0)) { /* 0 == don't ignore case */
H A Dextract.c447 if (match(G.filename, G.pfnames[i], uO.C_flag)) {
451 break; /* found match, so stop looping */
456 if (match(G.filename, G.pxnames[i], uO.C_flag)) {
H A Dfileio.c2497 unsigned char *match = NULL; local
2499 if (*str == c) {match = (unsigned char *)str;}
2502 return match;
H A Dlist.c183 * filename in order for unzip to consider it a match. Speaking of
185 * with match() to see if the current file is one of them, and make a
212 if (match(G.filename, G.pfnames[i], uO.C_flag)) {
214 break; /* found match, so stop looping */
218 if (match(G.filename, G.pxnames[i], uO.C_flag)) {
219 do_this_file = FALSE; /* ^-- ignore case in match */
565 if (match(G.filename, G.pfnames[i], uO.C_flag)) {
567 break; /* found match, so stop looping */
571 if (match(G.filename, G.pxnames[i], uO.C_flag)) {
572 do_this_file = FALSE; /* ^-- ignore case in match */
[all...]
H A Dmatch.c11 match.c
13 The match() routine recursively compares a string to a "pattern" (regular
14 expression), returning TRUE if a match is found or FALSE if not. This
15 version is specifically for use with unzip.c: as did the previous match()
22 GRR: reversed order of text, pattern in matche() (now same as match());
45 match(string, pattern, ignore_case);
60 side or outside a [..] construct, and match the character exactly, precede
78 #ifndef THEOS /* the Theos port defines its own variant of match() */
108 #define match(s,p,ic) (recmatch((ZCONST uch *)p,(ZCONST uch *)s,ic) == 1)
117 /* match() i
119 int match(string, pattern, ignore_case) function
[all...]
H A Dunzip.h340 typedef unsigned long ulg; /* predefined on some systems) & match zip */
414 int C_flag; /* -C: match filenames case-insensitively */
572 #define UzpMatch match
H A Dunzpriv.h2022 int match OF((ZCONST char *s, ZCONST char *p,
2023 int ic)); /* match.c */
2024 int iswild OF((ZCONST char *p)); /* match.c */
2115 # define ToLower tolower /* assumed "smart"; used in match() */
H A Dzipinfo.c337 (May not match OS/2 \"dir\" amount due to storage method)";
471 case ('C'): /* -C: match filenames case-insensitively */
779 if (match(G.filename, G.pfnames[i], uO.C_flag)) {
783 break; /* found match, so stop looping */
787 if (match(G.filename, G.pxnames[i], uO.C_flag)) {
788 do_this_file = FALSE; /* ^-- ignore case in match */
/haiku/src/kits/tracker/
H A DTrackerString.cpp169 // (Makes it possible to match a '[' with the expression '[[]').
180 bool match = false; local
188 while (!match && *pattern != ']' && *pattern != '\0') {
205 match = start <= testChar && testChar <= stop;
216 match = UTF8CharsAreEqual(string, pattern);
218 match = CharsAreEqual(testChar, *pattern, caseSensitivity);
222 if (!match) {
234 return (match ^ inverse) != 0;
280 bool match = false; local
286 while (!match
[all...]
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_ageq.h55 struct ieee80211_node *match);
/haiku/src/servers/app/
H A DDelayedMessage.cpp206 DelayedMessage::SetMerge(DMMergeMode mode, uint32 match) argument
211 fData->SetMerge(mode, match);
344 // Search for a match by value.
486 // Default-policy: all data must match
492 // Default Policy: no data needs to match
H A DDelayedMessage.h25 //! Merge-mode data-matching, set which data must match to merge messages.
81 void SetMerge(DMMergeMode mode, uint32 match = 0);
/haiku/src/servers/keystore/
H A DKeyring.cpp323 // We didn't find an exact match.
368 bool match = true;
374 match = subkeyType == type;
377 if (match && purpose != B_KEY_PURPOSE_ANY) {
384 match = subkeyPurpose == purpose;
387 if (match) {
440 // We require an exact match.
/haiku/src/system/boot/loader/file_systems/fat/
H A DDirectory.h52 uint8 mask = FAT_VOLUME, uint8 match = 0);

Completed in 289 milliseconds

123