/external/chromium_org/net/socket/ |
buffered_write_stream_socket_unittest.cc | 27 void Initialize(MockWrite* writes, size_t writes_count) { 56 Initialize(writes, arraysize(writes)); 65 Initialize(writes, arraysize(writes)); 75 Initialize(writes, arraysize(writes)); 87 Initialize(writes, arraysize(writes)); 102 Initialize(writes, arraysize(writes)); 113 Initialize(writes, arraysize(writes));
|
/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'}} 26 releaser_t r1 = normalFunction; // expected-error {{cannot initialize a variable of type 'releaser_t'}}
|
/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...] |
/packages/apps/Camera2/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...] |
/packages/apps/LegacyCamera/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/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
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);
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_configuration.cc | 32 void Initialize( 35 IBusDaemonController::Initialize(ui_task_runner, file_task_runner); 41 IBusBridge::Initialize(); 48 InputMethodManager::Initialize(impl); 57 InputMethodManager::Initialize(mock_manager);
|
/external/chromium_org/media/base/ |
media.cc | 26 bool Initialize(const base::FilePath& module_dir) { 48 vector_math::Initialize(); 70 return g_media_library.Get().Initialize(module_dir); 76 CHECK(g_media_library.Get().Initialize(module_dir)); 84 // Force initialization of the media initializer, but don't call Initialize().
|
/external/clang/test/SemaCXX/ |
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'}}
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
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_org/media/filters/ |
decrypting_video_decoder_unittest.cc | 88 decoder_->Initialize(config, NewExpectedStatusCB(status)); 92 void Initialize() { 229 Initialize(); 250 Initialize(); 256 Initialize(); 269 Initialize(); 276 Initialize(); 293 Initialize(); 309 Initialize(); 317 Initialize(); [all...] |
/external/clang/test/Sema/ |
uninit-variables.c | 7 int x; // expected-note{{initialize the variable 'x' to silence this warning}} 23 int x; // expected-note{{initialize the variable 'x' to silence this warning}} 29 int x, y; // expected-note{{initialize the variable 'y' to silence this warning}} 35 int x; // expected-note{{initialize the variable 'x' to silence this warning}} 41 int x; // expected-note{{initialize the variable 'x' to silence this warning}} 68 int x; // expected-note{{initialize the variable 'x' to silence this warning}} 78 int x; // expected-note{{initialize the variable 'x' to silence this warning}} 86 int x; // expected-note{{initialize the variable 'x' to silence this warning}} 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}} 130 int *x; // expected-note{{initialize the variable 'x' to silence this warning} [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);
|
/external/apache-harmony/auth/src/test/java/unix/org/apache/harmony/auth/module/ |
UnixLoginModuleTest.java | 49 lm.initialize(subj, cbh, sharedState, options); 59 * Test for UnixLoginModule.initialize() 70 lm.initialize(null, cbh, shared, options); 77 lm.initialize(subj, null, shared, options); 79 lm.initialize(subj, cbh, null, options); 82 lm.initialize(subj, cbh, shared, null);
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/ |
RecapitalizeStatusTests.java | 28 status.initialize(30, 40, "abcdefghij", Locale.ENGLISH, " "); 34 status.initialize(30, 44, " abcdefghij", Locale.ENGLISH, " "); 40 status.initialize(30, 40, "abcdefgh ", Locale.ENGLISH, " "); 46 status.initialize(30, 45, " abcdefghij ", Locale.ENGLISH, " "); 55 status.initialize(29, 40, "abcd efghij", Locale.ENGLISH, " "); 67 status.initialize(29, 40, "Abcd Efghij", Locale.ENGLISH, " "); 79 status.initialize(29, 40, "ABCD EFGHIJ", Locale.ENGLISH, " "); 91 status.initialize(29, 39, "AbCDefghij", Locale.ENGLISH, " "); 105 status.initialize(29, 40, "Abcd efghij", Locale.ENGLISH, " "); 119 status.initialize(30, 34, "grüß", Locale.GERMAN, " "); status.rotate() [all...] |
/external/chromium/base/threading/ |
thread_local_storage_posix.cc | 14 Initialize(destructor); 17 bool ThreadLocalStorage::Slot::Initialize(TLSDestructorFunc destructor) {
|
/external/chromium_org/base/files/ |
memory_mapped_file.cc | 16 bool MemoryMappedFile::Initialize(const FilePath& file_name) { 28 bool MemoryMappedFile::Initialize(PlatformFile file) {
|
/external/chromium_org/base/threading/ |
thread_local_storage_posix.cc | 14 Initialize(destructor); 17 bool ThreadLocalStorage::StaticSlot::Initialize(TLSDestructorFunc destructor) {
|
/external/chromium_org/cc/test/ |
cc_test_suite.cc | 22 void CCTestSuite::Initialize() { 23 base::TestSuite::Initialize();
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
slow.js | 14 Slow.initialize = function() { 44 options.Slow.initialize();
|
/external/chromium_org/chrome/browser/resources/ |
managed_mode_block_interstitial.js | 10 function initialize() { function 34 document.addEventListener('DOMContentLoaded', initialize);
|
/external/chromium_org/chrome_frame/test/reliability/ |
reliability_test_suite.h | 18 virtual void Initialize() OVERRIDE { 22 UITestSuite::Initialize();
|
/external/chromium_org/content/app/ |
content_main.cc | 27 exit_code = main_runner->Initialize(instance, sandbox_info, delegate); 29 exit_code = main_runner->Initialize(argc, argv, delegate);
|
/external/chromium_org/content/browser/download/ |
mock_download_file.cc | 21 // This is here because |Initialize()| is normally called right after 23 ON_CALL(*this, Initialize(_))
|