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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_iterator.h 8 #include "base/strings/string_piece.h"
17 virtual void Seek(const base::StringPiece& target) = 0;
20 virtual base::StringPiece Key() const = 0;
21 virtual base::StringPiece Value() const = 0;
  /external/chromium_org/content/browser/renderer_host/
smooth_scroll_calculator.h 8 #include "base/time/time.h"
19 double GetScrollDelta(base::TimeTicks now, base::TimeDelta desired_interval);
22 base::TimeTicks last_tick_time_;
  /external/chromium_org/content/port/browser/
smooth_scroll_gesture.h 8 #include "base/memory/ref_counted.h"
9 #include "base/time/time.h"
15 // This is a base class representing a single scroll gesture. These gestures are
18 class SmoothScrollGesture : public base::RefCounted<SmoothScrollGesture> {
27 virtual bool ForwardInputEvents(base::TimeTicks now,
30 friend class base::RefCounted<SmoothScrollGesture>;
  /external/chromium_org/content/public/common/
drop_data.h 16 #include "base/strings/nullable_string16.h"
27 FileInfo(const base::string16& path, const base::string16& display_name);
30 base::string16 path;
32 base::string16 display_name;
40 base::string16 url_title; // The title associated with |url|.
43 base::string16 download_metadata;
53 base::string16 filesystem_id;
56 base::NullableString16 text;
61 base::NullableString16 html
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
safe_shared_memory_pool.h 10 #include "base/basictypes.h"
11 #include "base/memory/shared_memory.h"
12 #include "base/synchronization/lock.h"
27 base::SharedMemory* shared_memory();
29 base::SharedMemory* memory,
33 base::SharedMemory* safe_shared_memory_;
34 base::SharedMemoryHandle original_handle_;
50 base::SharedMemory* AcquireSafeSharedMemory(base::SharedMemory*, size_t size);
51 void ReleaseSafeSharedMemory(const base::SharedMemoryHandle&)
    [all...]
  /external/chromium_org/media/base/
ranges.cc 5 #include "media/base/ranges.h"
10 void Ranges<base::TimeDelta>::DCheckLT(const base::TimeDelta& lhs,
11 const base::TimeDelta& rhs) const {
  /external/chromium_org/net/base/
auth.h 10 #include "base/memory/ref_counted.h"
11 #include "base/strings/string16.h"
12 #include "net/base/host_port_pair.h"
13 #include "net/base/net_export.h"
20 public base::RefCountedThreadSafe<AuthChallengeInfo> {
41 friend class base::RefCountedThreadSafe<AuthChallengeInfo>;
49 AuthCredentials(const base::string16& username,
50 const base::string16& password);
54 void Set(const base::string16& username, const base::string16& password)
    [all...]
  /external/chromium_org/net/ftp/
ftp_util.h 10 #include "base/strings/string16.h"
11 #include "net/base/net_export.h"
13 namespace base { namespace
33 static bool AbbreviatedMonthToNumber(const base::string16& text, int* number);
39 static bool LsDateListingToTime(const base::string16& month,
40 const base::string16& day,
41 const base::string16& rest,
42 const base::Time& current_time,
43 base::Time* result);
46 static bool WindowsDateListingToTime(const base::string16& date
    [all...]
  /external/chromium_org/net/test/
python_utils.h 8 #include "base/compiler_specific.h"
12 namespace base { namespace
20 void AppendToPythonPath(const base::FilePath& dir);
23 bool GetPyProtoPath(base::FilePath* dir);
  /external/chromium_org/ui/base/animation/
animation_container_element.h 8 #include "base/time/time.h"
9 #include "ui/base/ui_export.h"
19 virtual void SetStartTime(base::TimeTicks start_time) = 0;
22 virtual void Step(base::TimeTicks time_now) = 0;
26 virtual base::TimeDelta GetTimerInterval() const = 0;
  /external/chromium_org/ui/gfx/
text_utils.h 8 #include "base/strings/string16.h"
9 #include "ui/base/ui_export.h"
18 UI_EXPORT base::string16 RemoveAcceleratorChar(const base::string16& s,
19 base::char16 accelerator_char,
  /external/chromium/base/
base_paths.cc 5 #include "base/base_paths.h"
7 #include "base/file_path.h"
8 #include "base/file_util.h"
9 #include "base/path_service.h"
11 namespace base { namespace
18 case base::DIR_EXE:
19 PathService::Get(base::FILE_EXE, &cur);
22 case base::DIR_MODULE:
23 PathService::Get(base::FILE_MODULE, &cur);
26 case base::DIR_TEMP
    [all...]
  /external/chromium/net/base/
asn1_util.h 9 #include "base/string_piece.h"
33 bool ParseElement(base::StringPiece* in,
35 base::StringPiece* out,
40 bool GetElement(base::StringPiece* in,
42 base::StringPiece* out);
48 bool ExtractSPKIFromDERCert(base::StringPiece cert,
49 base::StringPiece* spki_out);
  /external/chromium_org/base/
path_service.h 10 #include "base/base_export.h"
11 #include "base/base_paths.h"
12 #include "base/gtest_prod_util.h"
15 namespace base { namespace
32 static bool Get(int key, base::FilePath* path);
44 static bool Override(int key, const base::FilePath& path);
50 const base::FilePath& path,
61 typedef bool (*ProviderFunc)(int, base::FilePath*);
73 friend class base::ScopedPathOverride;
  /external/chromium_org/cc/scheduler/
time_source.h 8 #include "base/memory/ref_counted.h"
9 #include "base/time/time.h"
10 #include "cc/base/cc_export.h"
27 class CC_EXPORT TimeSource : public base::RefCounted<TimeSource> {
32 virtual void SetTimebaseAndInterval(base::TimeTicks timebase,
33 base::TimeDelta interval) = 0;
34 virtual base::TimeTicks LastTickTime() = 0;
35 virtual base::TimeTicks NextTickTime() = 0;
41 friend class base::RefCounted<TimeSource>;
  /external/chromium_org/cc/test/
cc_test_suite.cc 9 #include "base/command_line.h"
10 #include "base/message_loop/message_loop.h"
11 #include "base/threading/thread_id_name_manager.h"
12 #include "cc/base/switches.h"
18 : base::TestSuite(argc, argv) {}
23 base::TestSuite::Initialize();
26 message_loop_.reset(new base::MessageLoop);
28 base::ThreadIdNameManager::GetInstance()->SetName(
29 base::PlatformThread::CurrentId(),
36 base::TestSuite::Shutdown()
    [all...]
  /external/chromium_org/chrome/browser/download/
download_path_reservation_tracker.h 8 #include "base/callback_forward.h"
10 namespace base { namespace
35 typedef base::Callback<void(const base::FilePath& target_path,
89 const base::FilePath& requested_target_path,
90 const base::FilePath& default_download_path,
97 static bool IsPathInUseForTesting(const base::FilePath& path);
  /external/chromium_org/chrome/browser/google_apis/
time_util_unittest.cc 7 #include "base/i18n/time_formatting.h"
8 #include "base/strings/utf_string_conversions.h"
9 #include "base/time/time.h"
16 std::string FormatTime(const base::Time& time) {
17 return base::UTF16ToUTF8(base::TimeFormatShortDateAndTime(time));
24 base::Time::Exploded exploded = {2013, 1, 0, 15, 17, 11, 35, 374};
25 base::Time local_time = base::Time::FromLocalExploded(exploded);
30 base::Time test_time
    [all...]
  /external/chromium_org/chrome/browser/metrics/variations/
variations_request_scheduler.h 8 #include "base/bind.h"
9 #include "base/gtest_prod_util.h"
10 #include "base/time/time.h"
11 #include "base/timer/timer.h"
33 static VariationsRequestScheduler* Create(const base::Closure& task,
38 explicit VariationsRequestScheduler(const base::Closure& task);
41 base::Closure task() const;
48 base::Closure task_;
53 base::RepeatingTimer<VariationsRequestScheduler> timer_;
56 base::OneShotTimer<VariationsRequestScheduler> one_shot_timer_
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_info_cache_observer.h 8 #include "base/strings/string16.h"
11 namespace base { namespace
21 virtual void OnProfileAdded(const base::FilePath& profile_path) {}
22 virtual void OnProfileWillBeRemoved(const base::FilePath& profile_path) {}
23 virtual void OnProfileWasRemoved(const base::FilePath& profile_path,
25 virtual void OnProfileNameChanged(const base::FilePath& profile_path,
27 virtual void OnProfileAvatarChanged(const base::FilePath& profile_path) {}
profile_shortcut_manager.h 8 #include "base/callback.h"
9 #include "base/files/file_path.h"
10 #include "base/strings/string16.h"
22 const base::FilePath& profile_path,
23 const base::Closure& callback) = 0;
28 virtual void CreateProfileShortcut(const base::FilePath& profile_path) = 0;
32 virtual void RemoveProfileShortcuts(const base::FilePath& profile_path) = 0;
38 const base::FilePath& profile_path,
39 const base::Callback<void(bool)>& callback) = 0;
  /external/chromium_org/chrome/browser/
shell_integration_linux.h 10 #include "base/basictypes.h"
11 #include "base/files/file_path.h"
15 namespace base { namespace
22 // in the XDG Base Directory Specification:
26 bool GetDataWriteLocation(base::Environment* env, base::FilePath* search_path);
29 // preference, as specified in the XDG Base Directory Specification:
32 std::vector<base::FilePath> GetDataSearchLocations(base::Environment* env);
35 std::string GetDesktopName(base::Environment* env)
    [all...]
  /external/chromium_org/chrome/installer/launcher_support/
chrome_launcher_support.h 8 namespace base { namespace
27 base::FilePath GetSetupExeForInstallationLevel(InstallationLevel level);
33 base::FilePath GetChromePathForInstallationLevel(InstallationLevel level);
37 base::FilePath GetAppHostPathForInstallationLevel(InstallationLevel level);
43 base::FilePath GetAnyChromePath();
49 base::FilePath GetAnyAppHostPath();
  /external/chromium_org/content/browser/media/
webrtc_internals_message_handler.h 8 #include "base/memory/ref_counted.h"
12 namespace base { namespace
14 } // namespace base
31 const base::Value* args) OVERRIDE;
34 void OnGetAllUpdates(const base::ListValue* list);
35 void OnGetAllStats(const base::ListValue* list);
36 void OnStartRtpRecording(const base::ListValue* list);
37 void OnStopRtpRecording(const base::ListValue* list);
  /external/chromium_org/extensions/common/
constants.cc 7 #include "base/files/file_path.h"
13 const base::FilePath::CharType kManifestFilename[] =
15 const base::FilePath::CharType kLocaleFolder[] =
17 const base::FilePath::CharType kMessagesFilename[] =
19 const base::FilePath::CharType kPlatformSpecificFolder[] =
35 const base::FilePath::CharType kExtensionFileExtension[] =
37 const base::FilePath::CharType kExtensionKeyFileExtension[] =

Completed in 807 milliseconds

1 2 3 4 5 6 78 91011>>