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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
blocks.cpp 31 int base; member in class:test2::Power
34 Power(int base) : base(base) {}
36 return repeat(1, ^(int v) { return v * base; }, n);
  /external/webkit/Source/JavaScriptCore/runtime/
PutPropertySlot.h 48 void setExistingProperty(JSObject* base, size_t offset)
51 m_base = base;
55 void setNewProperty(JSObject* base, size_t offset)
58 m_base = base;
63 JSObject* base() const { return m_base; } function in class:JSC::PutPropertySlot
  /external/webkit/Source/JavaScriptCore/wtf/
PageAllocationAligned.h 42 using PageBlock::base;
50 PageAllocationAligned(void* base, size_t size)
51 : PageBlock(base, size)
55 PageAllocationAligned(void* base, size_t size, void* reservationBase, size_t reservationSize)
56 : PageBlock(base, size)
  /frameworks/base/tools/layoutlib/bridge/src/com/android/internal/util/
XmlUtils_Delegate.java 45 int base = 10; local
61 base = 16;
64 base = 8;
69 base = 16;
72 return ((int)Long.parseLong(nm.substring(index), base)) * sign;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
vec.h 88 *exactly* one definition of the common non-memory managed base vector.
147 #define VEC_length(T,V) (VEC_OP(T,base,length)(VEC_BASE(V)))
165 #define VEC_last(T,V) (VEC_OP(T,base,last)(VEC_BASE(V) VEC_CHECK_INFO))
174 #define VEC_index(T,V,I) (VEC_OP(T,base,index)(VEC_BASE(V),I VEC_CHECK_INFO))
188 #define VEC_iterate(T,V,I,P) (VEC_OP(T,base,iterate)(VEC_BASE(V),I,&(P)))
213 #define VEC_embedded_size(T,N) (VEC_OP(T,base,embedded_size)(N))
214 #define VEC_embedded_init(T,O,N) (VEC_OP(T,base,embedded_init)(VEC_BASE(O),N))
235 (VEC_OP(T,base,space)(VEC_BASE(V),R VEC_CHECK_INFO))
270 (VEC_OP(T,base,quick_push)(VEC_BASE(V),O VEC_CHECK_INFO))
292 #define VEC_pop(T,V) (VEC_OP(T,base,pop)(VEC_BASE(V) VEC_CHECK_INFO)
    [all...]
  /external/chromium/base/
environment_unittest.cc 5 #include "base/environment.h"
6 #include "base/memory/scoped_ptr.h"
14 scoped_ptr<base::Environment> env(base::Environment::Create());
21 scoped_ptr<base::Environment> env(base::Environment::Create());
50 scoped_ptr<base::Environment> env(base::Environment::Create());
55 scoped_ptr<base::Environment> env(base::Environment::Create())
    [all...]
  /external/chromium/chrome/browser/extensions/
