HomeSort by relevance Sort by last modified time
    Searched full:base (Results 451 - 475 of 48320) sorted by null

<<11121314151617181920>>

  /external/chromium_org/android_webview/lib/main/
webview_tests.cc 6 #include "base/android/jni_android.h"
7 #include "base/test/test_suite.h"
10 android_webview::RegisterJni(base::android::AttachCurrentThread());
11 return base::TestSuite(argc, argv).Run();
  /external/chromium_org/base/android/
base_jni_registrar.h 10 #include "base/base_export.h"
12 namespace base { namespace
15 // Register all JNI bindings necessary for base.
19 } // namespace base
  /external/chromium_org/base/files/
scoped_platform_file_closer.h 8 #include "base/memory/scoped_ptr.h"
9 #include "base/platform_file.h"
11 namespace base { namespace
24 } // namespace base
  /external/chromium_org/base/strings/
nullable_string16.cc 5 #include "base/strings/nullable_string16.h"
9 #include "base/strings/utf_string_conversions.h"
11 namespace base { namespace
17 } // namespace base
  /external/chromium_org/base/threading/
non_thread_safe_impl.cc 5 #include "base/threading/non_thread_safe_impl.h"
7 #include "base/logging.h"
9 namespace base { namespace
23 } // namespace base
  /external/chromium_org/chrome/browser/extensions/
