Searched defs:negative (Results 1 - 25 of 62) sorted by relevance

123

/external/chromium/chrome/browser/autofill/
H A Dautofill_xml_parser_unittest.cc216 double negative = 0; local
217 AutofillUploadXmlParser parse_handler(&positive, &negative);
222 EXPECT_DOUBLE_EQ(0.3, negative);
230 double negative = 0; local
232 new AutofillUploadXmlParser(&positive, &negative));
237 EXPECT_DOUBLE_EQ(0.3, negative); // Partially parsed.
238 negative = 0;
242 parse_handler.reset(new AutofillUploadXmlParser(&positive, &negative));
247 EXPECT_DOUBLE_EQ(0, negative);
250 parse_handler.reset(new AutofillUploadXmlParser(&positive, &negative));
[all...]
/external/guava/guava/src/com/google/common/primitives/
H A DAndroidInteger.java51 boolean negative = string.charAt(i) == '-';
52 if (negative && ++i == length) {
55 return tryParse(string, i, radix, negative);
60 boolean negative) {
77 if (!negative) {
59 tryParse(String string, int offset, int radix, boolean negative) argument
/external/proguard/src/proguard/gui/
H A DFilterBuilder.java54 StringBuffer negative = new StringBuffer();
56 buildFilter("", positive, negative);
58 return positive.length() <= negative.length() ?
60 negative.toString();
69 * @param negative the filter to be extended, assuming the matching
74 StringBuffer negative)
119 // Extend the negative filter with exceptions and return.
120 if (negative.length() > 0)
122 negative.append(',');
124 negative
72 buildFilter(String prefix, StringBuffer positive, StringBuffer negative) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DJoyAxisTrigger.java40 private final boolean negative; field in class:JoyAxisTrigger
46 public JoyAxisTrigger(int joyId, int axisId, boolean negative) { argument
49 this.negative = negative;
52 public static int joyAxisHash(int joyId, int joyAxis, boolean negative){ argument
54 return (2048 * joyId) | (negative ? 1280 : 1024) | (joyAxis & 0xff);
66 return negative;
70 return "JoyAxis[joyId="+joyId+", axisId="+axisId+", neg="+negative+"]";
74 return joyAxisHash(joyId, axisId, negative);
H A DMouseAxisTrigger.java47 private boolean negative; field in class:MouseAxisTrigger
53 * @param negative True if listen to negative axis events, false if
56 public MouseAxisTrigger(int mouseAxis, boolean negative){ argument
61 this.negative = negative;
69 return negative;
73 String sign = negative ? "Negative" : "Positive";
82 public static int mouseAxisHash(int mouseAxis, boolean negative){ argument
84 return (negative
[all...]
/external/v8/src/
H A Dconversions.h55 inline double SignedZero(bool negative) { argument
56 return negative ? -0.0 : 0.0;
H A Dconversions-inl.h66 bool negative = x < 0; local
67 if (negative) {
76 return negative ? ~result + 1 : result;
138 bool negative,
145 if (current == end) return SignedZero(negative);
223 if (negative) {
233 return static_cast<double>(negative ? -number : number) * pow(2.0, exponent);
249 bool negative = false;
263 negative = true;
270 if (current == end) return SignedZero(negative);
135 InternalStringToIntDouble(UnicodeCache* unicode_cache, Iterator current, EndMark end, bool negative, bool allow_trailing_junk) argument
[all...]
H A Dconversions.cc124 bool negative = false; local
126 // We must not negate the most negative int.
128 negative = true;
138 if (negative) buffer[--i] = '-';
150 bool negative = false; local
154 negative = true;
203 if (negative) builder.AddCharacter('-');
216 bool negative,
230 if (negative) builder.AddCharacter('-');
252 bool negative local
214 CreateExponentialRepresentation(char* decimal_rep, int exponent, bool negative, int significant_digits) argument
298 bool negative = false; local
[all...]
H A Djson-parser.h353 bool negative = false; local
357 negative = true;
375 return Handle<Smi>(Smi::FromInt((negative ? -i : i)), isolate());
/external/chromium/net/base/
H A Ddnsrr_resolver.h50 // negative is true if this is a negative cache entry, i.e. is a placeholder
52 bool negative; member in struct:net::RRResponse
/external/chromium_org/v8/src/
H A Dconversions-inl.h54 inline double SignedZero(bool negative) { argument
55 return negative ? uint64_to_double(Double::kSignMask) : 0.0;
71 bool negative = x < 0; local
72 if (negative) {
81 return negative ? ~result + 1 : result;
143 bool negative,
150 if (current == end) return SignedZero(negative);
228 if (negative) {
236 return ldexp(static_cast<double>(negative ? -number : number), exponent);
252 bool negative
140 InternalStringToIntDouble(UnicodeCache* unicode_cache, Iterator current, EndMark end, bool negative, bool allow_trailing_junk) argument
[all...]
H A Dconversions.cc137 bool negative = false; local
139 // We must not negate the most negative int.
141 negative = true;
151 if (negative) buffer[--i] = '-';
163 bool negative = false; local
167 negative = true;
216 if (negative) builder.AddCharacter('-');
229 bool negative,
243 if (negative) builder.AddCharacter('-');
265 bool negative local
227 CreateExponentialRepresentation(char* decimal_rep, int exponent, bool negative, int significant_digits) argument
311 bool negative = false; local
[all...]
H A Djson-parser.h501 bool negative = false; local
505 negative = true;
523 return Handle<Smi>(Smi::FromInt((negative ? -i : i)), isolate());
/external/chromium_org/base/
H A Dsys_info_android.cc71 bool negative = result <= 0; local
73 if (!parsed || negative || overflow)
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollAnimator.cpp104 bool negative = deltaY < 0; local
106 if (negative)
115 bool negative = deltaX < 0; local
117 if (negative)
/external/smack/src/org/xbill/DNS/
H A DAPLRecord.java25 public final boolean negative; field in class:APLRecord.Element
30 Element(int family, boolean negative, Object address, int prefixLength) argument
33 this.negative = negative;
44 * @param negative Indicates if this prefix is a negation.
50 Element(boolean negative, InetAddress address, int prefixLength) { argument
51 this(Address.familyOf(address), negative, address,
58 if (negative)
77 negative == elt.negative
[all...]
/external/stlport/test/unit/
H A Dsstream_test.cpp38 CPPUNIT_TEST(negative);
58 void negative();
481 void SstreamTest::negative() function in class:SstreamTest
/external/bison/lib/
H A Dstrtol.c124 /* True if negative values of the signed integer type T use two's
241 int negative; local
298 negative = 1;
303 negative = 0;
307 negative = 0;
385 && i > (negative
397 return negative ? STRTOL_LONG_MIN : STRTOL_LONG_MAX;
402 return negative ? -i : i;
/external/chromium_org/media/audio/pulse/
H A Dpulse_util.cc118 int negative = 0; local
120 if (pa_stream_get_latency(stream, &latency_micros, &negative) != 0)
123 if (negative)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format_rgb9e5.h48 unsigned int negative:1; member in struct:__anon12920::__anon12921
54 unsigned int negative:1;
/external/chromium_org/tools/traceline/traceline/
H A Dassembler.h87 negative = sign, enumerator in enum:Condition
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cc45 bool negative) {
48 RAW_CHECK(base == 10 || !negative);
49 RAW_CHECK(absolute_value || !negative);
52 if (negative && minimal_num_length)
54 if (negative && pad_with_zero)
75 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
87 pad_with_zero, false /* negative */);
92 bool negative = (num < 0); local
93 return AppendNumber(buff, buff_end, (u64)(negative ? -num : num), 10,
94 minimal_num_length, pad_with_zero, negative);
43 AppendNumber(char **buff, const char *buff_end, u64 absolute_value, u8 base, u8 minimal_num_length, bool pad_with_zero, bool negative) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_rgb9e5.h48 unsigned int negative:1; member in struct:__anon23405::__anon23406
54 unsigned int negative:1;
/external/oprofile/opjitconv/
H A Ddebug_line.c181 int negative = data < 0; local
186 if (negative)
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_string.c37 SDL_bool negative = SDL_FALSE; local
40 negative = SDL_TRUE;
62 if ( negative && value ) {
140 SDL_bool negative = SDL_FALSE; local
143 negative = SDL_TRUE;
165 if ( negative && value ) {
213 SDL_bool negative = SDL_FALSE; local
216 negative = SDL_TRUE;
232 if ( negative && value ) {

Completed in 583 milliseconds

123