user_script_master.h 9 #include "base/file_path.h"
10 #include "base/gtest_prod_util.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/shared_memory.h"
18 namespace base { namespace
26 class UserScriptMaster : public base::RefCountedThreadSafe<UserScriptMaster>,
38 base::SharedMemory* GetSharedMemory() const {
43 void NewScriptsAvailable(base::SharedMemory* handle);
52 friend class base::RefCountedThreadSafe<UserScriptMaster>;
72 : public base::RefCountedThreadSafe<UserScriptMaster::ScriptReloader>
    [all...]
  /external/chromium/chrome/browser/instant/
promo_counter_unittest.cc 16 base::Time test_time(base::Time::Now());
19 ASSERT_TRUE(counter.ShouldShow(test_time + base::TimeDelta::FromHours(2)));
20 ASSERT_FALSE(counter.ShouldShow(test_time + base::TimeDelta::FromDays(4)));
28 base::Time test_time(base::Time::Now());
50 base::Time test_time(base::Time::Now());
69 base::Time test_time(base::Time::Now())
    [all...]
  /external/chromium/webkit/glue/
user_agent.cc 11 #include "base/string_util.h"
12 #include "base/stringprintf.h"
13 #include "base/sys_info.h"
16 #include "base/win/windows_version.h"
29 return base::StringPrintf("%d.%d (%s)",
46 base::SysInfo::OperatingSystemVersionNumbers(&os_major_version,
67 base::win::OSInfo* os_info = base::win::OSInfo::GetInstance();
68 if (os_info->wow64_status() == base::win::OSInfo::WOW64_ENABLED) {
71 base::win::OSInfo::WindowsArchitecture windows_architecture
    [all...]
  /external/doclava/src/com/google/doclava/
ParamTagInfo.java 31 ParamTagInfo(String name, String kind, String text, ContainerInfo base, SourcePositionInfo sp) {
32 super(name, kind, text, base, sp);
50 String parameterComment, String parameterName, ContainerInfo base, SourcePositionInfo sp) {
51 super(name, kind, text, base, sp);
70 public void makeHDF(Data data, String base) {
71 data.setValue(base + ".name", parameterName());
72 data.setValue(base + ".isTypeParameter", isTypeParameter() ? "1" : "0");
73 TagInfo.makeHDF(data, base + ".comment", commentTags());
76 public static void makeHDF(Data data, String base, ParamTagInfo[] tags) {
80 tags[i].makeHDF(data, base + "." + i)
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
PackageSettingBase.java 30 * Settings base class for pending and resolved classes.
97 PackageSettingBase(PackageSettingBase base) {
98 super(base);
100 name = base.name;
101 realName = base.realName;
102 codePath = base.codePath;
103 codePathString = base.codePathString;
104 resourcePath = base.resourcePath;
105 resourcePathString = base.resourcePathString;
106 nativeLibraryPathString = base.nativeLibraryPathString
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
URITest.java 268 URI base = new URI("http://host/file?query/x"); local
269 URI uri = base.resolve("another");
277 URI base = new URI("http://host/file?query/x#fragment"); local
278 URI uri = base.resolve("#another");
291 URI base = new URI("http://host/file"); local
292 assertEquals("http://host/another#fragment", base.resolve("another#fragment").toString());
296 URI base = new URI("http://host/a/b/c"); local
297 assertEquals("http://host/a/d", base.resolve("../d").toString());
301 URI base = new URI("http://host/a/b/c"); local
302 assertEquals("http://host/a/b/d/e", base.resolve("d/e").toString())
306 URI base = new URI("http:\/\/host\/a\/b\/c"); local
311 URI base = new URI("http:\/\/host\/a\/b\/c"); local
317 URI base = new URI("http:\/\/host\/a\/b\/c"); local
322 URI base = new URI("http:\/\/host\/a\/b\/c"); local
327 URI base = new URI("http:\/\/host\/a\/b\/c"); local
337 URI base = new URI("http:\/\/host\/a\/b\/c"); local
362 URI base = new URI("http:\/\/a\/b\/c\/d;p?q"); local
389 URI base = new URI("http:\/\/a\/b\/c\/d;p?q"); local
395 URI base = new URI("http:\/\/a\/b\/c\/d;p?q"); local
405 URI base = new URI("http:\/\/a\/b\/c\/d;p?q"); local
415 URI base = new URI("http:\/\/a\/b\/c\/d;p?q"); local
423 URI base = new URI("http:\/\/a\/b\/c\/d;p?q"); local
467 URI base = new URI("file:\/a\/b\/c"); local
    [all...]
  /external/openssh/regress/
forwarding.sh 9 base=33
14 a=$base$j$i
42 -$d ${base}01:127.0.0.1:$PORT \
43 -$d ${base}02:127.0.0.1:$PORT \
44 -$d ${base}03:127.0.0.1:$PORT \
45 -$d ${base}04:127.0.0.1:$PORT \
52 -$d ${base}01:127.0.0.1:$PORT \
53 -$d ${base}02:127.0.0.1:$PORT \
54 -$d ${base}03:127.0.0.1:$PORT \
55 -$d ${base}01:127.0.0.1:$PORT
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/profile/
iterator_tracker.h 74 : _M_current(__x.base()), _M_ds(__x._M_get_sequence()) { }
77 base() const { return _M_current; } function in class:__profile::__iterator_tracker
181 { return __lhs.base() == __rhs.base(); }
187 { return __lhs.base() == __rhs.base(); }
193 { return __lhs.base() != __rhs.base(); }
199 { return __lhs.base() != __rhs.base(); }
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/profile/
iterator_tracker.h 74 : _M_current(__x.base()), _M_ds(__x._M_get_sequence()) { }
77 base() const { return _M_current; } function in class:__profile::__iterator_tracker
181 { return __lhs.base() == __rhs.base(); }
187 { return __lhs.base() == __rhs.base(); }
193 { return __lhs.base() != __rhs.base(); }
199 { return __lhs.base() != __rhs.base(); }
    [all...]
  /bionic/libc/inet/
inet_ntop.c 105 struct { int base, len; } best, cur; member in struct:__anon50
118 best.base = -1;
120 cur.base = -1;
124 if (cur.base == -1)
125 cur.base = i, cur.len = 1;
129 if (cur.base != -1) {
130 if (best.base == -1 || cur.len > best.len)
132 cur.base = -1;
136 if (cur.base != -1) {
137 if (best.base == -1 || cur.len > best.len
    [all...]
  /external/chromium/net/http/
http_response_headers.h 12 #include "base/basictypes.h"
13 #include "base/hash_tables.h"
14 #include "base/memory/ref_counted.h"
15 #include "net/base/net_export.h"
20 namespace base { namespace
29 : public base::RefCountedThreadSafe<HttpResponseHeaders> {
191 bool RequiresValidation(const base::Time& request_time,
192 const base::Time& response_time,
193 const base::Time& current_time) const;
198 base::TimeDelta GetFreshnessLifetime(const base::Time& response_time) const
    [all...]
  /external/openssh/openbsd-compat/
inet_ntop.c 119 struct { int base, len; } best, cur; member in struct:__anon9874
132 best.base = -1;
133 cur.base = -1;
136 if (cur.base == -1)
137 cur.base = i, cur.len = 1;
141 if (cur.base != -1) {
142 if (best.base == -1 || cur.len > best.len)
144 cur.base = -1;
148 if (cur.base != -1) {
149 if (best.base == -1 || cur.len > best.len
    [all...]
  /external/tcpdump/missing/
inet_ntop.c 115 long base; member in struct:__anon12941
129 best.base = -1;
130 cur.base = -1;
135 if (cur.base == -1)
136 cur.base = i, cur.len = 1;
139 else if (cur.base != -1)
141 if (best.base == -1 || cur.len > best.len)
143 cur.base = -1;
146 if ((cur.base != -1) && (best.base == -1 || cur.len > best.len)
    [all...]
  /external/valgrind/main/memcheck/tests/ppc32/
power_ISA2_05.c 8 /* interpret the bitstream representing val as a base 256 number for testing
42 unsigned long base; local
52 base = (unsigned long) &foo;
54 __asm__ volatile ("lfiwax %0, %1, %2":"=f" (FRT1):"r"(base),
87 unsigned long base; local
112 base = (unsigned long) &dbl_pair;
113 offset = (unsigned long) &dbl_pair[1] - base;
114 __asm__ volatile ("or 20, 0, %0"::"r" (base));
124 base = (unsigned long) &dbl_pair;
125 offset = (unsigned long) &dbl_pair[2] - base;
178 unsigned long base; local
249 unsigned long base; local
294 unsigned long base; local
385 unsigned long base; local
456 unsigned long base; local
501 unsigned long base; local
592 unsigned long base; local
663 unsigned long base; local
708 unsigned long base; local
799 unsigned long base; local
870 unsigned long base; local
915 unsigned long base; local
1006 unsigned long base; local
    [all...]
  /external/valgrind/main/memcheck/tests/ppc64/
power_ISA2_05.c 8 /* interpret the bitstream representing val as a base 256 number for testing
42 unsigned long base; local
52 base = (unsigned long) &foo;
54 __asm__ volatile ("lfiwax %0, %1, %2":"=f" (FRT1):"r"(base),
87 unsigned long base; local
112 base = (unsigned long) &dbl_pair;
113 offset = (unsigned long) &dbl_pair[1] - base;
114 __asm__ volatile ("or 20, 0, %0"::"r" (base));
124 base = (unsigned long) &dbl_pair;
125 offset = (unsigned long) &dbl_pair[2] - base;
178 unsigned long base; local
249 unsigned long base; local
294 unsigned long base; local
385 unsigned long base; local
456 unsigned long base; local
501 unsigned long base; local
592 unsigned long base; local
663 unsigned long base; local
708 unsigned long base; local
799 unsigned long base; local
870 unsigned long base; local
915 unsigned long base; local
1006 unsigned long base; local
    [all...]
  /external/chromium/net/disk_cache/
histogram_macros.h 25 static base::Histogram* counter(NULL); \
27 counter = base::Histogram::FactoryGet( \
29 base::Histogram::kUmaTargetedHistogramFlag); \
44 static base::Histogram* counter(NULL); \
46 counter = base::Histogram::FactoryTimeGet( \
48 base::Histogram::kUmaTargetedHistogramFlag); \
53 name, sample, base::TimeDelta::FromMilliseconds(1), \
54 base::TimeDelta::FromSeconds(10), 50)
57 static base::Histogram* counter(NULL); \
59 counter = base::LinearHistogram::FactoryGet(
    [all...]
  /external/chromium/net/ftp/
ftp_directory_listing_parser_unittest.cc 7 #include "base/file_util.h"
8 #include "base/format_macros.h"
9 #include "base/path_service.h"
10 #include "base/string_number_conversions.h"
11 #include "base/string_tokenizer.h"
12 #include "base/string_util.h"
13 #include "base/utf_string_conversions.h"
14 #include "net/base/net_errors.h"
68 PathService::Get(base::DIR_SOURCE_ROOT, &test_dir);
73 base::Time::Exploded mock_current_time_exploded = { 0 }
    [all...]
  /external/chromium/net/proxy/
polling_proxy_config_service.cc 7 #include "base/memory/scoped_ptr.h"
8 #include "base/message_loop_proxy.h"
9 #include "base/observer_list.h"
10 #include "base/synchronization/lock.h"
11 #include "base/threading/worker_pool.h"
20 : public base::RefCountedThreadSafe<PollingProxyConfigService::Core> {
22 Core(base::TimeDelta poll_interval,
35 base::AutoLock l(lock_);
71 (base::TimeTicks::Now() - last_poll_time_) > poll_interval_) {
88 last_poll_time_ = base::TimeTicks::Now()
    [all...]
  /external/chromium/chrome/browser/sync/glue/
ui_model_worker_unittest.cc 5 #include "base/callback.h"
6 #include "base/memory/ref_counted.h"
7 #include "base/message_loop.h"
8 #include "base/threading/thread.h"
9 #include "base/synchronization/waitable_event.h"
22 UIModelWorkerVisitor(base::WaitableEvent* was_run,
37 base::WaitableEvent* was_run_;
76 FakeSyncapiShutdownTask(base::Thread* syncer_thread,
78 base::WaitableEvent** jobs,
97 base::Thread* syncer_thread_
    [all...]

Completed in 594 milliseconds

1 2 3 4 5 6 7 8 91011>>