HomeSort by relevance Sort by last modified time
    Searched refs:base (Results 1 - 25 of 2067) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/content/
MutableContextWrapper.java 20 * Special version of {@link ContextWrapper} that allows the base context to
24 public MutableContextWrapper(Context base) {
25 super(base);
29 * Change the base context for this ContextWrapper. All calls will then be
30 * delegated to the base context. Unlike ContextWrapper, the base context
33 * @param base The new base context for this wrapper.
35 public void setBaseContext(Context base) {
36 mBase = base;
    [all...]
  /external/chromium/base/
keyboard_code_conversion_gtk.h 39 #include "base/keyboard_codes_posix.h"
41 namespace base { namespace
43 base::KeyboardCode WindowsKeyCodeForGdkKeyCode(int keycode);
45 int GdkKeyCodeForWindowsKeyCode(base::KeyboardCode keycode, bool shift);
cancellation_flag.cc 5 #include "base/cancellation_flag.h"
7 #include "base/logging.h"
9 namespace base { namespace
15 base::subtle::Release_Store(&flag_, 1);
19 return base::subtle::Acquire_Load(&flag_) != 0;
22 } // namespace 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...]
spin_wait.h 18 #include "base/platform_thread.h"
19 #include "base/time.h"
34 SPIN_FOR_TIMEDELTA_OR_UNTIL_TRUE(base::TimeDelta::FromSeconds(1), \
38 base::Time start = base::Time::Now(); \
39 const base::TimeDelta kTimeout = delta; \
41 if (kTimeout < base::Time::Now() - start) { \
42 EXPECT_LE((base::Time::Now() - start).InMilliseconds(), \
atomic_sequence_num.h 8 #include "base/atomicops.h"
9 #include "base/basictypes.h"
11 namespace base { namespace
16 explicit AtomicSequenceNumber(base::LinkerInitialized x) { /* seq_ is 0 */ }
20 base::subtle::NoBarrier_AtomicIncrement(&seq_, 1) - 1);
24 base::subtle::Atomic32 seq_;
28 } // namespace base
base_paths_mac.h 8 // This file declares Mac-specific path keys for the base module.
12 namespace base { namespace
22 } // namespace base
base_paths_posix.cc 7 #include "base/base_paths.h"
11 #include "base/file_path.h"
12 #include "base/file_util.h"
13 #include "base/linux_util.h"
14 #include "base/logging.h"
15 #include "base/path_service.h"
16 #include "base/scoped_ptr.h"
17 #include "base/sys_string_conversions.h"
19 namespace base { namespace
30 case base::FILE_EXE
    [all...]
multiprocess_test.h 8 #include "base/base_switches.h"
9 #include "base/command_line.h"
10 #include "base/process_util.h"
11 #include "base/string_util.h"
61 // TODO(darin): re-enable this once we have base/debug_util.h
63 base::ProcessHandle SpawnChild(const std::wstring& procname) {
67 base::ProcessHandle SpawnChild(const std::wstring& procname,
72 base::file_handle_mapping_vector empty_file_list;
78 base::ProcessHandle SpawnChild(
80 const base::file_handle_mapping_vector& fds_to_map
    [all...]
lazy_instance.cc 5 #include "base/lazy_instance.h"
7 #include "base/at_exit.h"
8 #include "base/atomicops.h"
9 #include "base/dynamic_annotations.h"
10 #include "base/basictypes.h"
11 #include "base/platform_thread.h"
13 namespace base { namespace
20 if (base::subtle::Acquire_CompareAndSwap(
29 base::subtle::Release_Store(&state_, STATE_CREATED);
34 base::AtExitManager::RegisterCallback(&LazyInstanceHelper::ResetState
    [all...]
leak_tracker_unittest.cc 5 #include "base/leak_tracker.h"
6 #include "base/scoped_ptr.h"
13 base::LeakTracker<ClassA> leak_tracker_;
18 base::LeakTracker<ClassB> leak_tracker_;
25 EXPECT_EQ(-1, base::LeakTracker<ClassA>::NumLiveInstances());
26 EXPECT_EQ(-1, base::LeakTracker<ClassB>::NumLiveInstances());
33 EXPECT_EQ(-1, base::LeakTracker<ClassA>::NumLiveInstances());
34 EXPECT_EQ(-1, base::LeakTracker<ClassB>::NumLiveInstances());
43 EXPECT_EQ(1, base::LeakTracker<ClassA>::NumLiveInstances());
44 EXPECT_EQ(0, base::LeakTracker<ClassB>::NumLiveInstances())
    [all...]
  /dalvik/tests/065-mismatched-implements/src/
Indirect.java 25 Base base = new Base(); local
  /dalvik/tests/066-mismatched-super/src/
Indirect.java 25 Base base = new Base(); local
  /external/guava/src/com/google/common/base/
package-info.java 20 package com.google.common.base;
FinalizableReference.java 17 package com.google.common.base;
  /external/bison/lib/
stripslash.c 35 char *base = base_name (file); local
36 char *base_lim = base + base_len (base);
basename.c 38 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name); local
41 for (p = base; *p; p++)
53 if (ISSLASH (*base))
54 base = p - 1;
59 base = p;
63 return (char *) base;
  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
stack_profile.h 3 unsigned long check_stack(unsigned long *base);
4 unsigned long check_stack_start(unsigned long *base, unsigned long real_sp,
6 unsigned long check_stack_stop(unsigned long *base, int id);
  /system/wlan/ti/wilink_6_1/platforms/os/linux/inc/
stack_profile.h 3 unsigned long check_stack(unsigned long *base);
4 unsigned long check_stack_start(unsigned long *base, unsigned long real_sp,
6 unsigned long check_stack_stop(unsigned long *base, int id);
  /external/chromium/base/i18n/
number_formatting.h 10 #include "base/basictypes.h"
11 #include "base/string16.h"
13 namespace base { namespace
17 } // namespace base
  /external/webkit/WebCore/html/
HTMLAllCollection.cpp 33 PassRefPtr<HTMLAllCollection> HTMLAllCollection::create(PassRefPtr<Node> base)
35 return adoptRef(new HTMLAllCollection(base));
38 HTMLAllCollection::HTMLAllCollection(PassRefPtr<Node> base)
39 : HTMLCollection(base, DocAll)
  /external/chromium/
Android.mk 8 base/at_exit.cc \
9 base/atomicops_internals_x86_gcc.cc \
10 base/base64.cc \
11 base/base_paths.cc \
12 base/base_paths_posix.cc \
13 base/base_switches.cc \
14 base/bzip2_error_handler.cc \
15 base/cancellation_flag.cc \
16 base/command_line.cc \
17 base/condition_variable_posix.cc
    [all...]
  /external/e2fsprogs/lib/e2p/
percent.c 18 unsigned int e2p_percent(int percent, unsigned int base)
25 return base / (100 / percent);
26 if (mask & base)
27 return (base / 100) * percent;
28 return base * percent / 100;
37 unsigned int base; local
43 fprintf(stderr, "Usage: %s percent base\n", argv[0]);
53 base = strtoul(argv[2], &p, 0);
55 fprintf(stderr, "Bad base: %s\n", argv[2]);
59 printf("%d percent of %u is %u.\n", percent, base,
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
stack_profile.c 39 unsigned long check_stack(unsigned long *base)
44 *base = ((sp & ~0x1fff) + 0x380);
48 unsigned long check_stack_start(unsigned long *base)
54 *base = from;
56 /* run from the stack pointer down to the base */
66 unsigned long check_stack_stop(unsigned long *base)
72 *base = from;
74 /* run from the stack pointer down to the base */
  /bionic/libc/stdlib/
strntoimax.c 31 intmax_t strntoimax(const char *nptr, char **endptr, int base, size_t n)
33 return (intmax_t) strntoumax(nptr, endptr, base, n);

Completed in 600 milliseconds

1 2 3 4 5 6 7 8 91011>>