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

<<11121314151617181920>>

  /external/chromium/chrome/browser/password_manager/
password_store_x.h 11 #include "base/memory/scoped_ptr.h"
12 #include "base/time.h"
41 virtual bool RemoveLoginsCreatedBetween(const base::Time& delete_begin,
42 const base::Time& delete_end) = 0;
45 virtual bool GetLoginsCreatedBetween(const base::Time& get_begin,
46 const base::Time& get_end,
68 virtual void RemoveLoginsCreatedBetweenImpl(const base::Time& delete_begin,
69 const base::Time& delete_end);
  /external/chromium/net/disk_cache/
file.h 11 #include "base/memory/ref_counted.h"
12 #include "base/platform_file.h"
29 class File : public base::RefCounted<File> {
30 friend class base::RefCounted<File>;
39 explicit File(base::PlatformFile file);
46 base::PlatformFile platform_file() const;
81 base::PlatformFile platform_file_; // Regular, asynchronous IO handle.
82 base::PlatformFile sync_platform_file_; // Synchronous IO handle.
  /external/chromium/net/socket/
ssl_host_info.h 11 #include "base/memory/ref_counted.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/time.h"
14 #include "net/base/cert_verifier.h"
15 #include "net/base/cert_verify_result.h"
16 #include "net/base/completion_callback.h"
17 #include "net/base/dnsrr_resolver.h"
93 base::TimeTicks verification_start_time() const {
97 base::TimeTicks verification_end_time() const {
125 base::TimeTicks verification_start_time_
    [all...]
  /external/chromium/webkit/glue/
webfileutilities_impl.h 8 #include "base/platform_file.h"
34 virtual base::PlatformFile openFile(const WebKit::WebString& path, int mode);
35 virtual void closeFile(base::PlatformFile& handle);
36 virtual long long seekFile(base::PlatformFile handle,
39 virtual bool truncateFile(base::PlatformFile handle, long long offset);
40 virtual int readFromFile(base::PlatformFile handle, char* data, int length);
41 virtual int writeToFile(base::PlatformFile handle,
  /external/elfutils/tests/
coverage.sh 17 base="$(basename $f .gcno)"
18 fc="$base.c"
19 gcda="$base.gcda"
  /external/kernel-headers/original/asm-mips/
div64.h 22 #define do_div64_32(res, high, low, base) ({ \
54 : "Jr" (base), "0" (high), "1" (low)); \
59 #define do_div(n, base) ({ \
66 __base = (base); \
93 #define do_div(n, base) ({ \
100 __base = (base); \
  /external/openssh/openbsd-compat/
inet_aton.c 91 int base, n; local
105 val = 0; base = 10;
109 base = 16, c = *++cp;
111 base = 8;
115 val = (val * base) + (c - '0');
117 } else if (base == 16 && isascii(c) && isxdigit(c)) {
  /external/srec/tools/make_g2g/
make_g2g.c 42 LFPRINTF(stdout,"usage: %s -base <base grammar filename> [-out <output file>] \n",exename);
49 LCHAR base[P_PATH_MAX]; local
72 rc = ESR_CommandLineGetValue(argc, (const char **)argv, L("base"), base, &len);
75 LFPRINTF(stderr, "ERROR: Mandatory option -base is unspecified\n");
97 if (base==NULL || (LSTRCMP(outFilename, L(""))==0 ))
106 LSTRCPY(outFilename,base);
113 LFPRINTF(stdout,"Loading grammar %s from text files...\n",base);
114 CHKLOG(rc, SR_GrammarLoad(base, &grammar))
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
ArrayBufferView.cpp 55 char* base = static_cast<char*>(baseAddress()); local
56 memmove(base + byteOffset, array->baseAddress(), array->byteLength());
69 char* base = static_cast<char*>(baseAddress()); local
70 memmove(base + byteOffset, data, dataByteLength);
83 char* base = static_cast<char*>(baseAddress()); local
84 memset(base + byteOffset, 0, rangeByteLength);
  /frameworks/testing/uiautomator/cmds/uiautomator/
uiautomator 35 export base=/system
60 CLASSPATH=/system/framework/android.test.runner.jar:${base}/framework/uiautomator.jar
108 exec app_process ${base}/bin com.android.commands.uiautomator.Launcher ${args}
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/
div64.h 25 #define do_div64_32(res, high, low, base) ({ unsigned long __quot32, __mod32; unsigned long __cf, __tmp, __tmp2, __i; __asm__(".set push\n\t" ".set noat\n\t" ".set noreorder\n\t" "move %2, $0\n\t" "move %3, $0\n\t" "b 1f\n\t" " li %4, 0x21\n" "0:\n\t" "sll $1, %0, 0x1\n\t" "srl %3, %0, 0x1f\n\t" "or %0, $1, %5\n\t" "sll %1, %1, 0x1\n\t" "sll %2, %2, 0x1\n" "1:\n\t" "bnez %3, 2f\n\t" " sltu %5, %0, %z6\n\t" "bnez %5, 3f\n" "2:\n\t" " addiu %4, %4, -1\n\t" "subu %0, %0, %z6\n\t" "addiu %2, %2, 1\n" "3:\n\t" "bnez %4, 0b\n\t" " srl %5, %1, 0x1f\n\t" ".set pop" : "=&r" (__mod32), "=&r" (__tmp), "=&r" (__quot32), "=&r" (__cf), "=&r" (__i), "=&r" (__tmp2) : "Jr" (base), "0" (high), "1" (low)); (res) = __quot32; __mod32; })
26 #define do_div(n, base) ({ unsigned long long __quot; unsigned long __mod; unsigned long long __div; unsigned long __upper, __low, __high, __base; __div = (n); __base = (base); __high = __div >> 32; __low = __div; __upper = __high; if (__high) __asm__("divu $0, %z2, %z3" : "=h" (__upper), "=l" (__high) : "Jr" (__high), "Jr" (__base) : GCC_REG_ACCUM); __mod = do_div64_32(__low, __upper, __low, __base); __quot = __high; __quot = __quot << 32 | __low; (n) = __quot; __mod; })
30 #define do_div(n, base) ({ unsigned long __quot; unsigned int __mod; unsigned long __div; unsigned int __base; __div = (n); __base = (base); __mod = __div % __base; __quot = __div / __base; (n) = __quot; __mod; })
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/
div64.h 25 #define do_div64_32(res, high, low, base) ({ unsigned long __quot32, __mod32; unsigned long __cf, __tmp, __tmp2, __i; __asm__(".set push\n\t" ".set noat\n\t" ".set noreorder\n\t" "move %2, $0\n\t" "move %3, $0\n\t" "b 1f\n\t" " li %4, 0x21\n" "0:\n\t" "sll $1, %0, 0x1\n\t" "srl %3, %0, 0x1f\n\t" "or %0, $1, %5\n\t" "sll %1, %1, 0x1\n\t" "sll %2, %2, 0x1\n" "1:\n\t" "bnez %3, 2f\n\t" " sltu %5, %0, %z6\n\t" "bnez %5, 3f\n" "2:\n\t" " addiu %4, %4, -1\n\t" "subu %0, %0, %z6\n\t" "addiu %2, %2, 1\n" "3:\n\t" "bnez %4, 0b\n\t" " srl %5, %1, 0x1f\n\t" ".set pop" : "=&r" (__mod32), "=&r" (__tmp), "=&r" (__quot32), "=&r" (__cf), "=&r" (__i), "=&r" (__tmp2) : "Jr" (base), "0" (high), "1" (low)); (res) = __quot32; __mod32; })
26 #define do_div(n, base) ({ unsigned long long __quot; unsigned long __mod; unsigned long long __div; unsigned long __upper, __low, __high, __base; __div = (n); __base = (base); __high = __div >> 32; __low = __div; __upper = __high; if (__high) __asm__("divu $0, %z2, %z3" : "=h" (__upper), "=l" (__high) : "Jr" (__high), "Jr" (__base) : GCC_REG_ACCUM); __mod = do_div64_32(__low, __upper, __low, __base); __quot = __high; __quot = __quot << 32 | __low; (n) = __quot; __mod; })
30 #define do_div(n, base) ({ unsigned long __quot; unsigned int __mod; unsigned long __div; unsigned int __base; __div = (n); __base = (base); __mod = __div % __base; __quot = __div / __base; (n) = __quot; __mod; })
  /system/core/libcutils/
qsort_r_compat.c 26 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk,
28 qsort_r(base, nel, width, thunk, compar);
47 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk,
52 qsort_r(base, nel, width, compar_wrapper, &compar_data);
75 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk,
81 qsort(base, nel, width, compar_wrapper);
  /external/chromium/chrome/browser/safe_browsing/
client_side_detection_service.cc 7 #include "base/command_line.h"
8 #include "base/file_path.h"
9 #include "base/file_util_proxy.h"
10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/message_loop.h"
13 #include "base/metrics/histogram.h"
14 #include "base/platform_file.h"
15 #include "base/stl_util-inl.h"
16 #include "base/task.h
    [all...]
  /external/chromium/base/
sha1_unittest.cc 5 #include "base/sha1.h"
9 #include "base/basictypes.h"
22 std::string output = base::SHA1HashString(input);
23 for (size_t i = 0; i < base::SHA1_LENGTH; i++)
38 std::string output = base::SHA1HashString(input);
39 for (size_t i = 0; i < base::SHA1_LENGTH; i++)
53 std::string output = base::SHA1HashString(input);
54 for (size_t i = 0; i < base::SHA1_LENGTH; i++)
61 unsigned char output[base::SHA1_LENGTH];
69 base::SHA1HashBytes(reinterpret_cast<const unsigned char*>(input.c_str())
    [all...]
  /external/chromium/chrome/browser/history/
history_publisher_win.cc 12 #include "base/string_util.h"
13 #include "base/time.h"
14 #include "base/utf_string_conversions.h"
15 #include "base/win/registry.h"
16 #include "base/win/scoped_bstr.h"
17 #include "base/win/scoped_comptr.h"
18 #include "base/win/scoped_variant.h"
43 std::vector< base::win::ScopedComPtr<IChromeHistoryIndexer> >* indexers) {
45 base::win::RegistryKeyIterator r_iter(root, path);
49 base::win::ScopedComPtr<IChromeHistoryIndexer>(indexer))
    [all...]
text_database_manager.h 12 #include "base/basictypes.h"
13 #include "base/file_path.h"
14 #include "base/gtest_prod_util.h"
15 #include "base/string16.h"
16 #include "base/task.h"
106 base::Time visit_time);
117 base::Time visit_time,
124 void DeletePageData(base::Time time, const GURL& url,
137 base::Time begin, base::Time end)
    [all...]
  /external/chromium/chrome/browser/prerender/
prerender_manager.h 13 #include "base/hash_tables.h"
14 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "base/time.h"
17 #include "base/timer.h"
41 class PrerenderManager : public base::RefCountedThreadSafe<PrerenderManager> {
88 base::TimeDelta perceived_page_load_time,
93 void RecordTimeUntilUsed(base::TimeDelta time_until_used);
95 base::TimeDelta max_prerender_age() const { return max_prerender_age_; }
96 void set_max_prerender_age(base::TimeDelta td) { max_prerender_age_ = td;
    [all...]
  /external/chromium/chrome/common/
multi_process_lock_unittest.cc 5 #include "base/basictypes.h"
6 #include "base/environment.h"
7 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "base/rand_util.h"
10 #include "base/stringprintf.h"
11 #include "base/test/multiprocess_test.h"
12 #include "base/time.h"
16 class MultiProcessLockTest : public base::MultiProcessTest {
24 : name_(name), environment_(base::Environment::Create())
    [all...]
  /external/chromium/net/test/
test_server_posix.cc 11 #include "base/command_line.h"
12 #include "base/file_util.h"
13 #include "base/logging.h"
14 #include "base/process_util.h"
15 #include "base/string_number_conversions.h"
16 #include "base/string_util.h"
17 #include "base/test/test_timeouts.h"
26 class OrphanedTestServerFilter : public base::ProcessFilter {
33 virtual bool Includes(const base::ProcessEntry& entry) const {
60 base::TimeDelta* remaining_time)
    [all...]
  /external/v8/test/mjsunit/
toint32.js 86 var base = Math.pow(2, 64); variable
87 assertEquals(0, toInt32(base + 0));
88 assertEquals(0, toInt32(base + 1117));
89 assertEquals(4096, toInt32(base + 2234));
90 assertEquals(4096, toInt32(base + 3351));
91 assertEquals(4096, toInt32(base + 4468));
92 assertEquals(4096, toInt32(base + 5585));
93 assertEquals(8192, toInt32(base + 6702));
94 assertEquals(8192, toInt32(base + 7819));
95 assertEquals(8192, toInt32(base + 8936))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_iterator.h 134 : current(__x.base()) { }
140 base() const function in class:reverse_iterator
272 * Reverse iterators forward many operations to their underlying base()
280 { return __x.base() == __y.base(); }
286 { return __y.base() < __x.base(); }
316 { return __y.base() - __x.base(); }
322 { return reverse_iterator<_Iterator>(__x.base() - __n);
750 base() const function in class:__normal_iterator
911 base() const function in class:move_iterator
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_iterator.h 134 : current(__x.base()) { }
140 base() const function in class:reverse_iterator
272 * Reverse iterators forward many operations to their underlying base()
280 { return __x.base() == __y.base(); }
286 { return __y.base() < __x.base(); }
316 { return __y.base() - __x.base(); }
322 { return reverse_iterator<_Iterator>(__x.base() - __n);
750 base() const function in class:__normal_iterator
911 base() const function in class:move_iterator
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_iterator.h 134 : current(__x.base()) { }
140 base() const function in class:reverse_iterator
272 * Reverse iterators forward many operations to their underlying base()
280 { return __x.base() == __y.base(); }
286 { return __y.base() < __x.base(); }
316 { return __y.base() - __x.base(); }
322 { return reverse_iterator<_Iterator>(__x.base() - __n);
750 base() const function in class:__normal_iterator
911 base() const function in class:move_iterator
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_iterator.h 134 : current(__x.base()) { }
140 base() const function in class:reverse_iterator
272 * Reverse iterators forward many operations to their underlying base()
280 { return __x.base() == __y.base(); }
286 { return __y.base() < __x.base(); }
316 { return __y.base() - __x.base(); }
322 { return reverse_iterator<_Iterator>(__x.base() - __n);
750 base() const function in class:__normal_iterator
911 base() const function in class:move_iterator
    [all...]

Completed in 980 milliseconds

<<11121314151617181920>>