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

1 2 3 4 56 7 8 91011>>

  /external/dbus/tools/
strtoull.c 66 strtoull(const char * nptr, char ** endptr, int base)
89 if ((base == 0 || base == 16) &&
96 base = 16;
98 if (base == 0)
99 base = c == '0' ? 8 : 10;
101 if (base < 2 || base > 36)
104 cutoff = ULLONG_MAX / base;
105 cutlim = ULLONG_MAX % base;
    [all...]
  /external/doclava/src/com/google/doclava/
TagInfo.java 54 public void makeHDF(Data data, String base) {
55 data.setValue(base + ".name", name());
56 data.setValue(base + ".text", text());
57 data.setValue(base + ".kind", kind());
60 public static void makeHDF(Data data, String base, TagInfo[] tags) {
61 makeHDF(data, base, tags, null, 0, 0);
64 public static void makeHDF(Data data, String base, InheritedTags tags) {
65 makeHDF(data, base, tags.tags(), tags.inherited(), 0, 0);
68 private static int makeHDF(Data data, String base, TagInfo[] tags, InheritedTags inherited,
73 j = makeHDF(data, base, inherited.tags(), inherited.inherited(), j, depth + 1)
    [all...]
  /external/llvm/include/llvm/ADT/
StringSet.h 26 typedef llvm::StringMap<char, AllocatorTy> base; typedef in class:llvm::StringSet
32 return base::insert(llvm::StringMapEntry<char>::
33 Create(KeyStart, KeyEnd, base::getAllocator(), '+'));
  /external/chromium/
Android.mk 7 include external/chromium/base/third_party/dmg_fp/Android.mk
42 android/ui/base/l10n/l10n_util.cc \
51 base/atomicops_internals_x86_gcc.cc
55 base/at_exit.cc \
56 base/base64.cc \
57 base/environment.cc \
58 base/file_descriptor_shuffle.cc \
59 base/file_path.cc \
60 base/file_util.cc \
61 base/file_util_android.cc
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
EarlyExitException.pm 6 use base qw( ANTLR::Runtime::Exception );
  /external/chromium/base/debug/
profiler.h 15 namespace base { namespace
33 } // namespace base
stack_trace.cc 5 #include "base/debug/stack_trace.h"
7 namespace base { namespace
21 } // namespace base
  /external/chromium/base/
dir_reader_fallback.h 9 namespace base { namespace
29 } // namespace base
perftimer.h 11 #include "base/basictypes.h"
12 #include "base/time.h"
38 begin_ = base::TimeTicks::Now();
42 base::TimeDelta Elapsed() const {
43 return base::TimeTicks::Now() - begin_;
47 base::TimeTicks begin_;
resource_util.h 14 #include "base/base_api.h"
15 #include "base/basictypes.h"
17 namespace base { namespace
24 } // namespace base
  /external/chromium/base/test/
perf_test_suite.cc 5 #include "base/test/perf_test_suite.h"
7 #include "base/command_line.h"
8 #include "base/debug/debugger.h"
9 #include "base/file_path.h"
10 #include "base/path_service.h"
11 #include "base/perftimer.h"
12 #include "base/process_util.h"
13 #include "base/string_util.h"
16 namespace base { namespace
29 PathService::Get(base::FILE_EXE, &exe)
    [all...]
perf_test_suite.h 9 #include "base/test/test_suite.h"
11 namespace base { namespace
21 } // namespace base
  /external/chromium/base/threading/
non_thread_safe.h 10 #include "base/threading/non_thread_safe_impl.h"
13 namespace base { namespace
37 // class MyClass : public base::NonThreadSafe {
55 } // namespace base
non_thread_safe_impl.cc 5 #include "base/threading/non_thread_safe_impl.h"
7 #include "base/logging.h"
9 namespace base { namespace
23 } // namespace base
non_thread_safe_impl.h 9 #include "base/base_api.h"
10 #include "base/threading/thread_checker_impl.h"
12 namespace base { namespace
38 } // namespace base
thread_checker.h 10 #include "base/threading/thread_checker_impl.h"
13 namespace base { namespace
57 } // namespace base
worker_pool.h 9 #include "base/base_api.h"
10 #include "base/tracked.h"
14 namespace base { namespace
34 } // namespace base
  /external/chromium/chrome/browser/extensions/
extension_devtools_events.cc 9 #include "base/string_number_conversions.h"
10 #include "base/string_split.h"
11 #include "base/string_util.h"
12 #include "base/stringprintf.h"
31 base::SplitString(
33 if (parts.size() == 2 && base::StringToInt(parts[0], tab_id)) {
42 return base::StringPrintf("%s%d.%s",
50 return base::StringPrintf("%s%d.%s",
external_registry_extension_loader_win.h 19 friend class base::RefCountedThreadSafe<ExternalExtensionLoader>;
  /external/chromium/chrome/browser/
icon_manager_linux.cc 7 #include "base/mime_util.h"
8 #include "base/threading/thread_restrictions.h"
16 base::ThreadRestrictions::ScopedAllowIO allow_io;
  /external/chromium/chrome/browser/sync/notifier/
cache_invalidation_packet_handler.h 14 #include "base/basictypes.h"
15 #include "base/gtest_prod_util.h"
16 #include "base/memory/scoped_callback_factory.h"
17 #include "base/memory/weak_ptr.h"
18 #include "base/threading/non_thread_safe.h"
38 base::WeakPtr<talk_base::Task> base_task,
55 base::NonThreadSafe non_thread_safe_;
56 base::ScopedCallbackFactory<CacheInvalidationPacketHandler>
59 base::WeakPtr<talk_base::Task> base_task_;
  /external/chromium/crypto/
run_all_unittests.cc 5 #include "base/test/test_suite.h"
16 return base::TestSuite(argc, argv).Run();
  /external/chromium/net/base/
auth.h 11 #include "base/memory/ref_counted.h"
12 #include "base/string16.h"
13 #include "net/base/net_export.h"
20 public base::RefCountedThreadSafe<AuthChallengeInfo> {
37 friend class base::RefCountedThreadSafe<AuthChallengeInfo>;
49 class AuthData : public base::RefCountedThreadSafe<AuthData> {
60 friend class base::RefCountedThreadSafe<AuthData>;
pem_tokenizer.h 12 #include "base/string_piece.h"
25 PEMTokenizer(const base::StringPiece& str,
45 void Init(const base::StringPiece& str,
54 base::StringPiece str_;
58 base::StringPiece::size_type pos_;
  /external/chromium/net/tools/flip_server/
balsa_headers_token_utils.h 13 #include "base/string_piece.h"
26 const base::StringPiece& key,
27 const base::StringPiece& token);
33 const base::StringPiece& key,
39 static void RemoveLastTokenFromHeaderValue(const base::StringPiece& key,

Completed in 434 milliseconds

1 2 3 4 56 7 8 91011>>