HomeSort by relevance Sort by last modified time
    Searched refs:Run (Results 1 - 25 of 669) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/text/
BidiRunList.h 30 template <class Run>
45 Run* firstRun() const { return m_firstRun; }
46 Run* lastRun() const { return m_lastRun; }
47 Run* logicallyLastRun() const { return m_logicallyLastRun; }
50 void addRun(Run*);
51 void prependRun(Run*);
53 void moveRunToEnd(Run*);
54 void moveRunToBeginning(Run*);
60 void setLogicallyLastRun(Run* run) { m_logicallyLastRun = run;
    [all...]
  /external/chromium/base/test/
run_all_perftests.cc 8 return base::PerfTestSuite(argc, argv).Run();
run_all_unittests.cc 8 return base::TestSuite(argc, argv).Run();
  /external/chromium/crypto/
run_all_unittests.cc 16 return base::TestSuite(argc, argv).Run();
  /external/webkit/Source/WebKit/chromium/tests/
WebUnitTests.cpp 41 return testSuite.Run();
  /external/chromium/base/
bind_unittest.cc 87 // during argument forwarding in the Run() methods.
227 EXPECT_EQ(63, c0.Run());
230 EXPECT_EQ(75, c1.Run(13));
233 EXPECT_EQ(85, c2.Run(13, 12));
236 EXPECT_EQ(92, c3.Run(13, 12, 11));
239 EXPECT_EQ(94, c4.Run(13, 12, 11, 10));
242 EXPECT_EQ(87, c5.Run(13, 12, 11, 10, 9));
245 EXPECT_EQ(69, c6.Run(13, 12, 11, 10, 9, 14));
269 normal_cb.Run();
270 method_cb.Run();
    [all...]
task_queue.h 14 // A TaskQueue is a queue of tasks waiting to be run. To run the tasks, call
15 // the Run method. A task queue is itself a Task so that it can be placed in a
22 // Push the specified task onto the queue. When the queue is run, the tasks
23 // will be run in the order they are pushed.
25 // This method takes ownership of |task| and will delete task after it is run
26 // (or when the TaskQueue is destroyed, if we never got a chance to run it).
35 // Run all the tasks in the queue. New tasks pushed onto the queue during
36 // a run will be run next time |Run| is called
    [all...]
task_queue.cc 34 void TaskQueue::Run() {
35 // Nothing to run if our queue is empty.
42 // Run the tasks that are ready.
45 // Run the task and then delete it.
46 (*task)->Run();
message_pump.h 18 // Please see the comments above the Run method for an illustration of how
24 // Called from within Run in response to ScheduleWork or when the message
30 // Called from within Run in response to ScheduleDelayedWork or when the
40 // Called from within Run just before the message pump goes to sleep.
48 // The Run method is called to enter the message pump's run loop.
55 // The anatomy of a typical run loop:
89 // Notice that the run loop cycles between calling DoInternalWork, DoWork,
94 // Notice also that after each callout to foreign code, the run loop checks
98 // NOTE: Care must be taken to handle Run being called again from within an
    [all...]
message_pump_default.h 21 virtual void Run(Delegate* delegate);
27 // This flag is set to false when Run should return.
  /external/chromium/chrome/browser/automation/
ui_controls_internal.h 21 virtual void Run();
ui_controls_internal.cc 15 void ClickTask::Run() {
  /external/chromium/chrome/browser/extensions/
extension_input_api.h 18 virtual void Run();
pack_extension_job.cc 28 NewRunnableMethod(this, &PackExtensionJob::Run));
30 Run();
40 void PackExtensionJob::Run() {
51 if (creator.Run(root_directory_, crx_file_out_, key_file_, key_file_out_)) {
  /external/chromium/chrome/browser/sync/glue/
do_optimistic_refresh_task.cc 17 void DoOptimisticRefreshForAutofill::Run() {
do_optimistic_refresh_task.h 19 virtual void Run();
sync_backend_host_mock.cc 10 arg2->Run();
bookmark_data_type_controller_unittest.cc 37 MOCK_METHOD2(Run, void(DataTypeController::StartResult result,
105 EXPECT_CALL(start_callback_, Run(DataTypeController::OK, _));
106 bookmark_dtc_->Start(NewCallback(&start_callback_, &StartCallback::Run));
115 EXPECT_CALL(start_callback_, Run(DataTypeController::OK, _));
116 bookmark_dtc_->Start(NewCallback(&start_callback_, &StartCallback::Run));
132 EXPECT_CALL(start_callback_, Run(DataTypeController::OK_FIRST_RUN, _));
133 bookmark_dtc_->Start(NewCallback(&start_callback_, &StartCallback::Run));
140 EXPECT_CALL(start_callback_, Run(DataTypeController::BUSY, _));
141 bookmark_dtc_->Start(NewCallback(&start_callback_, &StartCallback::Run));
142 bookmark_dtc_->Start(NewCallback(&start_callback_, &StartCallback::Run));
    [all...]
ui_model_worker.cc 18 // This is fine, the work will get scheduled and run normally or run by our
26 work->Run();
34 // could get Run() in Stop() and call OnTaskCompleted before we post).
81 // Any tasks scheduled or to be scheduled on the UI MessageLoop will not run.
85 // totally finished. There should only ever be 0 or 1 tasks Run() here.
88 pending_work_->Run(); // OnTaskCompleted will set pending_work_ to NULL.
105 void UIModelWorker::CallDoWorkAndSignalTask::Run() {
117 work_->Run();
120 // get run twice
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface_unittest.cc 86 void Run(const string& command);
89 // Methods to set up the test (called before Run()).
109 // Methods to check the test results (called after Run()).
111 // Checks that no text was written to stderr during Run(), and Run()
115 // Checks that Run() returned non-zero and the stderr output is exactly
120 // Checks that Run() returned non-zero and the stderr contains the given
170 // The result of Run().
205 // run with the option on (which used to be the only way) except in certain
212 // previous run. Delete it
    [all...]
  /external/chromium/chrome/common/extensions/
extension_unpacker_unittest.cc 48 EXPECT_FALSE(unpacker_->Run());
54 EXPECT_FALSE(unpacker_->Run());
60 EXPECT_FALSE(unpacker_->Run());
66 EXPECT_FALSE(unpacker_->Run());
74 EXPECT_FALSE(unpacker_->Run());
80 EXPECT_FALSE(unpacker_->Run());
87 EXPECT_FALSE(unpacker_->Run());
95 EXPECT_FALSE(unpacker_->Run());
101 EXPECT_TRUE(unpacker_->Run());
108 EXPECT_TRUE(unpacker_->Run());
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 166 void Run() {
241 it->second.Run();
247 it->second.Run();
254 TheMapOfTests[f_num].Run();
268 it->second.Run();
320 void Run() {
324 REGISTER_TEST(Run, 00)
341 void Run() {
350 REGISTER_TEST(Run, 1);
394 void Run() {
    [all...]
  /external/chromium/chrome/browser/
background_mode_manager_linux.cc 28 virtual void Run();
33 virtual void Run();
51 void DisableLaunchOnStartupTask::Run() {
59 void EnableLaunchOnStartupTask::Run() {
  /external/chromium/chrome/browser/first_run/
first_run_import_observer.cc 19 MessageLoop::current()->Run();
  /external/chromium/net/base/
run_all_unittests.cc 27 return test_suite.Run();

Completed in 556 milliseconds

1 2 3 4 5 6 7 8 91011>>