/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 *'}}
|
value-initialization.cpp | 4 // expected-warning {{does not declare any constructor to initialize}}
|
default-constructor-initializers.cpp | 11 struct X3 : public X2 { // expected-error {{implicit default constructor for 'X3' must explicitly initialize the base class 'X2' which does not have a default constructor}} 16 struct X4 { // expected-error {{must explicitly initialize the member 'x2'}} \ 17 // expected-error {{must explicitly initialize the reference member 'rx2'}} 46 struct Z1 { // expected-error {{must explicitly initialize the reference member 'z'}} \ 47 // expected-error {{must explicitly initialize the const member 'c1'}}
|
/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 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'}}
|
const-cast.mm | 7 Foo *foo2 = foo1; // expected-error {{cannot initialize}}
|
/system/media/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...] |
KeyPairGeneratorSpiTest.java | 58 keyPairGen.initialize(pp, null); 62 keyPairGen.initialize(pp, new SecureRandom()); 63 keyPairGen.initialize(1024, new SecureRandom()); 65 keyPairGen.initialize(-1024, new SecureRandom()); 70 keyPairGen.initialize(1024, null);
|
/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...] |
KeyPairGeneratorSpiTest.java | 53 keyPairGen.initialize(pp, null); 58 keyPairGen.initialize(pp, new SecureRandom()); 59 keyPairGen.initialize(1024, new SecureRandom()); 61 keyPairGen.initialize(-1024, new SecureRandom()); 66 keyPairGen.initialize(1024, null);
|
/external/chromium/base/i18n/ |
icu_util_nacl_win64.cc | 9 bool Initialize() {
|
/prebuilt/linux-x86/toolchain/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 */
|
/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...] |
/external/clang/test/CodeGenCXX/ |
skip-vtable-pointer-initialization.cpp | 7 // Check that we don't initialize the vtable pointer in A::~A(), since the destructor body is trivial. 23 // Check that we do initialize the vtable pointer in A::~A() since the destructor body isn't trivial. 39 // Check that we don't initialize the vtable pointer in A::~A(), since the destructor body is trivial 62 // Check that we do initialize the vtable pointer in A::~A(), since Field's destructor body 88 // Check that we do initialize the vtable pointer in A::~A(), since Field's destructor isn't 112 // Check that we do initialize the vtable pointer in A::~A(), since Field has a member 140 // Check that we do initialize the vtable pointer in A::~A(), since Field has a base 166 // Check that we do initialize the vtable pointer in A::~A(), since Field has a virtual base 192 // Check that we emit a VTT for B, even though we don't initialize the vtable pointer in the destructor.
|
/libcore/luni/src/test/java/tests/security/interfaces/ |
DSAKeyPairGeneratorTest.java | 45 * #initialize(DSAParams params, SecureRandom random) 58 dsa.initialize(dsaParams, random); 64 dsa.initialize(dsaParams, null); 72 dsa.initialize(null, random); 83 * #initialize(int modlen, boolean genParams, SecureRandom randomm) 98 dsa.initialize(520, false, random); 112 dsa.initialize(invalidLen[i], true, random); 127 dsa.initialize(520, true, random); 134 dsa.initialize(520, false, random);
|