/external/chromium/chrome/browser/debugger/manual_tests/resources/ |
loop-statements.js | 4 function initialize() function
|
/external/webkit/Source/WebCore/manual-tests/inspector/resources/ |
loop-statements.js | 4 function initialize() function
|
/external/chromium/net/base/ |
net_test_suite.h | 25 virtual void Initialize(); 31 // Called from within Initialize(), but separate so that derived classes 32 // can initialize the NetTestSuite instance only and not 33 // TestSuite::Initialize(). TestSuite::Initialize() performs some global
|
/external/clang/test/CXX/expr/expr.unary/expr.new/ |
p19.cpp | 10 return I; // expected-error{{cannot initialize}} 14 int *ip = I; // expected-error{{cannot initialize}} 32 return I; // expected-error{{cannot initialize}} 36 int *ip = I; // expected-error{{cannot initialize}}
|
/external/clang/test/SemaCXX/ |
illegal-member-initialization.cpp | 13 X() { } // expected-error {{constructor for 'X' must explicitly initialize the reference member 'value'}} \ 14 // expected-error {{constructor for 'X' must explicitly initialize the const member 'cvalue'}} \ 15 // expected-error {{constructor for 'X' must explicitly initialize the reference member 'b'}} \ 16 // expected-error {{constructor for 'X' must explicitly initialize the const member 'cb'}}
|
block-call.cpp | 7 int (*FPL) (int) = FP; // expected-error {{cannot initialize a variable of type 'int (*)(int)' with an lvalue of type 'int (*)()'}} 10 int (^PFR) (int) = IFP; // expected-error {{cannot initialize a variable of type 'int (^)(int)' with an lvalue of type 'int (^)()'}} 25 int * (^IPCC2) () = IPCC; // expected-error {{cannot initialize a variable of type 'int *(^)()' with an lvalue of type 'int *const (^)()'}} 33 int (^IPCC6) (int, char (^CArg) (float)) = IPCC4; // expected-error {{cannot initialize a variable of type 'int (^)(int, char (^)(float))' with an lvalue of type}} 38 int (^y)() = 3; // expected-error {{cannot initialize a variable of type 'int (^)()' with an rvalue of type 'int'}} 40 int (^z)() = a+4; // expected-error {{cannot initialize a variable of type 'int (^)()' with an rvalue of type 'int'}}
|
member-location.cpp | 7 int A::b() { return a(a((int*)0)); } // expected-error {{cannot initialize a parameter of type 'int *' with an rvalue of type 'float'}}
|
type-formatting.cpp | 8 const T *t = (const X0*)0; // expected-error{{cannot initialize a variable of type 'const X1 *' with an rvalue of type 'const X0 *'}}
|
warn-unique-enum.cpp | 3 // expected-note {{initialize the last element with the previous element to silence this warning}} 7 C2 = true // expected-note {{initialize the last element with the previous element to silence this warning}} 10 // expected-note {{initialize the last element with the previous element to silence this warning}} 17 // Don't warn when integer literals do not initialize the elements.
|
/external/clang/test/SemaObjC/ |
compound-init.m | 6 (A){ 0 }; // expected-error{{cannot initialize Objective-C class type 'A'}}
|
protocol-implementing-class-methods.m | 12 - (void) initialize; // expected-note {{method 'initialize' declared here}} 16 - (void) initialize; 24 - (void) initialize {NSImage *p=0; [p initialize]; } // expected-warning {{category is implementing a method which will also be implemented by its primary class}}
|
/external/doclava/res/assets/templates/ |
trailer.cs | 4 init(); /* initialize android-developer-docs.js */
|
/external/clang/test/SemaObjCXX/ |
arc-nsconsumed-errors.mm | 6 blk a = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong blk'}} 10 blk c = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong blk'}} 12 blk d = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk'}} 14 blk1 a1 = ^void (__attribute((ns_consumed)) id, id){}; // expected-error {{cannot initialize a variable of type '__strong blk1'}} 16 blk1 b2 = ^void (id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong blk1'}} 20 blk1 d4 = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk1'}}
|
NSString-type.mm | 5 void (^block)(void) = @"help"; // expected-error {{cannot initialize a variable of type 'void (^)()' with an rvalue of type 'NSString *'}} 7 void (^block2)(void) = @"help"; // expected-error {{cannot initialize a variable of type 'void (^)()' with an rvalue of type 'NSString *'}} 8 void (^block3)(void) = @"help"; // expected-error {{cannot initialize a variable of type 'void (^)()' with an rvalue of type 'NSString *'}}
|
const-cast.mm | 7 Foo *foo2 = foo1; // expected-error {{cannot initialize}}
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_InitSubSystem.3 | 3 SDL_InitSubSystem \- Initialize subsystems 11 After SDL has been initialized with \fI\fBSDL_Init\fP\fR you may initialize uninitialized subsystems with \fBSDL_InitSubSystem\fP\&. The \fBflags\fR parameter is the same as that used in \fI\fBSDL_Init\fP\fR\&. 24 /* Initialize the joystick subsystem */
|
/external/webrtc/test/ |
test_suite.cc | 26 Initialize(); 32 void TestSuite::Initialize() { 33 // TODO(andrew): initialize singletons here (e.g. Trace).
|
/frameworks/wilhelm/src/android/ |
OutputMix_to_android.cpp | 33 // initialize effects 34 // initialize EQ 39 // initialize BassBoost 44 // initialize PresetReverb 49 // initialize EnvironmentalReverb 55 // initialize Virtualizer
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
KeyPairGenerator4Test.java | 37 gen.initialize(1024); 89 * @tests java.security.KeyPairGenerator#initialize(int) 93 keyPair.initialize(1024); 97 * @tests java.security.KeyPairGenerator#initialize(int, 102 keyPair.initialize(1024, new SecureRandom()); 107 * @tests java.security.KeyPairGenerator#initialize(java.security.spec.AlgorithmParameterSpec) 113 keyPairGenerator.initialize(1024); 119 keyPair.initialize(new DSAParameterSpec(params.getP(), params.getQ(), 124 * @tests java.security.KeyPairGenerator#initialize(java.security.spec.AlgorithmParameterSpec, 131 keyPairGenerator.initialize(1024) [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyPairGenerator4Test.java | 35 gen.initialize(1024); 87 * java.security.KeyPairGenerator#initialize(int) 91 keyPair.initialize(1024); 95 * java.security.KeyPairGenerator#initialize(int, 100 keyPair.initialize(1024, new SecureRandom()); 105 * java.security.KeyPairGenerator#initialize(java.security.spec.AlgorithmParameterSpec) 111 keyPairGenerator.initialize(1024); 117 keyPair.initialize(new DSAParameterSpec(params.getP(), params.getQ(), 122 * java.security.KeyPairGenerator#initialize(java.security.spec.AlgorithmParameterSpec, 129 keyPairGenerator.initialize(1024) [all...] |
/external/chromium/base/i18n/ |
icu_util_nacl_win64.cc | 9 bool Initialize() {
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
nvram.h | 7 #define NVRAM_INIT _IO('p', 0x40) /* initialize NVRAM and set checksum */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
nvram.h | 7 #define NVRAM_INIT _IO('p', 0x40) /* initialize NVRAM and set checksum */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
nvram.h | 7 #define NVRAM_INIT _IO('p', 0x40) /* initialize NVRAM and set checksum */
|
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
MatrixUtils.h | 35 initialize(); 41 * identity: Specifies wether to initialize matrix to 45 initialize(identity); 49 * Initialize to identity matrix 51 void initialize(bool identity = false) { function in class:Matrix33 93 initialize(); 99 * identity: Specifies wether to initialize matrix to 103 initialize(identity); 107 * Initialize to identity matrix 109 void initialize(bool identity = false) function in class:Matrix9 [all...] |