HomeSort by relevance Sort by last modified time
    Searched refs:negated (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/pcre/dist2/src/
pcre2_xclass.c 72 BOOL negated = (*data & XCL_NOT) != 0; local
87 if ((*data & XCL_MAP) == 0) return negated;
92 return !negated; /* char found */
114 if (c == x) return !negated;
130 if (c >= x && c <= y) return !negated;
142 if (isprop) return !negated;
147 prop->chartype == ucp_Lt) == isprop) return !negated;
152 return !negated;
156 if ((data[1] == prop->chartype) == isprop) return !negated;
160 if ((data[1] == prop->script) == isprop) return !negated;
    [all...]
pcre2_auto_possess.c 190 negated TRUE if it's a negated property (\P or \p{^)
197 BOOL negated)
207 prop->chartype == ucp_Lt) == negated;
210 return (pdata == PRIV(ucp_gentype)[prop->chartype]) == negated;
213 return (pdata == prop->chartype) == negated;
216 return (pdata == prop->script) == negated;
222 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == negated;
234 return negated;
237 return (PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == negated;
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7648.go 7 // Issue 7648: spurious "bad negated constant" for complex constants.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7648.go 7 // Issue 7648: spurious "bad negated constant" for complex constants.
  /external/curl/docs/cmdline-opts/
no-keepalive.d 7 Note that this is the negated option name documented. You can thus use
no-buffer.d 10 Note that this is the negated option name documented. You can thus use
  /toolchain/binutils/binutils-2.27/binutils/testsuite/lib/
binutils-common.exp 322 set negated [expr { [string index $line_b 0] == "!" }]
323 set line_bx [string range $line_b $negated end]
324 set n [expr { $negated ? "! " : "" }]
330 while { [expr [regexp "^$line_bx$" "$line_a"] == $negated] } {
360 set negated [expr { [string index $line_b 0] == "!" }]
361 set line_bx [string range $line_b $negated end]
362 set n [expr { $negated ? "! " : "" }]
363 set s [expr { $negated ? " " : "" }]
369 if { [expr [regexp "^$line_bx$" "$line_a"] == $negated] } {
  /prebuilts/go/darwin-x86/src/regexp/syntax/
doc.go 21 [^xyz] negated character class
23 \D negated Perl character class
25 [[:^alpha:]] negated ASCII character class
28 \PN negated Unicode character class (one-letter name)
29 \P{Greek} negated Unicode character class
102 [^[:name:]] named ASCII class inside negated character class (== [:^name:])
104 [^\p{Name}] named Unicode property inside negated character class (== \P{Name})
  /prebuilts/go/linux-x86/src/regexp/syntax/
doc.go 21 [^xyz] negated character class
23 \D negated Perl character class
25 [[:^alpha:]] negated ASCII character class
28 \PN negated Unicode character class (one-letter name)
29 \P{Greek} negated Unicode character class
102 [^[:name:]] named ASCII class inside negated character class (== [:^name:])
104 [^\p{Name}] named Unicode property inside negated character class (== \P{Name})
  /libcore/ojluni/src/main/java/java/time/chrono/
ChronoPeriod.java 244 * Returns a new instance with each amount in this period negated.
246 * This returns a period with each supported unit individually negated.
248 * negated to "-2 years, 3 months and -4 days".
251 * @return a {@code ChronoPeriod} based on this period with the amounts negated, not null
255 default ChronoPeriod negated() { method in interface:ChronoPeriod
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
BusinessLogicFactory.java 162 boolean negated = false;
165 negated = true; // change "negated" property to true
173 ruleConditions.add(new BusinessLogicRuleCondition(methodName, methodArgs, negated));
179 ruleConditions.add(new BusinessLogicRuleCondition(methodName, methodArgs, negated));
BusinessLogic.java 290 boolean negated) {
293 mNegated = negated;
300 // XOR the negated boolean with the return value of the method
  /frameworks/base/core/java/android/net/util/
IpUtils.java 78 int negated = ~sum; local
79 return intAbs((short) negated);
  /external/icu/icu4c/source/i18n/
regexcmp.h 127 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
plurrule.cpp 513 curAndConstraint->negated=TRUE;
517 curAndConstraint->negated=TRUE;
749 negated = FALSE;
767 this->negated=other.negated;
820 if (negated) {
966 if (andRule->negated) {
981 if (andRule->negated) {
993 if (andRule->negated) {
    [all...]
plurrule_impl.h 309 UBool negated; // TRUE for negated rules. member in class:AndConstraint
  /prebuilts/go/darwin-x86/src/path/filepath/
match.go 141 // possibly negated
142 negated := chunk[0] == '^'
143 if negated {
169 if match == negated {
  /prebuilts/go/linux-x86/src/path/filepath/
match.go 141 // possibly negated
142 negated := chunk[0] == '^'
143 if negated {
169 if match == negated {
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKDuration.java 651 assertEquals(test, Duration.ofSeconds(expectedSeconds, expectedNanoOfSecond).negated());
785 assertEquals(Duration.between(end, start), Duration.between(start, end).negated());
805 assertEquals(Duration.between(end, start), Duration.between(start, end).negated());
2379 assertEquals(Duration.ofSeconds(0).negated(), Duration.ofSeconds(0)); method
2380 assertEquals(Duration.ofSeconds(12).negated(), Duration.ofSeconds(-12)); method
2381 assertEquals(Duration.ofSeconds(-12).negated(), Duration.ofSeconds(12)); method
2382 assertEquals(Duration.ofSeconds(12, 20).negated(), Duration.ofSeconds(-12, -20)); method
2383 assertEquals(Duration.ofSeconds(12, -20).negated(), Duration.ofSeconds(-12, 20)); method
2384 assertEquals(Duration.ofSeconds(-12, -20).negated(), Duration.ofSeconds(12, 20)); method
2385 assertEquals(Duration.ofSeconds(-12, 20).negated(), Duration.ofSeconds(12, -20)); method
    [all...]
TCKPeriod.java 362 assertEquals(p, expected.negated());
936 assertPeriod(Period.of(0, 0, 0).negated(), 0 ,0, 0); method
937 assertPeriod(Period.of(1, 2, 3).negated(), -1, -2, -3); method
938 assertPeriod(Period.of(-1, -2, -3).negated(), 1, 2, 3); method
939 assertPeriod(Period.of(-1, 2, -3).negated(), 1, -2, 3); method
    [all...]
  /libcore/ojluni/src/main/java/java/time/
Duration.java 345 * or positive symbol. If negative, the whole period is negated.
438 return ofSeconds(seconds, nanos).negated();
1017 public Duration negated() { method in class:Duration
    [all...]
  /prebuilts/go/darwin-x86/src/index/suffixarray/
qsufsort.go 45 sl := 0 // sl is negated length of sorted groups
49 sl += s // add negated length to sl
  /prebuilts/go/linux-x86/src/index/suffixarray/
qsufsort.go 45 sl := 0 // sl is negated length of sorted groups
49 sl += s // add negated length to sl
  /prebuilts/go/darwin-x86/src/path/
match.go 127 // possibly negated
  /prebuilts/go/linux-x86/src/path/
match.go 127 // possibly negated

Completed in 729 milliseconds

1 2 3 4