/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
d2d1.h | 582 IUnknownVtbl Base; 591 #define ID2D1Resource_QueryInterface(this,A,B) (this)->lpVtbl->Base.QueryInterface((IUnknown*)(this),A,B) 592 #define ID2D1Resource_AddRef(this) (this)->lpVtbl->Base.AddRef((IUnknown*)(this)) 593 #define ID2D1Resource_Release(this) (this)->lpVtbl->Base.Release((IUnknown*)(this)) 616 ID2D1ResourceVtbl Base; 628 #define ID2D1Brush_QueryInterface(this,A,B) (this)->lpVtbl->Base.Base.QueryInterface((IUnknown*)(this),A,B) 629 #define ID2D1Brush_AddRef(this) (this)->lpVtbl->Base.Base.AddRef((IUnknown*)(this)) 630 #define ID2D1Brush_Release(this) (this)->lpVtbl->Base.Base.Release((IUnknown*)(this) [all...] |
/device/linaro/bootloader/arm-trusted-firmware/include/drivers/arm/ |
gic_v2.h | 192 static inline unsigned int gicd_read_ctlr(unsigned int base) 194 return mmio_read_32(base + GICD_CTLR); 197 static inline unsigned int gicd_read_typer(unsigned int base) 199 return mmio_read_32(base + GICD_TYPER); 202 static inline unsigned int gicd_read_sgir(unsigned int base) 204 return mmio_read_32(base + GICD_SGIR); 212 static inline void gicd_write_ctlr(unsigned int base, unsigned int val) 214 mmio_write_32(base + GICD_CTLR, val); 217 static inline void gicd_write_sgir(unsigned int base, unsigned int val) 219 mmio_write_32(base + GICD_SGIR, val) [all...] |
/external/libmojo/mojo/public/cpp/bindings/tests/ |
bind_task_runner_unittest.cc | 5 #include "base/bind.h" 6 #include "base/callback.h" 7 #include "base/message_loop/message_loop.h" 8 #include "base/single_thread_task_runner.h" 9 #include "base/synchronization/lock.h" 10 #include "base/synchronization/waitable_event.h" 11 #include "base/threading/platform_thread.h" 25 class TestTaskRunner : public base::SingleThreadTaskRunner { 28 : thread_id_(base::PlatformThread::CurrentRef()), 30 task_ready_(base::WaitableEvent::ResetPolicy::AUTOMATIC [all...] |
/external/llvm/test/Transforms/CodeGenPrepare/ |
statepoint-relocate.ll | 8 define i32 @test_sor_basic(i32* %base) gc "statepoint-example" { 9 ; CHECK: getelementptr i32, i32* %base, i32 15 10 ; CHECK: getelementptr i32, i32* %base-new, i32 15 12 %ptr = getelementptr i32, i32* %base, i32 15 13 %tok = call token (i64, i32, i1 ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_i1f(i64 0, i32 0, i1 ()* @return_i1, i32 0, i32 0, i32 0, i32 0, i32* %base, i32* %ptr) 14 %base-new = call i32* @llvm.experimental.gc.relocate.p0i32(token %tok, i32 7, i32 7) 20 define i32 @test_sor_two_derived(i32* %base) gc "statepoint-example" { 21 ; CHECK: getelementptr i32, i32* %base, i32 15 22 ; CHECK: getelementptr i32, i32* %base, i32 12 23 ; CHECK: getelementptr i32, i32* %base-new, i32 1 [all...] |
/cts/tests/tests/networksecurityconfig/networksecurityconfig-resourcesrc/res/xml/ |
network_security_config.xml | 3 <base-config> 10 </base-config>
|
/development/vndk/tools/definition-tool/tests/testdata/test_module_info/ |
module-info.json | 3 "libB": { "path": ["frameworks/base/libB"], "installed": ["out/target/product/generic_arm64/system/lib64/libB.so"] }, 4 "libC": { "path": ["frameworks/base/libC"], "installed": ["out/target/product/generic_arm64/system/lib64/libC.so", "out/target/product/generic_arm64/system/lib64/hw/libC.so"] }
|
/external/clang/test/CXX/special/class.init/class.inhctor.init/ |
p2.cpp | 11 using C1::C1; // expected-note {{inherited from base class 'C1' here}} 12 using C2::C2; // expected-note {{inherited from base class 'C2' here}} 23 D1 d1(0); // expected-error {{constructor of 'A' inherited from multiple base class subobjects}} 24 D2 d2(0); // OK: initializes virtual B base class, which initializes the A base class 25 // then initializes the V1 and V2 base classes as if by a defaulted default constructor 31 P p(0); // OK: use M(0) to initialize N's base class, 32 // use M() to initialize O's base class
|
/external/clang/test/CodeGenCXX/ |
debug-info-template-fwd.cpp | 11 template <class A> class Base { 15 template <class A> struct Derived : Base<A> { 18 Base<int> *f; 20 // During the instantiation of Derived<int>, Base<int> becomes required to be 22 // above), we immediately try to build debug info for Base<int> which then 25 // (if 'f' is not present, the point at which Base<int> becomes required to be 27 // Base<int> was never emitted so we ignore it and carry on until we 28 // wire up the base class of Derived<int> in the debug info later on)
|
/external/clang/test/PCH/ |
cxx_exprs.h | 8 struct Base { Base(int); virtual void f(int x = 492); ~Base(); }; 9 struct Derived : Base { Derived(); void g(); }; 10 Base *base_ptr; 49 Derived::Derived() : Base(4) { 71 Base *b = new Base(4); // CXXNewExpr
|
/external/clang/test/Parser/ |
MicrosoftExtensionsInlineAsm.c | 5 void __forceinline InterlockedBitTestAndSet (long *Base, long Bit) 9 mov ecx, Base
|
/external/clang/test/SemaCXX/ |
PR7410.cpp | 5 struct Base { 9 struct Derived : Base {
|
/external/libchrome/base/ |
native_library_posix.cc | 5 #include "base/native_library.h" 9 #include "base/files/file_path.h" 10 #include "base/logging.h" 11 #include "base/strings/string_util.h" 12 #include "base/strings/utf_string_conversions.h" 13 #include "base/threading/thread_restrictions.h" 15 namespace base { namespace 59 } // namespace base
|
pending_task.cc | 5 #include "base/pending_task.h" 7 #include "base/tracked_objects.h" 9 namespace base { namespace 12 base::Closure task) 13 : base::TrackingInfo(posted_from, TimeTicks()), 22 base::Closure task, 25 : base::TrackingInfo(posted_from, delayed_run_time), 56 } // namespace base
|
pending_task.h | 10 #include "base/base_export.h" 11 #include "base/callback.h" 12 #include "base/location.h" 13 #include "base/time/time.h" 14 #include "base/tracking_info.h" 16 namespace base { namespace 54 using DelayedTaskQueue = std::priority_queue<base::PendingTask>; 56 } // namespace base
|
/external/libchrome/components/timers/ |
BUILD.gn | 12 "//base", 25 "//base",
|
README | 2 lives in this directory is not allowed to depend on anything other than base/ 3 because Chrome OS only pulls in and depends on base/ as a library.
|
/external/libmojo/base/android/ |
animation_frame_time_histogram.h | 10 namespace base { namespace 16 } // namespace base
|
context_utils.cc | 5 #include "base/android/context_utils.h" 9 #include "base/android/scoped_java_ref.h" 10 #include "base/lazy_instance.h" 13 using base::android::JavaRef; 15 namespace base { namespace 22 base::LazyInstance<base::android::ScopedJavaGlobalRef<jobject>>::Leaky 53 } // namespace base
|
cpu_features.h | 10 namespace base { namespace 16 } // namespace base
|
field_trial_list.h | 10 namespace base { namespace 16 } // namespace base
|
important_file_writer_android.h | 10 namespace base { namespace 16 } // namespace base
|
path_service_android.h | 10 namespace base { namespace 16 } // namespace base
|
path_utils.cc | 5 #include "base/android/path_utils.h" 7 #include "base/android/context_utils.h" 8 #include "base/android/jni_android.h" 9 #include "base/android/jni_string.h" 10 #include "base/android/scoped_java_ref.h" 11 #include "base/files/file_path.h" 15 namespace base { namespace 86 } // namespace base
|
record_histogram.h | 10 namespace base { namespace 16 } // namespace base
|
/external/libmojo/base/android/jni_generator/ |
jni_generator.gyp | 7 # GYP: //base/android/jni_generator:jni_generator_tests 33 # GYP: //base/android/jni_generator:jni_sample_header 45 # GYP: //base/android/jni_generator:jni_sample_java 50 'java_in_dir': '../../../base/android/jni_generator/java', 53 '<(DEPTH)/base/base.gyp:base_java', 57 # GYP: //base/android/jni_generator:jni_generator_tests 62 '../../base.gyp:test_support_base',
|