/external/clang/test/SemaCXX/ |
qual-id-test.cpp | 6 struct base // expected-note{{object type}} struct in namespace:A::B 23 struct sub : B::base 44 a.base::x(); 46 a.B::base::x(); // expected-error{{use of undeclared identifier 'B'}} 49 a.A::B::base::x(); 65 a->base::x(); 67 a->B::base::x(); // expected-error{{use of undeclared identifier 'B'}} 70 a->A::B::base::x(); 82 i.foo(); // expected-error{{member reference base type 'int' is not a structure or union}} 88 typedef A::member base; // expected-note{{current scope} typedef 95 typedef A::B::base base; typedef [all...] |
/external/e2fsprogs/lib/et/ |
init_et.c | 34 int init_error_table(const char * const *msgs, long base, int count) 38 if (!base || !count || !msgs) 46 new_et->et.base = base;
|
/external/guava/guava/src/com/google/common/base/ |
Supplier.java | 17 package com.google.common.base;
|
/external/guava/guava-gwt/src/com/google/common/base/ |
GwtSerializationDependencies.java | 17 package com.google.common.base;
|
/external/guava/guava-gwt/test/com/google/common/base/ |
TestModuleEntryPoint.java | 17 package com.google.common.base;
|
/external/qemu/hw/ |
goldfish_device.h | 22 uint32_t base; // filled in by goldfish_device_add if 0 member in struct:goldfish_device 37 void goldfish_device_init(qemu_irq *pic, uint32_t base, uint32_t size, uint32_t irq, uint32_t irq_count); 38 int goldfish_device_bus_init(uint32_t base, uint32_t irq); 41 qemu_irq *goldfish_interrupt_init(uint32_t base, qemu_irq parent_irq, qemu_irq parent_fiq); 43 int goldfish_tty_add(CharDriverState *cs, int id, uint32_t base, int irq); 45 void goldfish_audio_init(uint32_t base, int id, const char* input_source); 49 void goldfish_mmc_init(uint32_t base, int id, BlockDriverState* bs); 55 void events_dev_init(uint32_t base, qemu_irq irq); 56 void nand_dev_init(uint32_t base);
|
/external/webkit/Source/WebKit/chromium/tests/ |
WebUnitTests.cpp | 34 #include <base/test/test_suite.h>
|
/libcore/luni/src/main/java/javax/xml/transform/ |
URIResolver.java | 33 * @param base The base URI against which the first argument will be made 42 public Source resolve(String href, String base)
|
/system/core/include/cutils/ |
qsort_r_compat.h | 32 void qsort_r_compat(void* base, size_t nel, size_t width, void* thunk,
|
/external/chromium/webkit/glue/ |
webfileutilities_impl.cc | 7 #include "base/file_path.h" 8 #include "base/file_util.h" 9 #include "base/logging.h" 10 #include "net/base/file_stream.h" 11 #include "net/base/net_util.h" 62 base::PlatformFileInfo info; 104 base::PlatformFile WebFileUtilitiesImpl::openFile(const WebString& path, 108 return base::kInvalidPlatformFileValue; 110 return base::CreatePlatformFile( 112 (mode == 0) ? (base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ [all...] |
/external/chromium/base/threading/ |
thread_collision_warner_unittest.cc | 5 #include "base/compiler_specific.h" 6 #include "base/memory/scoped_ptr.h" 7 #include "base/synchronization/lock.h" 8 #include "base/threading/platform_thread.h" 9 #include "base/threading/simple_thread.h" 10 #include "base/threading/thread_collision_warner.h" 21 #define DFAKE_MUTEX(obj) scoped_ptr<base::AsserterBase> obj 39 class AssertReporter : public base::AsserterBase { 62 base::ThreadCollisionWarner warner(local_reporter); 78 base::ThreadCollisionWarner warner(local_reporter) [all...] |
/external/harfbuzz/src/ |
harfbuzz-hebrew.c | 87 hb_uint16 base = shapedChars[cluster_start]; local 91 if (base >= 0x5d0 92 && base <= 0x5ea 93 && base != 0x5d7 94 && base != 0x5dd 95 && base != 0x5df 96 && base != 0x5e2 97 && base != 0x5e5) { 98 shaped = base - 0x5d0 + 0xfb30; 99 } else if (base == 0xfb2a || base == 0xfb2b /* Shin with Shin or Sin dot */) [all...] |
harfbuzz-greek.c | 45 HB_UChar16 base; member in struct:_hb_greek_decomposition 69 static HB_UChar16 compose_0x300(HB_UChar16 base) 71 if ((base ^ 0x1f00) < 0x100) { 72 if (base <= 0x1f69 && !(base & 0x6)) 73 return base + 2; 74 if (base == 0x1fbf) 76 if (base == 0x1ffe) 82 while (d->base && d->base != base 376 hb_uint16 base = shapedChars[slen-1]; local [all...] |
/external/chromium/base/ |
base_paths_win.cc | 5 #include "base/base_paths_win.h" 10 #include "base/file_path.h" 11 #include "base/file_util.h" 12 #include "base/path_service.h" 13 #include "base/win/windows_version.h" 18 namespace base { namespace 32 case base::FILE_EXE: 36 case base::FILE_MODULE: { 44 case base::DIR_WINDOWS: 48 case base::DIR_SYSTEM [all...] |
atomicops_unittest.cc | 5 #include "base/atomicops.h" 9 #include "base/port.h" 35 EXPECT_EQ(base::subtle::NoBarrier_AtomicIncrement(&s.count, 1), 1); 40 EXPECT_EQ(base::subtle::NoBarrier_AtomicIncrement(&s.count, 2), 3); 45 EXPECT_EQ(base::subtle::NoBarrier_AtomicIncrement(&s.count, 3), 6); 50 EXPECT_EQ(base::subtle::NoBarrier_AtomicIncrement(&s.count, -3), 3); 55 EXPECT_EQ(base::subtle::NoBarrier_AtomicIncrement(&s.count, -2), 1); 60 EXPECT_EQ(base::subtle::NoBarrier_AtomicIncrement(&s.count, -1), 0); 65 EXPECT_EQ(base::subtle::NoBarrier_AtomicIncrement(&s.count, -1), -1); 70 EXPECT_EQ(base::subtle::NoBarrier_AtomicIncrement(&s.count, -4), -5) [all...] |
/external/chromium/chrome/browser/metrics/ |
thread_watcher.h | 26 // base::TimeDelta sleep_time = base::TimeDelta::FromSeconds(5); 27 // base::TimeDelta unresponsive_time = base::TimeDelta::FromSeconds(10); 38 #include "base/basictypes.h" 39 #include "base/gtest_prod_util.h" 40 #include "base/memory/ref_counted.h" 41 #include "base/memory/scoped_ptr.h" 42 #include "base/message_loop.h" 43 #include "base/metrics/histogram.h [all...] |
/external/chromium/base/debug/ |
trace_event_win.h | 12 #include "base/base_api.h" 13 #include "base/win/event_trace_provider.h" 16 base::debug::TraceLog::Trace( \ 18 base::debug::TraceLog::EVENT_BEGIN, \ 23 base::debug::TraceLog::Trace( \ 25 base::debug::TraceLog::EVENT_END, \ 30 base::debug::TraceLog::Trace( \ 32 base::debug::TraceLog::EVENT_INSTANT, \ 40 namespace base { namespace 45 class BASE_API TraceLog : public base::win::EtwTraceProvider [all...] |
/bionic/libc/kernel/arch-arm/asm/ |
div64.h | 31 #define do_div(n,base) ({ register unsigned int __base asm("r4") = base; register unsigned long long __n asm("r0") = n; register unsigned long long __res asm("r2"); register unsigned int __rem asm(__xh); asm( __asmeq("%0", __xh) __asmeq("%1", "r2") __asmeq("%2", "r0") __asmeq("%3", "r4") "bl __do_div64" : "=r" (__rem), "=r" (__res) : "r" (__n), "r" (__base) : "ip", "lr", "cc"); n = __res; __rem; })
|
/bionic/libc/stdlib/ |
strntoumax.c | 49 strntoumax(const char *nptr, char **endptr, int base, size_t n) 70 if ( base == 0 ) { 73 base = 16; 76 base = 8; 78 base = 10; 80 } else if ( base == 16 ) { 86 while ( p < end && (d = digitval(*p)) >= 0 && d < base ) { 87 v = v*base + d;
|
strtoll.c | 46 strtoll(const char *nptr, char **endptr, int base) 48 return strtoimax(nptr, endptr, base);
|
strtoull.c | 46 strtoull(const char *nptr, char **endptr, int base) 48 return (unsigned long long)strtoumax(nptr, endptr, base);
|
/cts/tools/dasm/src/java_cup/ |
action_production.java | 14 * @param base the production we are being factored out of. 21 production base, 29 _base_production = base;
|
/development/ndk/platforms/android-3/arch-arm/include/asm/ |
div64.h | 25 #define do_div(n,base) ({ register unsigned int __base asm("r4") = base; register unsigned long long __n asm("r0") = n; register unsigned long long __res asm("r2"); register unsigned int __rem asm(__xh); asm( __asmeq("%0", __xh) __asmeq("%1", "r2") __asmeq("%2", "r0") __asmeq("%3", "r4") "bl __do_div64" : "=r" (__rem), "=r" (__res) : "r" (__n), "r" (__base) : "ip", "lr", "cc"); n = __res; __rem; })
|
/device/moto/stingray/whisper/ |
SHA_TimeUtilsLoop.c | 67 int i, base = 2000000 *multp; local 68 for(i=0;i<base;i++) {
|
/external/chromium/android/autofill/ |
android_url_request_context_getter.cc | 34 scoped_refptr<base::MessageLoopProxy> AndroidURLRequestContextGetter::GetIOMessageLoopProxy() const 40 base::Thread::Options options;
|