| /external/clang/test/FixIt/ |
| format-darwin.m | 34 printf("%s", getNSInteger()); // expected-warning{{values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead}} 35 printf("%s", getNSUInteger()); // expected-warning{{values of type 'NSUInteger' should not be used as format arguments; add an explicit cast to 'unsigned long' instead}} 36 printf("%s", getSInt32()); // expected-warning{{values of type 'SInt32' should not be used as format arguments; add an explicit cast to 'int' instead}} 37 printf("%s", getUInt32()); // expected-warning{{values of type 'UInt32' should not be used as format arguments; add an explicit cast to 'unsigned int' instead}} 71 printf("%s", arr[0]); // expected-warning{{values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead}} 72 printf("%s", getNSInteger()); // expected-warning{{values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead}} 73 printf("%s", i); // expected-warning{{values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead}} 74 printf("%s", obj->_value); // expected-warning{{values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead}} 75 printf("%s", [obj getInteger]); // expected-warning{{values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead}} 76 printf("%s", obj.value); // expected-warning{{values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead} [all...] |
| /external/clang/test/Sema/ |
| uninit-variables.c | 8 return x; // expected-warning{{variable 'x' is uninitialized when used here}} 24 ++x; // expected-warning{{variable 'x' is uninitialized when used here}} 30 x = y; // expected-warning{{variable 'y' is uninitialized when used here}} 36 x += 2; // expected-warning{{variable 'x' is uninitialized when used here}} 42 if (y) // expected-warning{{variable 'x' is used uninitialized whenever 'if' condition is false}} \ 55 return x; // expected-warning{{variable 'x' may be uninitialized when used here}} 74 return x; // expected-warning{{variable 'x' may be uninitialized when used here}} 82 return x; // expected-warning{{variable 'x' may be uninitialized when used here}} 90 return x; // expected-warning{{variable 'x' may be uninitialized when used here}} 94 for (unsigned i ; n ; ++i) ; // expected-warning{{variable 'i' is uninitialized when used here}} expected-note{{initialize the variable 'i' to silence this warning} [all...] |
| /frameworks/av/libvideoeditor/vss/inc/ |
| M4VSS3GPP_Extended_API.h | 110 /**< Framing file path (GIF/PNG file), used only if VideoEffectType == framing */ 112 /**< Framing RGB565 buffer, used only if VideoEffectType == framing */ 114 /**<RGB Buffer type,used only if VideoEffectType == framing */ 117 Used only if VideoEffectType == framing || VideoEffectType == text */ 120 Used only if VideoEffectType == framing || VideoEffectType == text */ 123 Used only if VideoEffectType == framing */ 127 /**< Text buffer. Used only if VideoEffectType == text */ 129 /**< Text buffer size. Used only if VideoEffectType == text */ 131 /**< Pointer containing specific data used by the font engine (size, color...) */ 133 /**< Text plane width. Used only if VideoEffectType == text * [all...] |
| /external/chromium_org/third_party/freetype/include/freetype/ |
| ftsystem.h | 10 /* This file is part of the FreeType project, and may only be used, */ 75 * A function used to allocate `size' bytes from `memory'. 99 * A function used to release a given block of memory. 120 * A function used to re-allocate a given block of memory. 155 * A structure used to describe a given memory manager to FreeType~2. 205 * A union type used to store either a long or a pointer. This is used 223 * A function used to seek and read data from a given input stream. 260 * A function used to close a given input stream. 277 * A structure used to describe an input stream [all...] |
| /external/dropbear/libtomcrypt/src/pk/asn1/der/choice/ |
| der_decode_choice.c | 43 /* set all of the "used" flags to zero */ 45 list[x].used = 0; 57 list[x].used = 1; 67 list[x].used = 1; 77 list[x].used = 1; 88 list[x].used = 1; 99 list[x].used = 1; 107 list[x].used = 1; 118 list[x].used = 1; 130 list[x].used = 1 [all...] |
| /external/dropbear/libtommath/ |
| bn_mp_karatsuba_mul.c | 31 * Note that a1b1 and a0b0 are used twice and only need to be 56 B = MIN (a->used, b->used); 64 if (mp_init_size (&x1, a->used - B) != MP_OKAY) 68 if (mp_init_size (&y1, b->used - B) != MP_OKAY) 80 x0.used = y0.used = B; 81 x1.used = a->used - B; 82 y1.used = b->used - B [all...] |
| /external/freetype/include/freetype/ |
| ftsystem.h | 10 /* This file is part of the FreeType project, and may only be used, */ 75 * A function used to allocate `size' bytes from `memory'. 99 * A function used to release a given block of memory. 120 * A function used to re-allocate a given block of memory. 155 * A structure used to describe a given memory manager to FreeType~2. 205 * A union type used to store either a long or a pointer. This is used 223 * A function used to seek and read data from a given input stream. 260 * A function used to close a given input stream. 277 * A structure used to describe an input stream [all...] |
| /external/wpa_supplicant_8/wpa_supplicant/ |
| wpa_supplicant.conf | 18 # This option can be used to allow wpa_supplicant to overwrite configuration 31 # interface mechanism is used. For all cases, the existence of this parameter 32 # in configuration is used to determine whether the control interface is 40 # interface is used. 48 # run as non-root users. However, since the control interface can be used to 63 # variable is just used to select that the control interface is to be created. 66 # For Windows Named Pipe: This value can be used to set the security descriptor 82 # to 1 by default. This configuration value can be used to set it to the new 96 # parameters (e.g., WPA IE generation); this mode can also be used with 99 # also be used when using wired Ethernet drivers [all...] |
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_boolean/ |
| TestStubs.java | 20 // used by testVFE4 22 // used by testVFE15
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_object/ |
| TestStubs.java | 20 // used by testVFE4 22 // used by testVFE15
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_short/ |
| TestStubs.java | 20 // used by testVFE4 22 // used by testVFE15
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super/ |
| TestStubs.java | 22 // used by testE6 26 // used by testE7
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super_range/ |
| TestStubs.java | 22 // used by testE6 26 // used by testE7
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_virtual/ |
| TestStubs.java | 22 // used by testE6 26 // used by testE7
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_virtual_range/ |
| TestStubs.java | 22 // used by testE6 26 // used by testE7
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iput/ |
| TestStubs.java | 20 // used by testVFE9 23 // used by testE5
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iput_boolean/ |
| TestStubs.java | 20 // used by testVFE9 23 // used by testE5
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iput_byte/ |
| TestStubs.java | 20 // used by testVFE9 23 // used by testE5
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iput_char/ |
| TestStubs.java | 20 // used by testVFE9 23 // used by testE5
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iput_object/ |
| TestStubs.java | 20 // used by testVFE9 23 // used by testE5
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iput_short/ |
| TestStubs.java | 20 // used by testVFE9 23 // used by testE5
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iput_wide/ |
| TestStubs.java | 20 // used by testVFE9 23 // used by testE5
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput/ |
| TestStubs.java | 20 // used by testVFE9 23 // used by testE5
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_boolean/ |
| TestStubs.java | 20 // used by testVFE9 23 // used by testE5
|
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_byte/ |
| TestStubs.java | 20 // used by testVFE9 23 // used by testE5
|