/external/v8/tools/clang/plugins/tests/ |
virtual_specifiers.cpp | 16 // Base class can only use virtual. 17 class Base { 19 virtual ~Base() {} 24 class CorrectOverride : public Base { 37 class MissingOverride : public Base { 44 class VirtualAndOverride : public Base { 50 class VirtualAndFinal : public Base { 56 class VirtualAndOverrideFinal : public Base { 62 class OverrideAndFinal : public Base { 69 class CorrectPureVirtual : public Base { [all...] |
/external/mesa3d/src/gallium/state_trackers/egl/wayland/ |
native_drm.c | 52 struct wayland_display base; member in struct:wayland_drm_display 78 if (drmdpy->base.configs) 79 FREE(drmdpy->base.configs); 80 if (drmdpy->base.own_dpy) 81 wl_display_disconnect(drmdpy->base.dpy); 97 struct pipe_screen *screen = drmdpy->base.base.screen; 163 drmdpy->base.formats |= HAS_ARGB8888; 166 drmdpy->base.formats |= HAS_XRGB8888; 206 drmdpy->base.queue = wl_display_create_queue(drmdpy->base.dpy) [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/ |
OptionalMethodTest.java | 107 BaseClass base = new BaseClass(); local 108 assertTrue(STRING_METHOD_RETURNS_ANY.isSupported(base)); 109 assertTrue(STRING_METHOD_RETURNS_STRING.isSupported(base)); 110 assertFalse(STRING_METHOD_RETURNS_INT.isSupported(base)); 111 assertTrue(VOID_METHOD_RETURNS_ANY.isSupported(base)); 112 assertTrue(VOID_METHOD_RETURNS_VOID.isSupported(base)); 113 assertFalse(SUBCLASS_METHOD_RETURNS_ANY.isSupported(base)); 114 assertFalse(SUBCLASS_METHOD_RETURNS_STRING.isSupported(base)); 115 assertFalse(SUBCLASS_METHOD_RETURNS_INT.isSupported(base)); 116 assertFalse(METHOD_WITH_ARGS_WRONG_PARAMS.isSupported(base)); 150 BaseClass base = new BaseClass(); local 227 BaseClass base = new BaseClass(); local [all...] |
/system/core/base/ |
properties_test.cpp | 17 #include "android-base/properties.h" 29 android::base::SetProperty("debug.libbase.property_test", "hello"); 31 std::string s = android::base::GetProperty("debug.libbase.property_test", ""); 34 android::base::SetProperty("debug.libbase.property_test", "world"); 35 s = android::base::GetProperty("debug.libbase.property_test", ""); 38 s = android::base::GetProperty("this.property.does.not.exist", ""); 41 s = android::base::GetProperty("this.property.does.not.exist", "default"); 49 android::base::SetProperty("debug.libbase.property_test", ""); 50 std::string s = android::base::GetProperty("debug.libbase.property_test", "default"); 55 android::base::SetProperty("debug.libbase.property_test", value.c_str()) [all...] |
/art/compiler/optimizing/ |
dex_cache_array_fixups_arm.cc | 19 #include "base/arena_containers.h" 40 * Finds instructions that need the dex cache arrays base as an input. 53 // Bring the base closer to the first use (previously, it was in the 55 // while avoiding recalculation of the base in a loop. 56 HArmDexCacheArraysBase* base = entry.second; local 57 base->MoveBeforeFirstUserAndOutOfLoops(); 64 // we need to add the dex cache arrays base as the special input. 67 HArmDexCacheArraysBase* base = variable 69 // Update the element offset in base. 71 base->UpdateElementOffset(layout.MethodOffset(invoke->GetDexMethodIndex())) 81 HArmDexCacheArraysBase* base = new (GetGraph()->GetArena()) HArmDexCacheArraysBase(dex_file); local 94 HArmDexCacheArraysBase* base = new (GetGraph()->GetArena()) HArmDexCacheArraysBase(dex_file); local [all...] |
/external/clang/test/SemaCXX/ |
pragma-pack.cpp | 6 struct Base { 11 struct Sub : public Base { 22 struct Base { 23 virtual ~Base(); 28 struct Sub : virtual Base {
|
/external/compiler-rt/test/profile/Linux/ |
coverage_dtor.cpp | 7 struct Base { 9 Base(int B_) : B(B_) {} 10 ~Base() { g -= B; } 13 struct Derived : public Base { 14 Derived(int K) : Base(K) {}
|
/external/libbrillo/brillo/message_loops/ |
message_loop_utils.cc | 7 #include <base/location.h> 14 base::TimeDelta timeout, 15 base::Callback<bool()> terminate) { 19 base::Bind([](bool* timeout_called) { *timeout_called = true; }, 20 base::Unretained(&timeout_called)),
|
/external/libchrome/base/debug/ |
debugger.cc | 5 #include "base/debug/debugger.h" 6 #include "base/logging.h" 7 #include "base/threading/platform_thread.h" 10 namespace base { namespace 42 } // namespace base
|
/external/libchrome/base/mac/ |
mach_port_broker.h | 14 #include "base/base_export.h" 15 #include "base/mac/dispatch_source_mach.h" 16 #include "base/mac/scoped_mach_port.h" 17 #include "base/macros.h" 18 #include "base/process/port_provider_mac.h" 19 #include "base/process/process_handle.h" 20 #include "base/synchronization/lock.h" 22 namespace base { namespace 38 class BASE_EXPORT MachPortBroker : public base::PortProvider { 60 void AddPlaceholderForPid(base::ProcessHandle pid) [all...] |
/external/libchrome/base/memory/ |
weak_ptr_unittest.nc | 8 #include "base/memory/weak_ptr.h" 10 namespace base { 20 #if defined(NCTEST_AUTO_DOWNCAST) // [r"fatal error: cannot initialize a member subobject of type 'base::DerivedProducer \*' with an lvalue of type 'base::Producer \*const'"] 28 #elif defined(NCTEST_STATIC_DOWNCAST) // [r"fatal error: cannot initialize a member subobject of type 'base::DerivedProducer \*' with an lvalue of type 'base::Producer \*const'"] 37 #elif defined(NCTEST_AUTO_REF_DOWNCAST) // [r"fatal error: non-const lvalue reference to type 'WeakPtr<base::DerivedProducer>' cannot bind to a value of unrelated type 'WeakPtr<base::Producer>'"] 45 #elif defined(NCTEST_STATIC_REF_DOWNCAST) // [r"fatal error: non-const lvalue reference to type 'WeakPtr<base::DerivedProducer>' cannot bind to a value of unrelated type 'WeakPtr<base::Producer>'" [all...] |
/external/libchrome/base/process/ |
process_handle_linux.cc | 5 #include "base/process/process_handle.h" 7 #include "base/files/file_util.h" 8 #include "base/process/internal_linux.h" 10 namespace base { namespace 30 } // namespace base
|
/external/libchrome/base/ |
sequenced_task_runner.cc | 5 #include "base/sequenced_task_runner.h" 7 #include "base/bind.h" 9 namespace base { namespace 14 return PostNonNestableDelayedTask(from_here, task, base::TimeDelta()); 31 } // namespace base
|
sync_socket_unittest.cc | 5 #include "base/macros.h" 6 #include "base/sync_socket.h" 7 #include "base/threading/simple_thread.h" 8 #include "base/time/time.h" 15 class HangingReceiveThread : public base::DelegateSimpleThread::Delegate { 17 explicit HangingReceiveThread(base::SyncSocket* socket) 31 &data, sizeof(data), base::TimeDelta::FromMilliseconds( 40 base::SyncSocket* socket_; 41 base::DelegateSimpleThread thread_; 49 void SendReceivePeek(base::SyncSocket* socket_a, base::SyncSocket* socket_b) [all...] |
/external/libchrome/base/task_scheduler/ |
scheduler_lock_impl.h | 10 #include "base/base_export.h" 11 #include "base/macros.h" 12 #include "base/synchronization/lock.h" 14 namespace base { namespace 44 } // namespace base
|
/external/libchrome/base/test/ |
test_file_util_linux.cc | 5 #include "base/test/test_file_util.h" 12 #include "base/files/file_path.h" 13 #include "base/files/scoped_file.h" 15 namespace base { namespace 28 } // namespace base
|
/external/libchrome/base/threading/ |
thread_local_storage_posix.cc | 5 #include "base/threading/thread_local_storage.h" 7 #include "base/logging.h" 9 namespace base { namespace 15 base::internal::PlatformThreadLocalStorage::OnThreadExit); 34 } // namespace base
|
/external/libchrome/base/trace_event/ |
heap_profiler_type_name_deduplicator.h | 11 #include "base/base_export.h" 12 #include "base/macros.h" 13 #include "base/trace_event/trace_event_impl.h" 15 namespace base { namespace 43 } // namespace base
|
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.absolute/ |
absolute.pass.cpp | 14 // path absolute(const path& p, const path& base=current_path()); 42 const path base("//net/bar/baz"); 46 path ret = absolute(p, base); 53 const path base("//net/bar"); 57 // ensure absolute(base) is not recursively called 58 TEST_REQUIRE(base.has_root_name()); 59 TEST_REQUIRE(base.has_root_directory()); 61 path ret = absolute(p, base); 72 const path base("//net/foo/bar"); 76 // absolute is called recursively on base. The following condition 108 const path base = current_path(); local [all...] |
/external/libmojo/base/android/ |
content_uri_utils.h | 10 #include "base/base_export.h" 11 #include "base/files/file.h" 12 #include "base/files/file_path.h" 14 namespace base { namespace 29 } // namespace base
|
java_runtime.cc | 5 #include "base/android/java_runtime.h" 9 namespace base { namespace 17 JNIEnv* env = base::android::AttachCurrentThread(); 18 base::android::ScopedJavaLocalRef<jobject> runtime = 25 } // namespace base
|
/external/libmojo/ipc/ |
ipc_mojo_param_traits.h | 14 namespace base { namespace 25 static void GetSize(base::PickleSizer* sizer, const param_type& p); 26 static void Write(base::Pickle* m, const param_type& p); 27 static bool Read(const base::Pickle* m, base::PickleIterator* iter,
|
/external/libmojo/mojo/edk/test/ |
scoped_ipc_support.cc | 9 #include "base/message_loop/message_loop.h" 17 base::TaskRunner* g_io_task_runner = nullptr; 20 base::TaskRunner* GetIoTaskRunner() { 36 scoped_refptr<base::TaskRunner> io_thread_task_runner) { 48 scoped_refptr<base::TaskRunner> io_thread_task_runner) {
|
/external/mesa3d/src/gallium/drivers/trace/ |
tr_texture.c | 53 memcpy(&tr_res->base, texture, sizeof(struct pipe_resource)); 55 pipe_reference_init(&tr_res->base.reference, 1); 56 tr_res->base.screen = &tr_scr->base; 59 return &tr_res->base; 91 memcpy(&tr_surf->base, surface, sizeof(struct pipe_surface)); 93 pipe_reference_init(&tr_surf->base.reference, 1); 94 tr_surf->base.texture = NULL; 95 pipe_resource_reference(&tr_surf->base.texture, &tr_res->base); [all...] |
/external/v8/src/base/ |
sys-info.h | 10 #include "src/base/base-export.h" 11 #include "src/base/compiler-specific.h" 14 namespace base { namespace in namespace:v8 29 } // namespace base
|