Searched refs:pattern (Results 1 - 25 of 1074) sorted by last modified time

1234567891011>>

/macosx-10.10/ppp-786.1.1/Controller/
H A Dipsec_manager.c2459 CFStringRef pattern; local
2498 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL,
2502 CFArrayAppendValue(patterns, pattern);
2503 CFRelease(pattern);
2505 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL,
2509 CFArrayAppendValue(patterns, pattern);
2510 CFRelease(pattern);
/macosx-10.10/llvmCore-3425.0.34/utils/lit/lit/
H A DTestFormats.py145 pattern=".*", useTempInput=False):
154 self.pattern = re.compile(pattern)
173 not self.pattern.match(filename) or
/macosx-10.10/llvmCore-3425.0.34/utils/unittest/googletest/
H A Dgtest-death-test.cc520 << " Expected: " << regex()->pattern() << "\n"
H A Dgtest.cc428 // Returns true iff the wildcard pattern matches the string. The
429 // first ':' or '\0' character in pattern marks the end of it.
433 bool UnitTestOptions::PatternMatchesString(const char *pattern, argument
435 switch (*pattern) {
437 case ':': // Either ':' or '\0' marks the end of the pattern.
440 return *str != '\0' && PatternMatchesString(pattern + 1, str + 1);
442 return (*str != '\0' && PatternMatchesString(pattern, str + 1)) ||
443 PatternMatchesString(pattern + 1, str);
445 return *pattern == *str &&
446 PatternMatchesString(pattern
[all...]
/macosx-10.10/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal-inl.h377 // Returns true iff the wildcard pattern matches the string. The
378 // first ':' or '\0' character in pattern marks the end of it.
382 static bool PatternMatchesString(const char *pattern, const char *str);
919 GTEST_API_ bool AtomMatchesChar(bool escaped, char pattern, char ch);
H A Dgtest-port.h818 RE(const RE& other) { Init(other.pattern()); }
833 const char* pattern() const { return pattern_; } function in class:testing::internal::RE
/macosx-10.10/llvmCore-3425.0.34/utils/Misc/
H A Dzkill23 def re_full_match(pattern, str):
24 m = re.match(pattern, str)
/macosx-10.10/llvmCore-3425.0.34/utils/TableGen/
H A DDAGISelMatcher.h1 //===- DAGISelMatcher.h - Representation of DAG pattern matcher -----------===//
398 /// to see if the entire pattern is capable of matching. This predicate does
673 CheckComplexPatMatcher(const ComplexPattern &pattern, unsigned matchnumber, argument
675 : Matcher(CheckComplexPat), Pattern(pattern), MatchNumber(matchnumber),
688 // Not safe to move a pattern predicate past a complex pattern.
751 /// (which defines a chain operand) is safe to fold into a larger pattern.
871 /// matched pattern that have chain input/outputs. This node adds all input
872 /// chains of these nodes if they are not themselves a node in the pattern.
965 /// operands in the root of the pattern
1041 MorphNodeToMatcher(const std::string &opcodeName, const MVT::SimpleValueType *vts, unsigned numvts, const unsigned *operands, unsigned numops, bool hasChain, bool hasInFlag, bool hasOutFlag, bool hasmemrefs, int numfixedarityoperands, const PatternToMatch &pattern) argument
1095 CompleteMatchMatcher(const unsigned *results, unsigned numresults, const PatternToMatch &pattern) argument
[all...]
H A DDAGISelMatcherGen.cpp86 /// physreg input to the pattern. The first elt is the Register node, the
87 /// second is the recorded slot number the input pattern match saved it in.
97 MatcherGen(const PatternToMatch &pattern, const CodeGenDAGPatterns &cgp);
125 /// GetInstPatternNode - Get the pattern for an instruction.
143 MatcherGen::MatcherGen(const PatternToMatch &pattern, argument
145 : Pattern(pattern), CGP(cgp), NextRecordedOperandNo(0),
147 // We need to produce the matcher tree for the patterns source pattern. To do
153 // To figure out the fewest number of type checks needed, clone the pattern,
154 // remove the types, then perform type inference on the pattern as a whole.
166 /// InferPossibleTypes - As we emit the pattern, w
[all...]
/macosx-10.10/llvmCore-3425.0.34/projects/sample/autoconf/
H A Dltmain.sh3716 $echo "*** with $libname but no candidates were found. (...for regex pattern test)"
3719 $echo "*** using a regex pattern. Last file checked: $potlib"
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A Dregcomp.c157 llvm_regcomp(llvm_regex_t *preg, const char *pattern, int cflags) argument
175 if (preg->re_endp < pattern)
177 len = preg->re_endp - pattern;
179 len = strlen((const char *)pattern);
196 p->next = (char *)pattern; /* convenience; we do not modify it */
/macosx-10.10/llvmCore-3425.0.34/autoconf/
H A Dltmain.sh3716 $echo "*** with $libname but no candidates were found. (...for regex pattern test)"
3719 $echo "*** using a regex pattern. Last file checked: $potlib"
/macosx-10.10/libdispatch-442.1.4/src/
H A Dvoucher.c1184 const uint64_t pattern = 0xFACEFACEFACEFACE; local
1187 memset_pattern8((char*)buffer + sizeof(buffer->vabh_flags), &pattern,
/macosx-10.10/configd-699.1.5/SystemConfiguration.fproj/
H A DSCNetworkInterface.c3244 CFStringRef pattern; local
3249 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL, kSCDynamicStoreDomainState, kSCCompAnyRegex, kSCEntNetPPP);
3250 CFArrayAppendValue(patterns, pattern);
3251 CFRelease(pattern);
3252 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL, kSCDynamicStoreDomainSetup, kSCCompAnyRegex, kSCEntNetInterface);
3253 CFArrayAppendValue(patterns, pattern);
3254 CFRelease(pattern);
H A DSCNetworkReachability.c535 CFStringRef pattern; local
547 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL,
551 CFArrayAppendValue(patterns, pattern);
552 CFRelease(pattern);
553 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL,
557 CFArrayAppendValue(patterns, pattern);
558 CFRelease(pattern);
566 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL,
570 CFArrayAppendValue(patterns, pattern);
571 CFRelease(pattern);
[all...]
/macosx-10.10/configd-699.1.5/Plugins/IPMonitor/
H A Ddns-configuration.c1765 CFStringRef pattern; local
1783 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL,
1787 CFArrayAppendValue(patterns, pattern);
1788 CFRelease(pattern);
1789 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL,
1793 CFArrayAppendValue(patterns, pattern);
1794 CFRelease(pattern);
1795 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL,
1799 CFArrayAppendValue(patterns, pattern);
1800 CFRelease(pattern);
[all...]
H A Dip_plugin.c5305 CFStringRef pattern; local
5307 pattern = state_service_key(service_id,
5309 CFArrayAppendValue(patterns, pattern);
5310 CFRelease(pattern);
5330 CFStringRef pattern; local
5331 pattern = setup_service_key(kSCCompAnyRegex, *reachabilitySetupKeys[i]);
5332 CFArrayAppendValue(patterns, pattern);
5333 CFRelease(pattern);
5341 CFStringRef pattern; local
5343 pattern
5351 CFStringRef pattern; local
7975 CFStringRef pattern; local
[all...]
/macosx-10.10/configd-699.1.5/Plugins/Logger/
H A Dlogger.c879 CFStringRef pattern; local
892 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL, kSCDynamicStoreDomainSetup, kSCCompAnyRegex, entity);
893 CFArrayAppendValue(patterns, pattern);
894 CFRelease(pattern);
896 pattern = SCDynamicStoreKeyCreateNetworkServiceEntity(NULL, kSCDynamicStoreDomainState, kSCCompAnyRegex, entity);
897 CFArrayAppendValue(patterns, pattern);
898 CFRelease(pattern);
902 pattern = SCDynamicStoreKeyCreateNetworkInterfaceEntity(NULL, kSCDynamicStoreDomainState, kSCCompAnyRegex, entity);
903 CFArrayAppendValue(patterns, pattern);
904 CFRelease(pattern);
[all...]
/macosx-10.10/configd-699.1.5/Plugins/PreferencesMonitor/
H A Dprefsmon.c470 CFStringRef pattern; local
481 pattern = CFStringCreateWithFormat(NULL,
485 CFArrayAppendValue(patterns, pattern);
488 CFRelease(pattern);
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dparse.y302 PATTERN_LIST *pattern;
334 %type <word_list> word_list pattern
335 %type <pattern> pattern_list case_clause_sequence case_clause
821 pattern_list: newline_list pattern ')' compound_list
823 | newline_list pattern ')' newline_list
825 | newline_list '(' pattern ')' compound_list
827 | newline_list '(' pattern ')' newline_list
836 pattern: WORD label
838 | pattern '|' WORD
1017 #define PST_CASEPAT 0x0001 /* in a case pattern lis
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A DStaticCode.cpp917 string pattern = cfString(key, errSecCSResourceRulesInvalid);
918 if (pattern == catchAllRule && value == kCFBooleanTrue) {
H A Ddirscanner.cpp162 DirValidator::Rule::Rule(const string &pattern, uint32_t flags, TargetPatternBuilder targetBlock) argument
163 : ResourceBuilder::Rule(pattern, 0, flags), mTargetBlock(NULL)
179 string pattern = mTargetBlock(path, target); local
180 if (pattern.empty())
181 return true; // always match empty pattern
182 secdebug("dirval", "%s: match target %s against %s", path, target, pattern.c_str());
184 if (::regcomp(&re, pattern.c_str(), REG_EXTENDED | REG_NOSUB))
H A Ddirscanner.h72 Rule(const std::string &pattern, uint32_t flags, TargetPatternBuilder targetBlock);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A DStaticCode.cpp917 string pattern = cfString(key, errSecCSResourceRulesInvalid);
918 if (pattern == catchAllRule && value == kCFBooleanTrue) {
H A Ddirscanner.cpp162 DirValidator::Rule::Rule(const string &pattern, uint32_t flags, TargetPatternBuilder targetBlock) argument
163 : ResourceBuilder::Rule(pattern, 0, flags), mTargetBlock(NULL)
179 string pattern = mTargetBlock(path, target); local
180 if (pattern.empty())
181 return true; // always match empty pattern
182 secdebug("dirval", "%s: match target %s against %s", path, target, pattern.c_str());
184 if (::regcomp(&re, pattern.c_str(), REG_EXTENDED | REG_NOSUB))

Completed in 413 milliseconds

1234567891011>>