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

1 2 34 5 6 7 8 91011>>

  /external/chromium/base/i18n/
rtl_unittest.cc 5 #include "base/i18n/rtl.h"
9 #include "base/file_path.h"
10 #include "base/string_util.h"
11 #include "base/utf_string_conversions.h"
12 #include "base/sys_string_conversions.h"
17 base::i18n::TextDirection GetTextDirection(const char* locale_name) {
18 return base::i18n::GetTextDirectionForLocale(locale_name);
28 EXPECT_EQ(base::i18n::LEFT_TO_RIGHT,
29 base::i18n::GetFirstStrongCharacterDirection(string));
34 EXPECT_EQ(base::i18n::LEFT_TO_RIGHT
    [all...]
  /external/chromium/base/third_party/dmg_fp/
Android.mk 11 base/third_party/dmg_fp/dtoa.cc \
12 base/third_party/dmg_fp/g_fmt.cc
15 $(LOCAL_PATH)/base/third_party/dmg_fp
  /external/chromium/chrome/browser/extensions/
convert_web_app.h 11 #include "base/memory/ref_counted.h"
15 namespace base { namespace
30 std::string ConvertTimeToExtensionVersion(const base::Time& time);
41 const base::Time& create_time);
  /external/chromium/chrome/browser/visitedlink/
visitedlink_event_listener.h 13 #include "base/timer.h"
16 namespace base { namespace
25 virtual void NewTable(base::SharedMemory* table_memory);
32 base::OneShotTimer<VisitedLinkEventListener> coalesce_timer_;
  /external/chromium/crypto/
mac_security_services_lock.cc 7 #include "base/memory/singleton.h"
8 #include "base/synchronization/lock.h"
21 base::Lock& lock() { return lock_; }
29 base::Lock lock_;
38 base::Lock& GetMacSecurityServicesLock() {
  /external/chromium/net/base/
network_change_notifier_win.h 11 #include "base/basictypes.h"
12 #include "base/timer.h"
13 #include "base/win/object_watcher.h"
14 #include "net/base/network_change_notifier.h"
19 public base::win::ObjectWatcher::Delegate {
38 base::win::ObjectWatcher addr_watcher_;
41 base::OneShotTimer<NetworkChangeNotifierWin> timer_;
host_cache.h 12 #include "base/gtest_prod_util.h"
13 #include "base/memory/ref_counted.h"
14 #include "base/threading/non_thread_safe.h"
15 #include "base/time.h"
16 #include "net/base/address_family.h"
17 #include "net/base/address_list.h"
22 class HostCache : public base::NonThreadSafe {
25 struct Entry : public base::RefCounted<Entry> {
26 Entry(int error, const AddressList& addrlist, base::TimeTicks expiration);
33 base::TimeTicks expiration
    [all...]
  /external/compiler-rt/make/
filter-inputs 19 base = os.path.basename(file)
20 if base not in seen:
21 seen.add(base)
  /external/openssh/openbsd-compat/
strtoll.c 50 strtoll(const char *nptr, char **endptr, int base)
59 * If base is 0, allow 0x for hex and 0 for octal, else
60 * assume decimal; if base is already 16, allow 0x.
74 if ((base == 0 || base == 16) &&
78 base = 16;
80 if (base == 0)
81 base = c == '0' ? 8 : 10;
86 * base. An input number that is greater than this value, if
91 * [-9223372036854775808..9223372036854775807] and the input base
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacdec/
huffcb.cpp 34 change variables 'base', 'sect_len_inc', and 'esc_val' to
89 UChar base = number of sfb in already detected sections
177 FOR (base = 0; base<total_sfb AND num_of_section<total_sfb)
182 WHILE (sect_length_incr == ESC_value AND base < total_sfb)
184 base += ESC_value;
189 base += sect_length_incr;
190 *pSect++ = base;
196 base += sfb_per_win - max_sfb;
197 *pSect++ = base;
295 Int base; \/* section boundary *\/ local
    [all...]
  /frameworks/compile/libbcc/runtime/make/
filter-inputs 19 base = os.path.basename(file)
20 if base not in seen:
21 seen.add(base)
  /external/chromium/third_party/libjingle/source/talk/
libjingle.scons 59 "base/latebindingsymboltable.cc",
60 "base/linux.cc",
65 "base/macconversion.cc",
66 "base/macutils.cc",
70 "base/unixfilesystem.cc",
71 "base/opensslidentity.cc",
72 "base/opensslstreamadapter.cc",
73 "base/sslidentity.cc",
74 "base/sslstreamadapter.cc",
83 "base/asyncfile.cc"
    [all...]
  /external/chromium/net/tools/flip_server/
string_piece_utils.h 11 #include "base/port.h"
12 #include "base/string_piece.h"
17 size_t operator()(const base::StringPiece& sp) const {
20 for (base::StringPiece::const_iterator it = sp.begin();
29 static bool EqualIgnoreCase(const base::StringPiece& piece1,
30 const base::StringPiece& piece2) {
31 base::StringPiece::const_iterator p1i = piece1.begin();
32 base::StringPiece::const_iterator p2i = piece2.begin();
45 static void RemoveWhitespaceContext(base::StringPiece* piece1) {
46 base::StringPiece::const_iterator c = piece1->begin()
    [all...]
  /external/chromium/base/memory/
scoped_native_library.cc 5 #include "base/memory/scoped_native_library.h"
7 namespace base { namespace
17 library_ = base::LoadNativeLibrary(library_path, NULL);
22 base::UnloadNativeLibrary(library_);
29 return base::GetFunctionPointerFromNativeLibrary(library_, function_name);
34 base::UnloadNativeLibrary(library_);
44 } // namespace base
  /external/chromium/base/
rand_util_unittest.cc 5 #include "base/rand_util.h"
19 EXPECT_EQ(base::RandInt(0, 0), 0);
20 EXPECT_EQ(base::RandInt(kIntMin, kIntMin), kIntMin);
21 EXPECT_EQ(base::RandInt(kIntMax, kIntMax), kIntMax);
26 volatile double number = base::RandDouble();
34 EXPECT_EQ(base::RandGenerator(1), 0U);
platform_file_unittest.cc 5 #include "base/file_util.h"
6 #include "base/memory/scoped_temp_dir.h"
7 #include "base/platform_file.h"
8 #include "base/time.h"
15 int ReadFully(base::PlatformFile file, int64 offset, char* data, int size) {
19 bytes_read = base::ReadPlatformFile(
38 int WriteFully(base::PlatformFile file, int64 offset,
43 bytes_written = base::WritePlatformFile(
67 base::PlatformFileError error_code = base::PLATFORM_FILE_OK
    [all...]
path_service_unittest.cc 5 #include "base/path_service.h"
7 #include "base/basictypes.h"
8 #include "base/file_util.h"
9 #include "base/file_path.h"
11 #include "base/win/windows_version.h"
27 if (dir_type == base::DIR_CACHE)
37 bool result = PathService::Get(base::DIR_LOCAL_APP_DATA_LOW, &path);
53 for (int key = base::DIR_CURRENT; key < base::PATH_END; ++key) {
57 for (int key = base::PATH_WIN_START + 1; key < base::PATH_WIN_END; ++key)
    [all...]
  /external/chromium/chrome/browser/net/
load_timing_observer.h 9 #include "base/gtest_prod_util.h"
10 #include "base/hash_tables.h"
11 #include "base/time.h"
13 #include "net/base/net_log.h"
36 base::TimeTicks base_ticks;
44 base::TimeTicks connect_start;
45 base::TimeTicks connect_end;
46 base::TimeTicks dns_start;
47 base::TimeTicks dns_end;
48 base::TimeTicks ssl_start
    [all...]
url_info.h 23 #include "base/time.h"
25 #include "net/base/host_port_pair.h"
67 static const base::TimeDelta kMaxNonNetworkDnsLookupDuration;
74 static const base::TimeDelta kNullDuration;
89 static void set_cache_expiration(base::TimeDelta time);
90 static base::TimeDelta get_cache_expiration();
122 base::TimeDelta resolve_duration() const { return resolve_duration_;}
123 base::TimeDelta queue_duration() const { return queue_duration_;}
135 void set_time(const base::TimeTicks& time) { time_ = time; }
138 base::TimeDelta GetDuration()
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
GrantedPermissions.java 35 GrantedPermissions(GrantedPermissions base) {
36 pkgFlags = base.pkgFlags;
37 grantedPermissions = (HashSet<String>) base.grantedPermissions.clone();
39 if (base.gids != null) {
40 gids = base.gids.clone();
  /bionic/libc/stdlib/
strtoumax.c 43 strtoumax(const char *nptr, char **endptr, int base)
65 if ((base == 0 || base == 16) &&
69 base = 16;
71 if (base == 0)
72 base = c == '0' ? 8 : 10;
80 switch (base) {
85 cutoff = UINTMAX_MAX / base;
86 cutlim = UINTMAX_MAX % base;
96 if (c >= base)
    [all...]
  /external/bluetooth/glib/gio/tests/
filter-streams.c 20 GInputStream *base, *f1, *f2; local
23 base = g_memory_input_stream_new_from_data ("abcdefghijk", -1, NULL);
24 f1 = g_buffered_input_stream_new (base);
25 f2 = g_buffered_input_stream_new (base);
29 g_assert (g_filter_input_stream_get_base_stream (G_FILTER_INPUT_STREAM (f1)) == base);
30 g_assert (g_filter_input_stream_get_base_stream (G_FILTER_INPUT_STREAM (f2)) == base);
32 g_assert (!g_input_stream_is_closed (base));
38 g_assert (!g_input_stream_is_closed (base));
43 g_assert (g_input_stream_is_closed (base));
45 g_object_unref (base);
51 GOutputStream *base, *f1, *f2; local
102 GInputStream *base, *f1, *f2; local
174 GOutputStream *base, *f1, *f2; local
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_test_util.h 11 #include "base/memory/ref_counted.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/message_loop.h"
14 #include "base/synchronization/waitable_event.h"
22 namespace base { namespace
46 : public base::RefCountedThreadSafe<ThreadNotificationService> {
48 explicit ThreadNotificationService(base::Thread* notification_thread);
54 friend class base::RefCountedThreadSafe<ThreadNotificationService>;
60 base::WaitableEvent done_event_;
61 base::Thread* notification_thread_
    [all...]
  /external/chromium/chrome/common/
jstemplate_builder.h 20 namespace base { namespace
29 std::string GetTemplateHtml(const base::StringPiece& html_template,
31 const base::StringPiece& template_id);
36 std::string GetI18nTemplateHtml(const base::StringPiece& html_template,
42 std::string GetTemplatesHtml(const base::StringPiece& html_template,
44 const base::StringPiece& template_id);
58 void AppendJsTemplateProcessHtml(const base::StringPiece& template_id,
  /external/astl/include/
iomanip 46 struct SetBase { int base; };
66 inline android::SetBase setbase(int base) {
68 params.base = base;
73 os.setf(params.base == 8 ? ios_base::oct :
74 params.base == 10 ? ios_base::dec :
75 params.base == 16 ? ios_base::hex :

Completed in 673 milliseconds

1 2 34 5 6 7 8 91011>>