/external/pcre/dist/ |
H A D | pcre_xclass.c | 70 BOOL negated = (*data & XCL_NOT) != 0; local 86 if ((*data & XCL_MAP) == 0) return negated; 91 return !negated; /* char found */ 113 if (c == x) return !negated; 129 if (c >= x && c <= y) return !negated; 141 if (isprop) return !negated; 146 prop->chartype == ucp_Lt) == isprop) return !negated; 151 return !negated; 155 if ((data[1] == prop->chartype) == isprop) return !negated; 159 if ((data[1] == prop->script) == isprop) return !negated; [all...] |
H A D | pcre_compile.c | 1043 BOOL braced, negated, overflow; local 1145 negated = TRUE; 1148 else negated = FALSE; 1182 if (negated) 2089 map. This includes negated single high-valued characters. The length in 2252 map. This includes negated single high-valued characters. The length in 2542 cannot be represented just by a bit map. This includes negated single 2821 negated TRUE if it's a negated property (\P or \p{^) 2828 BOOL negated) 2827 check_char_prop(pcre_uint32 c, unsigned int ptype, unsigned int pdata, BOOL negated) argument 5236 BOOL negated; local 8027 BOOL negated; local [all...] |
/external/chromium-trace/catapult/netlog_viewer/netlog_viewer/ |
H A D | source_filter_parser.js | 28 var negated = filterList[i].negated; 30 var sort = parseSortDirective_(filterElement, negated); 38 var filter = parseRestrictDirective_(filterElement, negated); 40 filter = parseStringDirective_(filterElement, negated); 42 if (negated) { 50 textFilters.push({ text: filterElement, negated: negated }); 135 * {parsed, original, negated} values that correspond to substrings of the 147 var negated [all...] |
/external/v8/test/mjsunit/ |
H A D | unicodelctest-no-optimization.js | 111 var negated = (last & 2) != 0; 112 var prefix = negated ? "[^" : "["; 115 retest(re, (ranges[j] - 1), negated); 116 retest(re, (ranges[j]), negated); 117 retest(re, (ranges[j] + 1), negated); 123 function retest(re, code, negated) { 125 assertTrue(negated != (!!re.test(s) == !!fuzz_answer[fuzz_index++]));
|
H A D | unicodelctest.js | 109 var negated = (last & 2) != 0; 110 var prefix = negated ? "[^" : "["; 113 retest(re, (ranges[j] - 1), negated); 114 retest(re, (ranges[j]), negated); 115 retest(re, (ranges[j] + 1), negated); 121 function retest(re, code, negated) { 123 assertTrue(negated != (!!re.test(s) == !!fuzz_answer[fuzz_index++]));
|
/external/openssh/ |
H A D | match.c | 122 int negated; local 128 /* Check if the subpattern is negated. */ 130 negated = 1; 133 negated = 0; 157 if (negated)
|
H A D | auth-rhosts.c | 87 int negated; local 127 negated = 0; 129 /* Process negated host names, or positive netgroups. */ 131 negated = 1; 137 negated = 1; 168 /* If the entry was negated, deny access. */ 169 if (negated) {
|
H A D | readconf.c | 752 int negated, opcode, *intptr, value, value2, cmdline = 0; local 1204 negated = *arg == '!'; 1205 if (negated) 1208 if (negated) { 1210 "block because of negated match "
|
/external/icu/icu4c/source/i18n/ |
H A D | regexcmp.h | 124 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
|
H A D | plurrule.cpp | 492 curAndConstraint->negated=TRUE; 496 curAndConstraint->negated=TRUE; 727 negated = FALSE; 745 this->negated=other.negated; 796 if (negated) { 942 if (andRule->negated) { 957 if (andRule->negated) { 969 if (andRule->negated) {
|
H A D | plurrule_impl.h | 229 UBool negated; // TRUE for negated rules. member in class:AndConstraint
|
H A D | regexcmp.cpp | 678 // Compile a (?<! negated look-behind open paren. 4233 UBool negated = (fC.fChar == chP); 4253 uset = createSetForProperty(propertyName, negated); 4304 UBool negated = FALSE; 4306 // Check for and consume the '^' in a negated POSIX property, e.g. [:^Letter:] 4309 negated = TRUE; 4332 uset = createSetForProperty(propName, negated); 4367 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { 4379 if (negated) { 4410 if (negated) { [all...] |
/external/regex-re2/re2/ |
H A D | parse.cc | 1511 // (the latter is a negated group). 1525 int sign = +1; // -1 = negated char class 1659 // Parses a possibly-negated character class expression like [^abx-z[:digit:]]. 1672 bool negated = false; local 1678 negated = true; 1681 // negated classes include a leading \n. 1762 if (negated) 1852 bool negated = false; local 1868 if (negated) 1876 if (negated) [all...] |
/external/mesa3d/src/gallium/drivers/nvc0/ |
H A D | nvc0_query.c | 434 boolean negated = FALSE; local 449 cond = negated ? NVC0_3D_COND_MODE_EQUAL : 455 if (likely(!negated)) {
|
/external/proguard/src/proguard/ |
H A D | ConfigurationParser.java | 590 boolean negated = 593 String strippedWord = negated ? 634 if (!negated)
|
/external/v8/src/crankshaft/ |
H A D | hydrogen-instructions.cc | 1297 static bool MatchLeftIsOnes(HValue* l, HValue* r, HValue** negated) { argument 1299 *negated = r; 1304 static bool MatchNegationViaXor(HValue* instr, HValue** negated) { argument 1308 (MatchLeftIsOnes(b->left(), b->right(), negated) || 1309 MatchLeftIsOnes(b->right(), b->left(), negated)); 1314 HValue* negated; local 1315 return MatchNegationViaXor(instr, &negated) && 1316 MatchNegationViaXor(negated, arg);
|
/external/caliper/lib/ |
H A D | joda-time-2.1.jar | META-INF/ META-INF/MANIFEST.MF org/ org/joda/ org/joda/time/ org/joda/time/base/ ... |
/external/pcre/dist/sljit/ |
H A D | sljitNativeARM_64.c | 351 sljit_si negated, ones, right; local 379 negated = 0; 381 negated = 1; 405 if (negated)
|
/external/libvpx/libvpx/build/make/ |
H A D | configure.sh | 107 All boolean options can be negated. The default value is the opposite
|
/external/guice/lib/build/ |
H A D | bnd-0.0.384.jar | META-INF/MANIFEST.MF LICENSE OSGI-OPT/ OSGI-OPT/bnd.bnd OSGI-OPT/ ... |
/external/ImageMagick/www/api/ |
H A D | enhance.php | 643 <p>NegateImage() negates the colors in the reference image. The grayscale option means that only grayscale values within the image are negated.</p>
|
/external/v8/src/regexp/ |
H A D | jsregexp.cc | 5165 ZoneList<CharacterRange>* negated = local 5167 CharacterRange::Negate(ranges, negated, zone); 5168 ranges = negated;
|
/external/owasp/sanitizer/tools/findbugs/lib/ |
H A D | commons-lang-2.6.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ... |
/external/guice/extensions/struts2/lib/ |
H A D | xwork-core-2.2.1.jar | META-INF/ META-INF/MANIFEST.MF xwork-validator-definition-1.0.dtd xwork ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |