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

1 2 3 4 56 7 8 91011>>

  /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/ui/base/android/
ui_base_jni_registrar.cc 5 #include "ui/base/android/ui_base_jni_registrar.h"
7 #include "base/android/jni_android.h"
8 #include "base/android/jni_registrar.h"
9 #include "ui/base/android/view_android.h"
10 #include "ui/base/android/window_android.h"
11 #include "ui/base/clipboard/clipboard_android_initialization.h"
12 #include "ui/base/device_form_factor_android.h"
13 #include "ui/base/l10n/l10n_util_android.h"
14 #include "ui/base/resource/resource_bundle_android.h"
15 #include "ui/base/touch/touch_device.h
    [all...]
  /external/chromium_org/ui/ozone/
run_all_unittests.cc 5 #include "base/bind.h"
6 #include "base/test/launcher/unit_test_launcher.h"
7 #include "base/test/test_suite.h"
12 class OzoneTestSuite : public base::TestSuite {
17 // base::TestSuite:
26 : base::TestSuite(argc, argv) {}
29 base::TestSuite::Initialize();
33 base::TestSuite::Shutdown();
41 return base::LaunchUnitTests(argc,
43 base::Bind(&OzoneTestSuite::Run
    [all...]
  /external/chromium_org/webkit/browser/database/
vfs_backend.h 8 #include "base/files/file.h"
9 #include "base/process/process.h"
10 #include "base/strings/string16.h"
13 namespace base { namespace
21 static base::File OpenFile(const base::FilePath& file_path,
24 static base::File OpenTempFileInDirectory(const base::FilePath& dir_path,
27 static int DeleteFile(const base::FilePath& file_path, bool sync_dir);
29 static uint32 GetFileAttributes(const base::FilePath& file_path)
    [all...]
  /external/chromium_org/win8/metro_driver/
secondary_tile.h 7 #include "base/files/file_path.h"
8 #include "base/strings/string16.h"
9 #include "base/win/metro.h"
12 BOOL MetroIsPinnedToStartScreen(const base::string16& tile_id);
16 const base::string16& tile_id,
17 const base::win::MetroPinUmaResultCallback& callback);
21 const base::string16& tile_id,
22 const base::string16& title,
23 const base::string16& url,
24 const base::FilePath& logo_path
    [all...]
  /external/clang/test/PCH/
cxx11-inheriting-ctors.cpp 9 struct Base {
10 Base(int) {}
13 Base(T) {}
16 struct Test : Base {
17 using Base::Base;
21 struct Test2 : Base {
22 using Base::Base;
36 Test3<Base> test3a(42)
    [all...]
  /external/chromium_org/content/browser/service_worker/
service_worker_internals_ui.h 10 #include "base/containers/scoped_ptr_hash_map.h"
11 #include "base/files/file_path.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/weak_ptr.h"
19 namespace base { namespace
33 public base::SupportsWeakPtr<ServiceWorkerInternalsUI> {
35 typedef base::Callback<void(ServiceWorkerStatusCode)> StatusCallback;
51 void GetOptions(const base::ListValue* args);
52 void SetOption(const base::ListValue* args)
    [all...]
  /external/chromium_org/mojo/android/javatests/
mojo_test_case.cc 7 #include "base/android/jni_android.h"
8 #include "base/android/scoped_java_ref.h"
9 #include "base/at_exit.h"
10 #include "base/bind.h"
11 #include "base/logging.h"
12 #include "base/message_loop/message_loop.h"
13 #include "base/run_loop.h"
14 #include "base/test/test_support_android.h"
21 base::ShadowingAtExitManager at_exit;
22 base::MessageLoopForUI message_loop
    [all...]
  /external/chromium_org/ui/gl/
gl_implementation_osmesa.cc 7 #include "base/files/file_path.h"
8 #include "base/logging.h"
9 #include "base/native_library.h"
10 #include "base/path_service.h"
18 base::NativeLibrary LoadLibraryAndPrintError(const base::FilePath& filename) {
19 base::NativeLibraryLoadError error;
20 base::NativeLibrary library = base::LoadNativeLibrary(filename, &error);
29 base::NativeLibrary LoadLibraryAndPrintError(const char* filename)
    [all...]
  /external/chromium_org/base/threading/
thread_id_name_manager_unittest.cc 5 #include "base/threading/thread_id_name_manager.h"
7 #include "base/threading/platform_thread.h"
8 #include "base/threading/thread.h"
20 base::ThreadIdNameManager* manager = base::ThreadIdNameManager::GetInstance();
21 base::Thread thread_a(kAThread);
22 base::Thread thread_b(kBThread);
35 base::ThreadIdNameManager* manager = base::ThreadIdNameManager::GetInstance();
36 base::Thread thread_a(kAThread)
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/
tokenized_string_unittest.cc 7 #include "base/strings/utf_string_conversions.h"
15 base::string16 GetContent(const TokenizedString& tokenized) {
19 base::string16 str;
24 str += base::UTF8ToUTF16(mappings[i].ToString());
32 base::string16 empty;
34 EXPECT_EQ(base::string16(), GetContent(tokens));
39 base::string16 text(base::UTF8ToUTF16("ScratchPad"));
41 EXPECT_EQ(base::UTF8ToUTF16("scratch{0,7} pad{7,10}"),
45 base::string16 text(base::UTF8ToUTF16("Chess2.0"))
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
native_file_util.h 8 #include "base/files/file.h"
9 #include "base/files/file_path.h"
10 #include "base/files/file_util_proxy.h"
11 #include "base/memory/scoped_ptr.h"
15 namespace base { namespace
41 static base::File CreateOrOpen(const base::FilePath& path, int file_flags);
42 static base::File::Error EnsureFileExists(const base::FilePath& path,
44 static base::File::Error CreateDirectory(const base::FilePath& path
    [all...]
local_file_util.cc 7 #include "base/file_util.h"
8 #include "base/files/file_enumerator.h"
9 #include "base/files/file_util_proxy.h"
27 LocalFileEnumerator(const base::FilePath& platform_root_path,
28 const base::FilePath& virtual_root_path,
37 virtual base::FilePath Next() OVERRIDE;
39 virtual base::Time LastModifiedTime() OVERRIDE;
43 base::FileEnumerator file_enum_;
44 base::FileEnumerator::FileInfo file_util_info_;
45 base::FilePath platform_root_path_
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/
item.hpp 30 , typename Base
34 : Base
36 typedef typename Base::upper_bound_ index_;
38 typedef typename next<typename Base::size>::type size;
39 typedef Base base; typedef in struct:boost::mpl::v_item
45 using Base::item_;
50 , typename Base
52 struct v_item<T,Base,1>
53 : Base
58 typedef Base base; typedef in struct:boost::mpl::v_item
76 typedef Base base; typedef in struct:boost::mpl::v_mask
92 typedef Base base; typedef in struct:boost::mpl::v_mask
    [all...]
  /external/libsepol/tests/
test-linker-roles.c 38 * - role in base, no modules
39 * - role in base optional, no modules
40 * - role a in base, b in module
41 * - role a in base and module (additive)
42 * - role a in base and 2 module
43 * - role a in base optional, b in module
44 * - role a in base, b in module optional
45 * - role a in base optional, b in module optional
46 * - role a in base optional and module
47 * - role a in base and module optiona
    [all...]
  /external/chromium_org/sync/protocol/
proto_value_conversions.cc 11 #include "base/base64.h"
12 #include "base/basictypes.h"
13 #include "base/logging.h"
14 #include "base/strings/string_number_conversions.h"
15 #include "base/values.h"
16 #include "sync/internal_api/public/base/unique_position.h"
51 base::StringValue* MakeInt64Value(int64 x) {
52 return new base::StringValue(base::Int64ToString(x));
57 base::StringValue* MakeBytesValue(const std::string& bytes)
    [all...]
  /external/chromium_org/chrome/installer/util/
move_tree_work_item_unittest.cc 9 #include "base/base_paths.h"
10 #include "base/file_util.h"
11 #include "base/files/memory_mapped_file.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/path_service.h"
14 #include "base/strings/string_util.h"
15 #include "base/strings/utf_string_conversions.h"
29 base::ScopedTempDir temp_from_dir_;
30 base::ScopedTempDir temp_to_dir_;
37 file.open(base::UTF16ToASCII(filename).c_str())
    [all...]
logging_installer_unittest.cc 7 #include "base/file_util.h"
8 #include "base/files/file.h"
9 #include "base/files/file_path.h"
10 #include "base/files/scoped_temp_dir.h"
11 #include "base/win/scoped_handle.h"
18 base::ScopedTempDir temp_dir;
21 base::FilePath temp_file = temp_dir.path().Append(L"temp");
23 base::WriteFile(temp_file, &test_data[0], test_data.size()));
24 ASSERT_TRUE(base::PathExists(temp_file));
27 EXPECT_TRUE(base::GetFileSize(temp_file, &file_size))
    [all...]
  /external/chromium_org/ui/events/
events_stub.cc 5 #include "base/logging.h"
6 #include "base/time/time.h"
21 EventType EventTypeFromNative(const base::NativeEvent& native_event) {
26 int EventFlagsFromNative(const base::NativeEvent& native_event) {
31 base::TimeDelta EventTimeFromNative(const base::NativeEvent& native_event) {
33 return base::TimeDelta();
36 gfx::Point EventLocationFromNative(const base::NativeEvent& native_event) {
42 const base::NativeEvent& native_event) {
47 int EventButtonFromNative(const base::NativeEvent& native_event)
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
window_commands.h 10 #include "base/callback_forward.h"
11 #include "base/memory/scoped_ptr.h"
13 namespace base { namespace
22 typedef base::Callback<Status(
25 const base::DictionaryValue&,
26 scoped_ptr<base::Value>*)> WindowCommand;
32 const base::DictionaryValue& params,
33 scoped_ptr<base::Value>* value);
39 const base::DictionaryValue& params,
40 scoped_ptr<base::Value>* value)
    [all...]
  /external/chromium_org/net/socket/
socket_net_log_params.cc 7 #include "base/bind.h"
8 #include "base/values.h"
9 #include "net/base/host_port_pair.h"
10 #include "net/base/ip_endpoint.h"
11 #include "net/base/net_util.h"
17 base::Value* NetLogSocketErrorCallback(int net_error,
20 base::DictionaryValue* dict = new base::DictionaryValue();
26 base::Value* NetLogHostPortPairCallback(const HostPortPair* host_and_port,
28 base::DictionaryValue* dict = new base::DictionaryValue()
    [all...]
  /external/chromium_org/cc/base/
rolling_time_delta_history_unittest.cc 5 #include "cc/base/rolling_time_delta_history.h"
14 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(0.0));
15 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(50.0));
16 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(100.0));
18 empty_history.InsertSample(base::TimeDelta::FromMilliseconds(10));
19 empty_history.InsertSample(base::TimeDelta::FromMilliseconds(15));
20 empty_history.InsertSample(base::TimeDelta::FromMilliseconds(20));
22 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(0.0));
23 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(50.0));
24 EXPECT_EQ(base::TimeDelta(), empty_history.Percentile(100.0))
    [all...]
  /external/chromium-trace/trace-viewer/src/
tcmalloc.js 7 base.require('tcmalloc.heap');
8 base.require('tcmalloc.tcmalloc_instance_view');
9 base.require('tcmalloc.tcmalloc_snapshot_view');
11 base.exportTo('tcmalloc', function() {
  /external/chromium_org/base/
bind_helpers.cc 5 #include "base/bind_helpers.h"
7 #include "base/callback.h"
9 namespace base { namespace
14 } // namespace base
  /external/chromium_org/base/debug/
trace_event_unittest.h 5 #include "base/time/time.h"
7 namespace base { namespace
11 void HighResSleepForTraceTest(base::TimeDelta elapsed);
14 } // namespace base

Completed in 893 milliseconds

1 2 3 4 56 7 8 91011>>