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

12

/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/webkit/Source/WebCore/platform/
H A DScrollAnimator.cpp103 bool negative = deltaY < 0; local
105 if (negative)
/external/stlport/test/unit/
H A Dsstream_test.cpp38 CPPUNIT_TEST(negative);
58 void negative();
481 void SstreamTest::negative() function in class:SstreamTest
/external/webkit/Source/JavaScriptCore/runtime/
H A DUString.cpp103 bool negative = false; local
105 negative = true;
112 if (negative)
136 bool negative = false; local
138 negative = true;
145 if (negative)
183 bool negative = false; local
185 negative = true;
192 if (negative)
/external/bison/lib/
H A Dstrtol.c130 /* True if negative values of the signed integer type T use two's
255 int negative; local
312 negative = 1;
317 negative = 0;
321 negative = 0;
399 && i > (negative
411 return negative ? STRTOL_LONG_MIN : STRTOL_LONG_MAX;
416 return negative ? -i : i;
/external/webkit/Source/WebKit/chromium/src/
H A DWebScrollbarImpl.cpp207 bool negative = delta < 0; local
209 if (negative)
/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 ) {
/external/stlport/src/
H A Dnum_get_float.cpp64 unsigned int negative:1; member in struct:ieee854_long_double::__anon12554
581 v.ieee.negative = 0;
626 v.ieee.negative = 0;
637 v.ieee.negative = 0;
/external/protobuf/src/google/protobuf/
H A Dtext_format.cc506 // Note that since the tokenizer does not support negative numbers,
511 bool negative = false; local
514 negative = true;
515 // Two's complement always allows one more negative integer than
526 if (negative) {
534 // Note that since the tokenizer does not support negative numbers,
539 bool negative = false; local
542 negative = true;
577 if (negative) {
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer_unittest.cc1822 // The negative id would make us CHECK!
3732 int negative[] = {-3, -2, -1}; local
3735 EXPECT_TRUE(SortedCollectionsIntersect(negative, negative + 3,
3737 EXPECT_FALSE(SortedCollectionsIntersect(negative, negative + 3,
5046 // Test negative position values, but in increasing order.
/external/gcc-demangle/
H A Dcp-demangle.c669 printf ("negative literal\n");
1431 /* number ::= [n] <(non-negative decimal integer)> */
1436 int negative; local
1440 negative = 0;
1444 negative = 1;
1454 if (negative)
2540 /* <non-negative number> _ */
2559 ::= T <(parameter-2 non-negative) number> _
2981 /* <discriminator> ::= _ <(non-negative) number>
/external/icu4c/i18n/
H A Dtimezone.cpp1492 UBool negative, UnicodeString& id) {
1496 if (negative) {
1491 formatCustomID(int32_t hour, int32_t min, int32_t sec, UBool negative, UnicodeString& id) argument
H A Dsmpdtfmt.cpp148 // suppress the parsing of negative numbers. Adjust as needed (if
1040 // Try negative Hms
1068 // Try negative Hm
1146 UBool negative = FALSE; local
1148 negative = TRUE;
1232 if (negative) {
2524 * @return the new start position if matching succeeded; a negative number
/external/jhead/
H A Dexif.c524 int negative = 0; local
528 negative = 1;
535 if (negative) {
/external/valgrind/main/coregrind/m_demangle/
H A Dcp-demangle.c670 printf ("negative literal\n");
1360 /* number ::= [n] <(non-negative decimal integer)> */
1365 int negative; local
1369 negative = 0;
1373 negative = 1;
1383 if (negative)
2381 ::= T <(parameter-2 non-negative) number> _
2760 /* <discriminator> ::= _ <(non-negative) number>

Completed in 337 milliseconds

12