/external/proguard/src/proguard/gui/ |
D | FilterBuilder.java | 54 StringBuffer negative = new StringBuffer(); in buildFilter() local 56 buildFilter("", positive, negative); in buildFilter() 58 return positive.length() <= negative.length() ? in buildFilter() 60 negative.toString(); in buildFilter() 74 StringBuffer negative) in buildFilter() argument 120 if (negative.length() > 0) in buildFilter() 122 negative.append(','); in buildFilter() 124 negative.append(prefix); in buildFilter() 128 negative.append('*'); in buildFilter() 189 if (negative.length() > 0 && in buildFilter() [all …]
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/ |
D | JoyAxisTrigger.java | 40 private final boolean negative; field in JoyAxisTrigger 46 public JoyAxisTrigger(int joyId, int axisId, boolean negative) { in JoyAxisTrigger() argument 49 this.negative = negative; in JoyAxisTrigger() 52 public static int joyAxisHash(int joyId, int joyAxis, boolean negative){ in joyAxisHash() argument 54 return (2048 * joyId) | (negative ? 1280 : 1024) | (joyAxis & 0xff); in joyAxisHash() 66 return negative; in isNegative() 70 return "JoyAxis[joyId="+joyId+", axisId="+axisId+", neg="+negative+"]"; in getName() 74 return joyAxisHash(joyId, axisId, negative); in triggerHashCode()
|
D | MouseAxisTrigger.java | 47 private boolean negative; field in MouseAxisTrigger 56 public MouseAxisTrigger(int mouseAxis, boolean negative){ in MouseAxisTrigger() argument 61 this.negative = negative; in MouseAxisTrigger() 69 return negative; in isNegative() 73 String sign = negative ? "Negative" : "Positive"; in getName() 82 public static int mouseAxisHash(int mouseAxis, boolean negative){ in mouseAxisHash() argument 84 return (negative ? 768 : 512) | (mouseAxis & 0xff); in mouseAxisHash() 88 return mouseAxisHash(mouseAxis, negative); in triggerHashCode()
|
/external/v8/src/ |
D | conversions-inl.h | 66 bool negative = x < 0; in FastD2UI() local 67 if (negative) { in FastD2UI() 76 return negative ? ~result + 1 : result; in FastD2UI() 138 bool negative, in InternalStringToIntDouble() argument 145 if (current == end) return SignedZero(negative); in InternalStringToIntDouble() 223 if (negative) { in InternalStringToIntDouble() 233 return static_cast<double>(negative ? -number : number) * pow(2.0, exponent); in InternalStringToIntDouble() 249 bool negative = false; in InternalStringToInt() local 263 negative = true; in InternalStringToInt() 270 if (current == end) return SignedZero(negative); in InternalStringToInt() [all …]
|
D | conversions.cc | 124 bool negative = false; in IntToCString() local 128 negative = true; in IntToCString() 138 if (negative) buffer[--i] = '-'; in IntToCString() 150 bool negative = false; in DoubleToFixedCString() local 154 negative = true; in DoubleToFixedCString() 203 if (negative) builder.AddCharacter('-'); in DoubleToFixedCString() 216 bool negative, in CreateExponentialRepresentation() argument 230 if (negative) builder.AddCharacter('-'); in CreateExponentialRepresentation() 252 bool negative = false; in DoubleToExponentialCString() local 255 negative = true; in DoubleToExponentialCString() [all …]
|
/external/smack/src/org/xbill/DNS/ |
D | APLRecord.java | 25 public final boolean negative; field in APLRecord.Element 30 Element(int family, boolean negative, Object address, int prefixLength) in Element() argument 33 this.negative = negative; in Element() 50 Element(boolean negative, InetAddress address, int prefixLength) { in Element() argument 51 this(Address.familyOf(address), negative, address, in Element() 58 if (negative) in toString() 77 negative == elt.negative && in equals() 84 return address.hashCode() + prefixLength + (negative ? 1 : 0); in hashCode() 151 boolean negative = (length & 0x80) != 0; in rrFromWire() 164 element = new Element(negative, addr, prefix); in rrFromWire() [all …]
|
/external/chromium_org/v8/src/ |
D | conversions-inl.h | 54 inline double SignedZero(bool negative) { in SignedZero() argument 55 return negative ? uint64_to_double(Double::kSignMask) : 0.0; in SignedZero() 71 bool negative = x < 0; in FastD2UI() local 72 if (negative) { in FastD2UI() 81 return negative ? ~result + 1 : result; in FastD2UI() 143 bool negative, in InternalStringToIntDouble() argument 150 if (current == end) return SignedZero(negative); in InternalStringToIntDouble() 228 if (negative) { in InternalStringToIntDouble() 236 return ldexp(static_cast<double>(negative ? -number : number), exponent); in InternalStringToIntDouble() 252 bool negative = false; in InternalStringToInt() local [all …]
|
D | conversions.cc | 137 bool negative = false; in IntToCString() local 141 negative = true; in IntToCString() 151 if (negative) buffer[--i] = '-'; in IntToCString() 163 bool negative = false; in DoubleToFixedCString() local 167 negative = true; in DoubleToFixedCString() 216 if (negative) builder.AddCharacter('-'); in DoubleToFixedCString() 229 bool negative, in CreateExponentialRepresentation() argument 243 if (negative) builder.AddCharacter('-'); in CreateExponentialRepresentation() 265 bool negative = false; in DoubleToExponentialCString() local 268 negative = true; in DoubleToExponentialCString() [all …]
|
/external/chromium/chrome/browser/autofill/ |
D | autofill_xml_parser_unittest.cc | 216 double negative = 0; in TEST() local 217 AutofillUploadXmlParser parse_handler(&positive, &negative); in TEST() 222 EXPECT_DOUBLE_EQ(0.3, negative); in TEST() 230 double negative = 0; in TEST() local 232 new AutofillUploadXmlParser(&positive, &negative)); in TEST() 237 EXPECT_DOUBLE_EQ(0.3, negative); // Partially parsed. in TEST() 238 negative = 0; in TEST() 242 parse_handler.reset(new AutofillUploadXmlParser(&positive, &negative)); in TEST() 247 EXPECT_DOUBLE_EQ(0, negative); in TEST() 250 parse_handler.reset(new AutofillUploadXmlParser(&positive, &negative)); in TEST() [all …]
|
/external/smali/smali/src/main/java/org/jf/smali/ |
D | LiteralTools.java | 54 boolean negative = false; in parseByte() 57 negative = true; in parseByte() 93 if (negative) { in parseByte() 124 boolean negative = false; in parseShort() 127 negative = true; in parseShort() 163 if (negative) { in parseShort() 188 boolean negative = false; in parseInt() 191 negative = true; in parseInt() 227 if (negative) { in parseInt() 258 boolean negative = false; in parseLong() [all …]
|
/external/guava/guava/src/com/google/common/primitives/ |
D | AndroidInteger.java | 51 boolean negative = string.charAt(i) == '-'; in tryParse() 52 if (negative && ++i == length) { in tryParse() 55 return tryParse(string, i, radix, negative); in tryParse() 60 boolean negative) { in tryParse() argument 77 if (!negative) { in tryParse()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_printf.cc | 45 bool negative) { in AppendNumber() argument 48 RAW_CHECK(base == 10 || !negative); in AppendNumber() 49 RAW_CHECK(absolute_value || !negative); in AppendNumber() 52 if (negative && minimal_num_length) in AppendNumber() 54 if (negative && pad_with_zero) in AppendNumber() 75 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-'); in AppendNumber() 92 bool negative = (num < 0); in AppendSignedDecimal() local 93 return AppendNumber(buff, buff_end, (u64)(negative ? -num : num), 10, in AppendSignedDecimal() 94 minimal_num_length, pad_with_zero, negative); in AppendSignedDecimal()
|
/external/llvm/test/Transforms/InstSimplify/ |
D | 2011-11-23-MaskedBitsCrash.ll | 3 ; The mul can be proved to always overflow (turning a negative value 6 ; be assumed to have a negative value (since if not it has an undefined 7 ; value, which can be taken to be negative). We were reporting the mul 8 ; as being both positive and negative, firing an assertion!
|
/external/libvpx/libvpx/vp8/common/arm/armv6/ |
D | vp8_variance16x16_armv6.asm | 48 sel r6, r9, lr ; select bytes with negative difference 52 usad8 r5, r6, lr ; calculate sum of negative differences 56 subs r8, r8, r5 ; substract negative differences from sum 71 sel r6, r9, lr ; select bytes with negative difference 75 usad8 r5, r6, lr ; calculate sum of negative differences 80 sub r8, r8, r5 ; substract negative differences from sum 95 sel r6, r9, lr ; select bytes with negative difference 99 usad8 r5, r6, lr ; calculate sum of negative differences 104 sub r8, r8, r5 ; substract negative differences from sum 121 sel r6, r9, lr ; select bytes with negative difference [all …]
|
D | vp8_variance_halfpixvar16x16_v_armv6.asm | 54 sel r6, r6, lr ; select bytes with negative difference 58 usad8 r5, r6, lr ; calculate sum of negative differences 62 subs r8, r8, r5 ; substract negative differences from sum 84 sel r6, r6, lr ; select bytes with negative difference 88 usad8 r5, r6, lr ; calculate sum of negative differences 93 sub r8, r8, r5 ; substract negative differences from sum 115 sel r6, r6, lr ; select bytes with negative difference 119 usad8 r5, r6, lr ; calculate sum of negative differences 124 sub r8, r8, r5 ; substract negative differences from sum 148 sel r6, r6, lr ; select bytes with negative difference [all …]
|
D | vp8_variance_halfpixvar16x16_h_armv6.asm | 53 sel r6, r6, lr ; select bytes with negative difference 57 usad8 r5, r6, lr ; calculate sum of negative differences 61 subs r8, r8, r5 ; substract negative differences from sum 83 sel r6, r6, lr ; select bytes with negative difference 87 usad8 r5, r6, lr ; calculate sum of negative differences 92 sub r8, r8, r5 ; substract negative differences from sum 114 sel r6, r6, lr ; select bytes with negative difference 118 usad8 r5, r6, lr ; calculate sum of negative differences 123 sub r8, r8, r5 ; substract negative differences from sum 147 sel r6, r6, lr ; select bytes with negative difference [all …]
|
D | vp8_variance_halfpixvar16x16_hv_armv6.asm | 64 sel r6, r6, lr ; select bytes with negative difference 68 usad8 r5, r6, lr ; calculate sum of negative differences 72 subs r8, r8, r5 ; substract negative differences from sum 105 sel r6, r6, lr ; select bytes with negative difference 109 usad8 r5, r6, lr ; calculate sum of negative differences 114 sub r8, r8, r5 ; substract negative differences from sum 147 sel r6, r6, lr ; select bytes with negative difference 151 usad8 r5, r6, lr ; calculate sum of negative differences 156 sub r8, r8, r5 ; substract negative differences from sum 189 sel r6, r6, lr ; select bytes with negative difference [all …]
|
D | vp8_variance8x8_armv6.asm | 46 sel r8, r9, lr ; select bytes with negative difference 50 usad8 r7, r8, lr ; calculate sum of negative differences 54 sub r4, r4, r7 ; substract negative differences from sum 71 sel r8, r9, lr ; select bytes with negative difference 75 usad8 r7, r8, lr ; calculate sum of negative differences 80 sub r4, r4, r7 ; substract negative differences from sum
|
/external/llvm/test/Transforms/CorrelatedValuePropagation/ |
D | basic.ll | 108 br i1 %cmp, label %negative, label %out 110 negative: 128 …p = phi i32 [ 1, %entry ], [ -1, %negative ], [ -1, %negative ], [ -1, %negative ], [ -1, %negativ… 132 %q = phi i32 [ 0, %negative ], [ 0, %negative ]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/ |
D | sce4-err.errwarn | 2 -:3: error: negative offset not allowed 3 -:5: error: negative offset not allowed 4 -:6: error: negative offset not allowed
|
/external/chromium_org/base/ |
D | safe_numerics_unittest.nc | 11 #if defined(NCTEST_NO_FLOATING_POINT_1) // [r"size of array is negative"] 17 #elif defined(NCTEST_NO_FLOATING_POINT_2) // [r"size of array is negative"] 23 #elif defined(NCTEST_NO_FLOATING_POINT_3) // [r"size of array is negative"]
|
/external/bison/lib/ |
D | strtol.c | 241 int negative; in INTERNAL() local 298 negative = 1; in INTERNAL() 303 negative = 0; in INTERNAL() 307 negative = 0; in INTERNAL() 385 && i > (negative in INTERNAL() 397 return negative ? STRTOL_LONG_MIN : STRTOL_LONG_MAX; in INTERNAL() 402 return negative ? -i : i; in INTERNAL()
|
/external/libvpx/libvpx/vp8/encoder/arm/armv6/ |
D | vp8_mse16x16_armv6.asm | 49 sel r8, r9, lr ; select bytes with negative difference 53 usad8 r6, r8, lr ; calculate sum of negative differences 70 sel r8, r9, lr ; select bytes with negative difference 74 usad8 r6, r8, lr ; calculate sum of negative differences 89 sel r8, r9, lr ; select bytes with negative difference 93 usad8 r6, r8, lr ; calculate sum of negative differences 112 sel r8, r9, lr ; select bytes with negative difference 116 usad8 r6, r8, lr ; calculate sum of negative differences
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
D | ScrollAnimator.cpp | 104 bool negative = deltaY < 0; in handleWheelEvent() local 106 if (negative) in handleWheelEvent() 115 bool negative = deltaX < 0; in handleWheelEvent() local 117 if (negative) in handleWheelEvent()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/ |
D | reserve-err2.errwarn | 1 -:3: error: multiple is negative 4 -:10: error: multiple is negative
|