pack_extension_job.h 10 #include "base/files/file_path.h"
11 #include "base/memory/ref_counted.h"
12 #include "base/strings/string16.h"
20 class PackExtensionJob : public base::RefCountedThreadSafe<PackExtensionJob> {
25 virtual void OnPackSuccess(const base::FilePath& crx_file,
26 const base::FilePath& key_file) = 0;
35 const base::FilePath& root_directory,
36 const base::FilePath& key_file,
47 static base::string16 StandardSuccessMessage(const base::FilePath& crx_file
    [all...]
  /external/chromium_org/chrome/browser/local_discovery/storage/
path_util.h 8 #include "base/files/file_path.h"
12 base::FilePath NormalizeFilePath(const base::FilePath& path);
15 explicit ParsedPrivetPath(const base::FilePath& path);
  /external/chromium_org/chrome/browser/media/
DEPS 3 "+media/base",
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
av_scanning_file_validator.cc 12 #include "base/bind.h"
13 #include "base/callback.h"
14 #include "base/location.h"
15 #include "base/logging.h"
16 #include "base/strings/utf_string_conversions.h"
21 #include "base/win/scoped_comptr.h"
29 base::File::Error ScanFile(const base::FilePath& dest_platform_path) {
32 base::win::ScopedComPtr<IAttachmentExecute> attachment_services;
38 return base::File::FILE_ERROR_SECURITY
    [all...]
  /external/chromium_org/chrome/browser/metrics/
thread_watcher_android_unittest.cc 6 #include "base/android/application_status_listener.h"
7 #include "base/run_loop.h"
8 #include "base/synchronization/waitable_event.h"
17 void OnThreadWatcherTask(base::WaitableEvent* event) {
21 void PostAndWaitForWatchdogThread(base::WaitableEvent* event) {
24 base::Bind(&OnThreadWatcherTask, event),
25 base::TimeDelta::FromSeconds(0));
27 EXPECT_TRUE(event->TimedWait(base::TimeDelta::FromSeconds(1)));
30 void NotifyApplicationStateChange(base::android::ApplicationState state) {
31 base::WaitableEvent watchdog_thread_event(false, false)
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/performance/
sync_timing_helper.cc 7 #include "base/strings/string_number_conversions.h"
8 #include "base/time/time.h"
20 base::TimeDelta SyncTimingHelper::TimeSyncCycle(
22 base::Time start = base::Time::Now();
24 return base::Time::Now() - start;
28 base::TimeDelta SyncTimingHelper::TimeMutualSyncCycle(
30 base::Time start = base::Time::Now();
32 return base::Time::Now() - start
    [all...]
  /external/chromium_org/chrome/browser/task_manager/
task_manager_browsertest_util.h 8 #include "base/strings/string16.h"
15 // |title_pattern|. The match is done via string_util's base::MatchPattern, so
22 const base::string16& title_pattern);
25 base::string16 MatchTab(const char* title); // "Tab: " + title
26 base::string16 MatchAnyTab(); // "Tab: *"
27 base::string16 MatchAboutBlankTab(); // "Tab: about:blank"
28 base::string16 MatchExtension(const char* title); // "Extension: " + title
29 base::string16 MatchAnyExtension(); // "Extension: *"
30 base::string16 MatchApp(const char* title); // "App: " + title
31 base::string16 MatchAnyApp(); // "App: *
    [all...]
  /external/chromium_org/chrome/browser/ui/
sad_tab.cc 10 bool SadTab::ShouldShow(base::TerminationStatus status) {
11 return (status == base::TERMINATION_STATUS_ABNORMAL_TERMINATION ||
12 status == base::TERMINATION_STATUS_PROCESS_WAS_KILLED ||
13 status == base::TERMINATION_STATUS_PROCESS_CRASHED);
  /external/chromium_org/chrome/installer/setup/
archive_patch_helper_unittest.cc 5 #include "base/file_util.h"
6 #include "base/files/file_path.h"
7 #include "base/files/scoped_temp_dir.h"
8 #include "base/path_service.h"
20 ASSERT_TRUE(base::PathExists(data_dir_));
38 static base::FilePath data_dir_;
41 base::ScopedTempDir test_dir_;
44 base::FilePath ArchivePatchHelperTest::data_dir_;
50 base::FilePath src = data_dir_.AppendASCII("archive1.7z");
51 base::FilePath patch = data_dir_.AppendASCII("archive.diff")
59 base::FilePath base = data_dir_.AppendASCII("archive2.7z"); local
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
util.cc 7 #include "base/json/json_writer.h"
8 #include "base/values.h"
10 std::string SerializeValue(const base::Value* value) {
12 base::JSONWriter::Write(value, &json);
  /external/chromium_org/chrome/test/perf/
perftests.cc 5 #include "base/message_loop/message_loop.h"
6 #include "base/test/perf_test_suite.h"
10 base::PerfTestSuite suite(argc, argv);
12 base::MessageLoop main_message_loop;
  /external/chromium_org/chromeos/dbus/
blocking_method_caller.cc 7 #include "base/bind.h"
8 #include "base/callback_helpers.h"
9 #include "base/location.h"
10 #include "base/task_runner.h"
11 #include "base/threading/thread_restrictions.h"
22 base::ScopedClosureRunner* signaler,
46 base::Closure signal_task(
47 base::Bind(&base::WaitableEvent::Signal,
48 base::Unretained(&on_blocking_method_call_)))
    [all...]
  /external/chromium_org/cloud_print/gcp20/prototype/
x_privet_token.cc 7 #include "base/base64.h"
8 #include "base/format_macros.h"
9 #include "base/guid.h"
10 #include "base/logging.h"
11 #include "base/sha1.h"
12 #include "base/strings/string_number_conversions.h"
13 #include "base/strings/stringprintf.h"
23 using base::Time;
24 using base::TimeDelta;
31 const base::Time& gen_time
    [all...]
  /external/chromium_org/components/dom_distiller/content/
DEPS 5 "+net/base",
  /external/chromium_org/components/nacl/renderer/
manifest_service_channel.h 8 #include "base/callback.h"
9 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/memory/weak_ptr.h"
12 #include "base/platform_file.h"
13 #include "base/process/process.h"
14 #include "base/synchronization/lock.h"
17 namespace base { namespace
19 } // namespace base
31 typedef base::Callback<void(const base::PlatformFile&)> OpenResourceCallback
    [all...]
  /external/chromium_org/components/web_contents_delegate_android/
DEPS 5 "+ui/base",
  /external/chromium_org/content/browser/renderer_host/media/
audio_input_sync_writer.h 8 #include "base/memory/scoped_vector.h"
9 #include "base/process/process.h"
10 #include "base/sync_socket.h"
11 #include "base/time/time.h"
14 #include "media/base/audio_bus.h"
17 #include "base/file_descriptor_posix.h"
20 namespace base { namespace
31 explicit AudioInputSyncWriter(base::SharedMemory* shared_memory,
45 bool PrepareForeignSocketHandle(base::ProcessHandle process_handle,
47 base::SyncSocket::Handle* foreign_handle)
    [all...]
  /external/chromium_org/content/shell/app/
shell_breakpad_client.cc 7 #include "base/command_line.h"
8 #include "base/files/file_path.h"
9 #include "base/strings/string16.h"
10 #include "base/strings/utf_string_conversions.h"
25 const base::FilePath& exe_path,
26 base::string16* product_name,
27 base::string16* version,
28 base::string16* special_build,
29 base::string16* channel_name) {
30 *product_name = base::ASCIIToUTF16("content_shell")
    [all...]
  /external/chromium_org/media/base/
media.cc 5 #include "media/base/media.h"
7 #include "base/files/file_path.h"
8 #include "base/lazy_instance.h"
9 #include "base/path_service.h"
10 #include "base/synchronization/lock.h"
12 #include "media/base/yuv_convert.h"
18 extern bool InitializeMediaLibraryInternal(const base::FilePath& module_dir);
24 bool Initialize(const base::FilePath& module_dir) {
25 base::AutoLock auto_lock(lock_);
34 base::AutoLock auto_lock(lock_)
    [all...]
ranges.cc 5 #include "media/base/ranges.h"
10 void Ranges<base::TimeDelta>::DCheckLT(const base::TimeDelta& lhs,
11 const base::TimeDelta& rhs) const {

Completed in 1423 milliseconds

<<11121314151617181920>>