/external/chromium/chrome/browser/debugger/manual_tests/resources/ |
loop-statements.js | 4 function initialize() function
|
/external/chromium_org/third_party/WebKit/ManualTests/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/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_configuration.h | 16 // GetInstance(). We explicitly initialize and shut down the global instance, 18 void Initialize( 22 // Similar to Initialize(), but can inject an alternative 26 // TODO(nona): Remove this and use InputMethodManager::Initialize instead.
|
input_method_configuration.cc | 33 void Initialize( 35 IBusBridge::Initialize(); 40 InputMethodManager::Initialize(impl); 55 InputMethodManager::Initialize(mock_manager); 81 void Initialize( 86 g_input_method_configuration->Initialize(ui_task_runner);
|
/external/chromium_org/media/filters/ |
fake_video_decoder_unittest.cc | 37 decoder_->Initialize(config, NewExpectedStatusCB(PIPELINE_OK)); 42 void Initialize() { 48 Initialize(); 258 TEST_F(FakeVideoDecoderTest, Initialize) { 259 Initialize(); 263 Initialize(); 269 Initialize(); 279 Initialize(); 288 Initialize(); 296 Initialize(); [all...] |
/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'}}
|
/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/compiler-rt/lib/msan/lit_tests/SharedLibs/ |
dso-origin-so.cc | 7 // Force initialize-ness check.
|
/external/doclava/res/assets/templates/ |
trailer.cs | 4 init(); /* initialize android-developer-docs.js */
|
/external/chromium_org/chrome_frame/ |
scoped_initialization_manager_unittest.cc | 16 virtual void Initialize() = 0; 24 static void Initialize() { 26 delegate_->Initialize(); 44 MOCK_METHOD0(Initialize, void()); 65 // Test that Initialize and Shutdown are called in order for the simple case. 69 EXPECT_CALL(mock_traits_delegate_, Initialize()); 75 // Test that Initialize and Shutdown are called in order only once despite 80 EXPECT_CALL(mock_traits_delegate_, Initialize());
|
/external/chromium_org/win8/metro_driver/ |
devices_handler.cc | 18 HRESULT DevicesHandler::Initialize(winui::Core::ICoreWindow* window) { 19 HRESULT hr = print_handler_.Initialize(window);
|
/external/chromium_org/net/test/ |
net_test_suite.h | 26 virtual void Initialize() OVERRIDE; 36 // Called from within Initialize(), but separate so that derived classes 37 // can initialize the NetTestSuite instance only and not 38 // TestSuite::Initialize(). TestSuite::Initialize() performs some global
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/app/ |
ContentMain.java | 12 * This class is used to initialize all types of process. It corresponds to 18 * specific initialization code in ContentMainRunner::Initialize. 24 * Initialize application context in native side.
|
/external/chromium_org/content/public/test/ |
content_test_suite_base.h | 17 // initializes bits and pieces of content; see the implementation of Initialize 23 virtual void Initialize() OVERRIDE; 28 // If set to false, prevents Initialize() to load external libraries
|
/external/clang/test/SemaObjCXX/ |
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 *'}}
|
/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).
|
/external/chromium_org/chrome/browser/resources/app_list/ |
start_page.js | 53 * Initialize the page. 55 function initialize() { 58 chrome.send('initialize'); 92 initialize: initialize, 101 document.addEventListener('DOMContentLoaded', appList.startPage.initialize);
|
/external/chromium_org/chrome/browser/resources/inline_login/ |
inline_login.js | 37 * Initialize the UI. 39 function initialize() { 43 chrome.send('initialize'); 75 initialize: initialize, 82 document.addEventListener('DOMContentLoaded', inline.login.initialize);
|
/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/chromium_org/chromeos/ime/ |
input_method_manager.cc | 22 void InputMethodManager::Initialize(InputMethodManager* instance) { 23 DCHECK(!g_input_method_manager) << "Do not call Initialize() multiple times.";
|