/frameworks/base/telephony/java/android/telephony/ |
JapanesePhoneNumberFormatter.java | 186 int base = 0; local 193 short value = FORMAT_MAP[base + ch - '0']; 209 base = value;
|
/hardware/libhardware/modules/gralloc/ |
mapper.cpp | 59 hnd->base = intptr_t(mappedAddress) + hnd->offset; 63 *vaddr = (void*)hnd->base; 72 void* base = (void*)hnd->base; local 74 //ALOGD("unmapping from %p, size=%d", base, size); 75 if (munmap(base, size) < 0) { 79 hnd->base = 0; 114 if (hnd->base) { 131 if (hnd->base) { 156 *vaddr = (void*)hnd->base; [all...] |
/hardware/msm7k/libgralloc/ |
mapper.cpp | 68 hnd->base = 0; 71 hnd->base = intptr_t(mappedAddress) + hnd->offset; 75 *vaddr = (void*)hnd->base; 84 void* base = (void*)hnd->base; local 87 base = (void*)(intptr_t(base) - hnd->offset); 90 //ALOGD("unmapping from %p, size=%d, flags=%08x", base, size, hnd->flags); 91 if (munmap(base, size) < 0) { 95 hnd->base = 0 [all...] |
/bionic/libc/inet/ |
inet_pton.c | 109 u_int digit, base; local 127 val = 0; base = 10; 131 base = 16, c = *++src; 133 base = 8; 136 if (pton && base != 10) 141 if (digit >= base) 143 val = (val * base) + digit; 145 } else if (base == 16 && isxdigit(c)) {
|
/external/bluetooth/bluez/test/ |
uuidtest.c | 4 const char *base = "00000000-0000-1000-8000-00805F9B34FB"; variable 54 if (bt_string_to_uuid(&u, base)) { 59 if (bt_string_to_uuid(&ub, base)) { 97 if (strcasecmp(buf, base) != 0) {
|
/external/bluetooth/glib/gio/tests/ |
desktop-app-info.c | 227 GFile *base, *file; local 229 base = g_file_new_for_path (basedir); 230 file = g_file_get_child (base, "applications"); 233 file = g_file_get_child (base, "mime");
|
/external/chromium/base/ |
atomicops_internals_arm_gcc.h | 5 // This file is an internal atomic implementation, use base/atomicops.h instead. 13 namespace base { namespace 122 } // namespace base::subtle 123 } // namespace base
|
atomicops_internals_x86_gcc.h | 5 // This file is an internal atomic implementation, use base/atomicops.h instead. 24 namespace base { namespace 261 } // namespace base::subtle 262 } // namespace base
|
bind_helpers.h | 7 // that are bound by the Bind() function in base/bind.h. 9 // The public functions are base::Unretained() and base::ConstRef(). 54 #include "base/basictypes.h" 55 #include "base/template_util.h" 57 namespace base { namespace 91 // want to probe for. Then we create a class Base that inherits from both T 96 // Now, if TargetFunc exists somewhere in T, then &Base::TargetFunc has an 106 // static const bool value = sizeof(GoodCheck<Base>(0)) == sizeof(Yes); 110 // by specializing GoodCheck() on Base instead of T [all...] |
dir_reader_linux.h | 15 #include "base/logging.h" 16 #include "base/eintr_wrapper.h" 20 namespace base { namespace 96 } // namespace base
|
file_path_unittest.cc | 5 #include "base/basictypes.h" 6 #include "base/file_path.h" 7 #include "base/file_util.h" 8 #include "base/utf_string_conversions.h" 609 const FilePath base(FPL("blah")); 625 FilePath result(base); 630 EXPECT_EQ(base.Append(cases[i].expected).value(), result.value()) << 703 FilePath base = jpg.BaseName().RemoveExtension(); local 704 EXPECT_EQ(FILE_PATH_LITERAL("foo"), base.value()); 706 FilePath path_no_ext = base_dir.Append(base); [all...] |
message_pump_glib.h | 9 #include "base/memory/scoped_ptr.h" 10 #include "base/message_pump.h" 11 #include "base/observer_list.h" 12 #include "base/time.h" 19 namespace base { namespace 141 } // namespace base
|
shared_memory.h | 14 #include "base/file_descriptor_posix.h" 18 #include "base/base_api.h" 19 #include "base/basictypes.h" 20 #include "base/process.h" 24 namespace base { namespace 233 } // namespace base
|
shared_memory_win.cc | 5 #include "base/shared_memory.h" 7 #include "base/logging.h" 8 #include "base/utf_string_conversions.h" 10 namespace base { namespace 228 } // namespace base
|
string16.h | 33 #include "base/base_api.h" 34 #include "base/basictypes.h" 45 namespace base { namespace 130 } // namespace base 175 std::basic_string<char16, base::string16_char_traits>; 177 typedef std::basic_string<char16, base::string16_char_traits> string16; 179 namespace base { namespace
|
string_piece.cc | 9 #include "base/string_piece.h" 11 namespace base { namespace 214 } // namespace base
|
/external/chromium/base/debug/ |
stack_trace_win.cc | 5 #include "base/debug/stack_trace.h" 12 #include "base/basictypes.h" 13 #include "base/logging.h" 14 #include "base/memory/singleton.h" 15 #include "base/synchronization/lock.h" 17 namespace base { namespace 62 base::AutoLock lock(lock_); 132 base::Lock lock_; 197 } // namespace base
|
trace_event.cc | 5 #include "base/debug/trace_event.h" 7 #include "base/format_macros.h" 8 #include "base/file_path.h" 9 #include "base/file_util.h" 10 #include "base/path_service.h" 11 #include "base/platform_thread.h" 12 #include "base/process_util.h" 13 #include "base/stringprintf.h" 14 #include "base/utf_string_conversions.h" 15 #include "base/time.h 19 namespace base { namespace [all...] |
/external/chromium/base/files/ |
file_path_watcher.h | 11 #include "base/basictypes.h" 12 #include "base/file_path.h" 13 #include "base/memory/ref_counted.h" 14 #include "base/message_loop_proxy.h" 16 namespace base { namespace 33 class Delegate : public base::RefCountedThreadSafe<Delegate> { 73 class PlatformDelegate : public base::RefCountedThreadSafe<PlatformDelegate> { 94 scoped_refptr<base::MessageLoopProxy> message_loop() const { 98 void set_message_loop(base::MessageLoopProxy* loop) { 112 friend class base::RefCountedThreadSafe<PlatformDelegate> [all...] |
file_path_watcher_win.cc | 5 #include "base/files/file_path_watcher.h" 7 #include "base/file_path.h" 8 #include "base/file_util.h" 9 #include "base/logging.h" 10 #include "base/memory/ref_counted.h" 11 #include "base/message_loop_proxy.h" 12 #include "base/time.h" 13 #include "base/win/object_watcher.h" 15 namespace base { namespace 21 public base::win::ObjectWatcher::Delegate [all...] |
/external/chromium/base/i18n/ |
icu_string_conversions.cc | 5 #include "base/i18n/icu_string_conversions.h" 9 #include "base/basictypes.h" 10 #include "base/logging.h" 11 #include "base/string_util.h" 12 #include "base/utf_string_conversions.h" 19 namespace base { namespace 294 } // namespace base
|
/external/chromium/base/memory/ |
weak_ptr.h | 55 #include "base/base_api.h" 56 #include "base/logging.h" 57 #include "base/memory/ref_counted.h" 58 #include "base/threading/thread_checker.h" 60 namespace base { namespace 69 // via base::WeakPtr::~WeakPtr(). 80 friend class base::RefCountedThreadSafe<Flag>; 123 // base class gives us a way to access ref_ in a protected fashion. 253 } // namespace base
|
/external/chromium/base/metrics/ |
field_trial.h | 56 // base::FieldTrialList::Find("MemoryExperiment") && 57 // !base::FieldTrialList::Find("MemoryExperiment")->group_name().empty()); 81 #include "base/base_api.h" 82 #include "base/gtest_prod_util.h" 83 #include "base/memory/ref_counted.h" 84 #include "base/synchronization/lock.h" 85 #include "base/time.h" 87 namespace base { namespace 158 friend class base::FieldTrialList; 288 base::Lock lock_ [all...] |
histogram_unittest.cc | 7 #include "base/metrics/histogram.h" 8 #include "base/scoped_ptr.h" 9 #include "base/time.h" 12 namespace base { namespace 329 // out to the base namespace here. We need to be friends to corrupt the 402 } // namespace base
|
stats_counters.h | 11 #include "base/base_api.h" 12 #include "base/metrics/stats_table.h" 13 #include "base/time.h" 15 namespace base { namespace 50 base::StatsCounter counter(name); \ 57 base::StatsRate hit_count(name); \ 195 } // namespace base
|