HomeSort by relevance Sort by last modified time
    Searched full:minus (Results 1 - 25 of 1229) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/003-omnibus-opcodes/src/
Compare.java 13 static void testIntCompare(int minus, int plus, int plus2, int zero) {
16 if (minus > plus)
18 if (minus >= plus)
20 if (plus < minus)
22 if (plus <= minus)
24 if (plus == minus)
30 if (plus != minus) {
36 if (minus > 0)
38 if (minus >= 0)
59 * minus=-5, alsoMinus=0xFFFFFFFF00000009, plus=4, alsoPlus=
    [all...]
  /external/markdown/MarkdownTest/Tests_2004/
Ordered and unordered lists.text 40 - Minus 1
41 - Minus 2
42 - Minus 3
47 - Minus 1
49 - Minus 2
51 - Minus 3
Backslash escapes.text 33 Minus: \-
69 Minus: \-
104 Minus: `\-`
Ordered and unordered lists.html 42 <li>Minus 1</li>
43 <li>Minus 2</li>
44 <li>Minus 3</li>
50 <li><p>Minus 1</p></li>
51 <li><p>Minus 2</p></li>
52 <li><p>Minus 3</p></li>
Ordered and unordered lists.text-out 50 <li>Minus 1</li>
51 <li>Minus 2</li>
52 <li>Minus 3</li>
57 <p>Minus 1</p>
60 <p>Minus 2</p>
63 <p>Minus 3</p>
Ordered and unordered lists.text-res 50 <li>Minus 1</li>
51 <li>Minus 2</li>
52 <li>Minus 3</li>
57 <p>Minus 1</p>
60 <p>Minus 2</p>
63 <p>Minus 3</p>
Backslash escapes.html 33 <p>Minus: -</p>
67 Minus: \-
102 <p>Minus: <code>\-</code></p>
Backslash escapes.text-out 25 <p>Minus: -</p>
58 Minus: \-
77 <p>Minus: <code>\-</code></p>
Backslash escapes.text-res 25 <p>Minus: -</p>
58 Minus: \-
77 <p>Minus: <code>\-</code></p>
  /external/markdown/MarkdownTest/Tests_2007/
Ordered and unordered lists.text 40 - Minus 1
41 - Minus 2
42 - Minus 3
47 - Minus 1
49 - Minus 2
51 - Minus 3
Ordered and unordered lists.html 42 <li>Minus 1</li>
43 <li>Minus 2</li>
44 <li>Minus 3</li>
50 <li><p>Minus 1</p></li>
51 <li><p>Minus 2</p></li>
52 <li><p>Minus 3</p></li>
Backslash escapes.text 33 Minus: \-
69 Minus: \-
104 Minus: `\-`
Backslash escapes.html 33 <p>Minus: -</p>
67 Minus: \-
102 <p>Minus: <code>\-</code></p>
  /external/markdown/tests/markdown-test/
ordered-and-unordered-list.txt 40 - Minus 1
41 - Minus 2
42 - Minus 3
47 - Minus 1
49 - Minus 2
51 - Minus 3
backlash-escapes.txt 33 Minus: \-
69 Minus: \-
104 Minus: `\-`
ordered-and-unordered-list.html 42 <li>Minus 1</li>
43 <li>Minus 2</li>
44 <li>Minus 3</li>
49 <p>Minus 1</p>
52 <p>Minus 2</p>
55 <p>Minus 3</p>
backlash-escapes.html 17 <p>Minus: -</p>
49 Minus: \-
67 <p>Minus: <code>\-</code></p
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/
VecMath_Lexer.g3 9 MINUS : '-';
  /external/clang/test/SemaCXX/
invalid-instantiated-field-decl.cpp 18 MinUs = (static_cast<unsigned int>(sizeof(T))*N + // expected-error {{invalid application of 'sizeof' to an incomplete type 'CallSite'}}
21 NumInlineEltsElts = MinUs
  /external/iproute2/include/linux/
socket.h 16 /* _SS_MAXSIZE value minus size of ss_family */
  /external/stlport/src/
num_put.cpp 32 Char separator, Char Plus, Char Minus,
41 if (*first == Plus || *first == Minus) {
76 Char separator, Char Plus, Char Minus,
86 if (__first == Plus || __first == Minus) {
136 char separator, char Plus, char Minus, int basechars) {
138 separator, Plus, Minus, basechars);
143 char separator, char Plus, char Minus, int basechars) {
144 __insert_grouping_aux(str, group_pos, grouping, separator, Plus, Minus, basechars);
150 wchar_t separator, wchar_t Plus, wchar_t Minus,
153 Plus, Minus, basechars)
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_put.cpp 32 Char separator, Char Plus, Char Minus,
41 if (*first == Plus || *first == Minus) {
76 Char separator, Char Plus, Char Minus,
86 if (__first == Plus || __first == Minus) {
136 char separator, char Plus, char Minus, int basechars) {
138 separator, Plus, Minus, basechars);
143 char separator, char Plus, char Minus, int basechars) {
144 __insert_grouping_aux(str, group_pos, grouping, separator, Plus, Minus, basechars);
150 wchar_t separator, wchar_t Plus, wchar_t Minus,
153 Plus, Minus, basechars)
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 56 public Point minus(float x, float y) { method in class:Point
60 public Point minus(Point point) { method in class:Point
61 return this.minus(point.x, point.y);
77 return p.minus(this).length();
106 return this.minus(center).rotated(radians).plus(center);
Rectangle.java 63 return new Rectangle(center.minus(dx).minus(dy),
64 center.plus(dx).minus(dy),
65 center.minus(dx).plus(dy),
70 return p1.minus(p0).length();
74 return p2.minus(p0).length();
  /external/clang/test/Sema/
warn-strncat-size.c 33 strncat(dest, src, sizeof(src)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
35 strncat(dest, src, sizeof(src) - 1); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
37 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest)); // expected-warning{{the value of the size argument in 'strncat' is too large, might lead to a buffer overflow}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
39 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest) - strlen(dest)); // expected-warning{{the value of the size argument in 'strncat' is too large, might lead to a buffer overflow}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
41 strncat((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
43 strncat(s4.f1, s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
70 strncat(z, str, sizeof(str)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}

Completed in 5783 milliseconds

1 2 3 4 5 6 7 8 91011>>