HomeSort by relevance Sort by last modified time
    Searched full:initializing (Results 51 - 75 of 1570) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
block-return.c 7 short (^add1)(void) = ^{ return y+1; }; // expected-error {{incompatible block pointer types initializing 'short (^)(void)' with an expression of type 'int (^)(void)'}}
29 double (^A)(void) = ^ { // expected-error {{incompatible block pointer types initializing 'double (^)(void)' with an expression of type 'float (^)(void)'}}
81 int (^xx)(const char *s) = ^(char *s) { return 1; }; // expected-error {{incompatible block pointer types initializing 'int (^)(const char *)' with an expression of type 'int (^)(char *)'}}
82 int (*yy)(const char *s) = funk; // expected-warning {{incompatible pointer types initializing 'int (*)(const char *)' with an expression of type 'int (char *)'}}
113 const int (^BB) (void) = ^{ const int i = 1; return i; }; // OK - initializing 'const int (^)(void)' with an expression of type 'int (^)(void)'
array-init.c 14 static long ary3[] = { 1, "abc", 3, 4 }; // expected-warning{{incompatible pointer to integer conversion initializing 'long' with an expression of type 'char [4]'}}
49 struct threeElements *p = 7; // expected-warning{{incompatible integer to pointer conversion initializing 'struct threeElements *' with an expression of type 'int'}}
54 "abc", // expected-warning{{incompatible pointer to integer conversion initializing 'long' with an expression of type 'char [4]'}}
162 int i[] = { "Hello "}; // expected-warning{{incompatible pointer to integer conversion initializing 'int' with an expression of type 'char [7]'}}
165 int i2[1] = { "Hello" }; //expected-warning{{incompatible pointer to integer conversion initializing 'int' with an expression of type 'char [6]'}}
198 struct s1 t3[] = {t1, t1, "abc", 0}; //expected-warning{{incompatible pointer to integer conversion initializing 'char' with an expression of type 'char [4]'}}
203 struct foo z = { w }; //expected-error{{initializing 'int' with an expression of incompatible type 'struct foo'}}
273 // Test the GNU extension for initializing an array from an array
cast-to-union.c 14 union u x = 7; // expected-error{{initializing 'union u' with an expression of incompatible type 'int'}}
ms-wchar.c 17 // Do not suggest initializing with a string here, because it would not work.
vector-init.c 43 short4 arr2[2] = { test3_helper(), test3_helper() }; // expected-error 2 {{initializing 'short4' with an expression of incompatible type 'short8'}}
  /external/qemu/distrib/sdl-1.2.15/docs/html/
guidethebasics.html 19 TITLE="Initializing SDL"
93 >Initializing SDL</A
167 >Initializing SDL</TD
  /external/chromium_org/sandbox/win/src/
sandbox_types.h 44 // There is a failure initializing the AppContainer.
46 // Initializing or updating ProcThreadAttributes failed.
  /frameworks/base/core/java/android/net/wimax/
WimaxManagerConstants.java 32 * initializing, initialized, unknown and ready. One extra provides this state as an int.
48 * initializing, initialized, unknown and ready.
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ClassCircularityErrorTest.java 22 // Thrown when a circularity has been detected while initializing a class.
  /external/chromium/chrome/browser/
resources_util.cc 17 // thread safety in initializing the hash_map for us.
  /external/chromium_org/android_webview/browser/
aw_form_database_service.h 21 // functionality. This includes creating and initializing the components that
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
file_operation_manager_wrapper.js 40 * initializing the FileOperationManager instance in background page.
  /external/chromium_org/chrome/browser/
resources_util.cc 18 // thread safety in initializing the hash_map for us.
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
new_credit_card_bubble_cocoa.h 46 // Creates the cocoa bubble controller without initializing anything else.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/input.ime/basic/
main.js 9 console.log("Initializing IME");
  /external/chromium_org/content/child/npapi/
webplugin_accelerated_surface_mac.h 26 // If initializing the surface failed, this will be NULL.
  /external/chromium_org/device/bluetooth/
bluetooth_adapter_factory.h 29 // initializing it if necessary. |callback| is called with the adapter
  /external/chromium_org/media/base/android/
audio_decoder_job.h 25 // |extra_data|, |extra_data_size| - Extra data buffer needed for initializing
  /external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/
ReadMe.txt 8 The purpose of this performance test is to test the "real world" applications of ICU, such as Date Formatting and the Break Iterator. In both of these cases, the performance test function does all of the work, i.e. initializing, formatting, etc.
  /external/chromium_org/v8/test/webkit/
const-without-initializer.js 25 'Tests that declaring a const variable without initializing has the correct behavior and does not crash'
  /external/clang/test/CodeGenObjCXX/
literals.mm 21 // Initializing first element
28 // Initializing the second element
68 // Initializing first element
75 // Initializing the second element
  /external/clang/test/SemaObjCXX/
objc-pointer-conv.mm 46 DerivedFromI *di = i; // expected-warning{{incompatible pointer types initializing 'DerivedFromI *' with an expression of type 'I *'}}
  /external/clang/test/SemaTemplate/
instantiate-overload-candidates.cpp 24 // overload resolution when initializing a function pointer.
  /external/icu4c/test/perf/DateFmtPerf/
ReadMe.txt 8 The purpose of this performance test is to test the "real world" applications of ICU, such as Date Formatting and the Break Iterator. In both of these cases, the performance test function does all of the work, i.e. initializing, formatting, etc.
  /external/iptables/extensions/
libxt_CT.man 3 the packet, which is then used by the conntrack core when initializing

Completed in 1026 milliseconds

1 23 4 5 6 7 8 91011>>