HomeSort by relevance Sort by last modified time
    Searched refs:base (Results 76 - 100 of 21775) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/metrics/variations/
uniformity_field_trials.h 8 namespace base { namespace
17 void SetupUniformityFieldTrials(const base::Time install_date);
  /external/chromium_org/chrome/installer/util/
delete_tree_work_item.h 10 #include "base/files/file_path.h"
11 #include "base/files/scoped_temp_dir.h"
12 #include "base/memory/scoped_ptr.h"
31 DeleteTreeWorkItem(const base::FilePath& root_path,
32 const base::FilePath& temp_path,
33 const std::vector<base::FilePath>& key_paths);
36 base::FilePath root_path_;
39 base::FilePath temp_path_;
46 scoped_ptr<base::FilePath[]> key_paths_;
50 // container for this since base::ScopedTempDir isn't CopyConstructible
    [all...]
  /external/chromium_org/chrome/renderer/safe_browsing/
feature_extractor_clock.cc 11 base::TimeTicks FeatureExtractorClock::Now() {
12 return base::TimeTicks::Now();
  /external/chromium_org/components/autofill/core/browser/
autofill_regexes.h 8 #include "base/strings/string16.h"
15 bool MatchesPattern(const base::string16& input,
16 const base::string16& pattern);
  /external/chromium_org/content/common/
font_list.h 8 #include "base/memory/scoped_ptr.h"
10 namespace base { namespace
34 scoped_ptr<base::ListValue> GetFontList_SlowBlocking();
  /external/chromium_org/crypto/
mac_security_services_lock.h 10 namespace base { namespace
21 CRYPTO_EXPORT base::Lock& GetMacSecurityServicesLock();
  /external/chromium_org/net/base/
test_data_directory.cc 5 #include "net/base/test_data_directory.h"
7 #include "base/base_paths.h"
8 #include "base/path_service.h"
13 const base::FilePath::CharType kCertificateRelativePath[] =
17 base::FilePath GetTestCertsDirectory() {
18 base::FilePath src_root;
19 PathService::Get(base::DIR_SOURCE_ROOT, &src_root);
23 base::FilePath GetTestClientCertsDirectory() {
25 return base::FilePath(kCertificateRelativePath);
31 base::FilePath GetWebSocketTestDataDirectory()
    [all...]
  /external/chromium_org/net/cert/
jwk_serializer_openssl.cc 7 #include "base/logging.h"
14 const base::StringPiece& spki_der,
15 base::DictionaryValue* public_key_jwk) {
  /external/chromium_org/net/tools/dump_cache/
upgrade_win.h 7 #include "base/command_line.h"
8 #include "base/files/file_path.h"
9 #include "base/strings/string16.h"
12 HANDLE CreateServer(base::string16* pipe_number);
16 int UpgradeCache(const base::FilePath& output_path, HANDLE pipe);
19 int RunSlave(const base::FilePath& input_path,
20 const base::string16& pipe_number);
  /external/chromium_org/remoting/client/
client_context.h 10 #include "base/threading/thread.h"
12 namespace base { namespace
14 } // namespace base
24 ClientContext(base::SingleThreadTaskRunner* main_task_runner);
30 base::SingleThreadTaskRunner* main_task_runner();
31 base::SingleThreadTaskRunner* decode_task_runner();
32 base::SingleThreadTaskRunner* audio_decode_task_runner();
35 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_;
38 base::Thread decode_thread_;
41 base::Thread audio_decode_thread_
    [all...]
  /external/chromium_org/remoting/host/setup/
test_util.h 8 #include "base/platform_file.h"
14 // base::ClosePlatformFile().
15 bool MakePipe(base::PlatformFile* read_handle,
16 base::PlatformFile* write_handle);
native_messaging_reader.h 8 #include "base/basictypes.h"
9 #include "base/callback.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/memory/weak_ptr.h"
12 #include "base/platform_file.h"
13 #include "base/threading/thread.h"
15 namespace base { namespace
18 } // namespace base
30 typedef base::Callback<void(scoped_ptr<base::Value>)> MessageCallback
    [all...]
  /external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
random.cc 10 return base::RandDouble();
14 return base::RandUint64();
  /external/clang/test/CodeGenCXX/
debug-info-template-recursive.cpp 3 class base { }; class
5 template <class T> class foo : public base {
  /external/chromium/chrome/common/
time_format.h 11 #include "base/string16.h"
15 namespace base { namespace
28 static string16 TimeElapsed(const base::TimeDelta& delta);
31 static string16 TimeRemaining(const base::TimeDelta& delta);
34 static string16 TimeRemainingShort(const base::TimeDelta& delta);
49 static string16 RelativeDate(const base::Time& time,
50 const base::Time* optional_midnight_today);
  /external/chromium_org/base/test/
null_task_runner.h 5 #include "base/basictypes.h"
6 #include "base/compiler_specific.h"
7 #include "base/single_thread_task_runner.h"
9 namespace base { namespace
14 class NullTaskRunner : public base::SingleThreadTaskRunner {
19 const base::Closure& task,
20 base::TimeDelta delay) OVERRIDE;
23 const base::Closure& task,
24 base::TimeDelta delay) OVERRIDE;
  /external/chromium_org/chrome/browser/chromeos/
xinput_hierarchy_changed_event_listener_aura.cc 10 base::MessageLoopForUI::current()->AddObserver(this);
14 base::MessageLoopForUI::current()->RemoveObserver(this);
17 base::EventStatus XInputHierarchyChangedEventListener::WillProcessEvent(
18 const base::NativeEvent& event) {
23 return base::EVENT_CONTINUE;
27 const base::NativeEvent& event) {
  /external/chromium_org/media/audio/
scoped_loop_observer.h 8 #include "base/memory/ref_counted.h"
9 #include "base/message_loop/message_loop.h"
10 #include "base/message_loop/message_loop_proxy.h"
12 namespace base { namespace
18 // A common base class for AudioOutputDevice and AudioInputDevice that manages
25 : public base::MessageLoop::DestructionObserver {
28 const scoped_refptr<base::MessageLoopProxy>& message_loop);
34 const scoped_refptr<base::MessageLoopProxy>& message_loop() { return loop_; }
39 void ObserveLoopDestruction(bool enable, base::WaitableEvent* done);
43 scoped_refptr<base::MessageLoopProxy> loop_
    [all...]
  /external/chromium_org/net/disk_cache/
cache_util.h 8 #include "base/basictypes.h"
9 #include "net/base/net_export.h"
12 namespace base { namespace
24 NET_EXPORT_PRIVATE bool MoveCache(const base::FilePath& from_path,
25 const base::FilePath& to_path);
29 NET_EXPORT_PRIVATE void DeleteCache(const base::FilePath& path,
33 NET_EXPORT_PRIVATE bool DeleteCacheFile(const base::FilePath& name);
37 bool DelayedCacheCleanup(const base::FilePath& full_path);
  /frameworks/base/cmds/am/
am 6 base=/system
7 export CLASSPATH=$base/framework/am.jar
8 exec app_process $base/bin com.android.commands.am.Am "$@"
  /external/chromium_org/base/
base_paths_android.cc 5 // Defines base::PathProviderAndroid which replaces base::PathProviderPosix for
6 // Android in base/path_service.cc.
10 #include "base/android/jni_android.h"
11 #include "base/android/path_utils.h"
12 #include "base/base_paths.h"
13 #include "base/file_util.h"
14 #include "base/files/file_path.h"
15 #include "base/logging.h"
16 #include "base/process/process_metrics.h
18 namespace base { namespace
    [all...]
  /external/chromium_org/chrome/browser/net/
network_time_tracker.h 8 #include "base/callback.h"
9 #include "base/memory/weak_ptr.h"
10 #include "base/threading/thread_checker.h"
11 #include "base/time/time.h"
12 #include "net/base/network_time_notifier.h"
29 // const base::Time& network_time - the actual time.
30 // const base::TimeDelta& resolution - how precise the reading is.
31 // const base::TimeDelta& latency - the http request's latency.
32 typedef base::Callback<void(const base::Time&
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
fileapi_worker.h 24 #include "base/basictypes.h"
25 #include "base/callback_forward.h"
26 #include "base/memory/weak_ptr.h"
27 #include "base/platform_file.h"
31 namespace base { namespace
33 } // namespace base
45 typedef base::Callback<FileSystemInterface*()> FileSystemGetter;
47 typedef base::Callback<
48 void(base::PlatformFileError result)> StatusCallback;
49 typedef base::Callback
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/performance_monitor/
performance_monitor_handler.h 8 #include "base/compiler_specific.h"
9 #include "base/memory/weak_ptr.h"
12 namespace base { namespace
16 } // namespace base
25 public base::SupportsWeakPtr<PerformanceMonitorHandler> {
36 void ReturnResults(const std::string& callback, const base::Value* results);
40 void HandleGetActiveIntervals(const base::ListValue* args);
44 void HandleGetFlagEnabled(const base::ListValue* args);
48 void HandleGetAggregationTypes(const base::ListValue* args);
52 void HandleGetEventTypes(const base::ListValue* args)
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
zip.h 8 #include "base/callback.h"
9 #include "base/files/file_path.h"
18 typedef base::Callback<bool(const base::FilePath&)> FilterCallback;
19 bool ZipWithFilterCallback(const base::FilePath& src_dir,
20 const base::FilePath& dest_file,
26 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
34 bool ZipFiles(const base::FilePath& src_dir,
35 const std::vector<base::FilePath>& src_relative_paths
    [all...]

Completed in 649 milliseconds

1 2 34 5 6 7 8 91011>>