Searched refs:ABI (Results 1 - 25 of 88) sorted by relevance

1234

/external/chromium_org/win8/metro_driver/
H A Dstdafx.h30 namespace winapp = ABI::Windows::ApplicationModel;
31 namespace windata = ABI::Windows::Data;
32 namespace winxml = ABI::Windows::Data::Xml;
33 namespace windevs = ABI::Windows::Devices;
34 namespace winfoundtn = ABI::Windows::Foundation;
35 namespace wingfx = ABI::Windows::Graphics;
36 namespace winui = ABI::Windows::UI;
37 namespace winsys = ABI::Windows::System;
38 namespace winstorage = ABI::Windows::Storage;
H A Ddisplay_properties.cc19 ABI::Windows::Graphics::Display::IDisplayPropertiesStatics>
24 ABI::Windows::Graphics::Display::ResolutionScale resolution_scale;
H A Ddirect3d_helper.h37 ABI::Windows::Foundation::Rect window_bounds_;
H A Dmetro_dialog_box.cc12 IVector<ABI::Windows::UI::Popups::IUICommand*> WindowsUICommands;
14 typedef winfoundtn::IAsyncOperation<ABI::Windows::UI::Popups::IUICommand*>
/external/lldb/source/Target/
H A DABI.cpp1 //===-- ABI.cpp -------------------------------------------------*- C++ -*-===//
10 #include "lldb/Target/ABI.h"
22 ABI::FindPlugin (const ArchSpec &arch)
43 ABI::ABI() function in class:ABI
50 ABI::~ABI()
56 ABI::GetRegisterInfoByName (const ConstString &name, RegisterInfo &info)
85 ABI::GetRegisterInfoByKind (RegisterKind reg_kind, uint32_t reg_num, RegisterInfo &info)
107 ABI
[all...]
H A DAndroid.mk12 ABI.cpp \
/external/llvm/test/MC/Mips/mips64r2/
H A Dabi-bad.s7 # CHECK : error: 'set fp=xx'option requires O32 ABI
/external/clang/include/clang/Basic/
H A DTargetOptions.h36 /// If given, the name of the target ABI to use.
37 std::string ABI; member in class:clang::TargetOptions
H A DTargetInfo.h140 /// __builtin_va_list as defind by the AArch64 ABI
144 /// __builtin_va_list as defined by the PNaCl ABI:
148 /// __builtin_va_list as defined by the Power ABI:
150 /// /resources/downloads/Power-Arch-32-bit-ABI-supp-1.0-Embedded.pdf
153 /// __builtin_va_list as defined by the x86-64 ABI:
157 /// __builtin_va_list as defined by ARM AAPCS ABI
637 /// \brief Get the ABI currently in use.
640 /// \brief Get the C++ ABI currently in use.
652 /// \brief Use the specified ABI.
654 /// \return False on error (invalid ABI nam
670 TargetCXXABI ABI; local
678 setCXXABI(TargetCXXABI ABI) argument
[all...]
/external/lldb/include/lldb/Target/
H A DABI.h1 //===-- ABI.h ---------------------------------------------------*- C++ -*-===//
23 class ABI : class in namespace:lldb_private
28 ~ABI();
59 // This is the method the ABI will call to actually calculate the return value.
60 // Don't put it in a persistant value object, that will be done by the ABI::GetReturnValueObject.
74 // Should return true if your ABI uses frames when doing stack backtraces. This
84 // the ABI, and false otherwise. This is used by the generic stack frame unwinding
98 // thumb, so any ARM ABI plug-ins would strip those bits.
128 // Classes that inherit from ABI can see and modify these
130 ABI();
[all...]
H A DThreadPlanCallFunction.h90 // ABI::GetReturnValue() for the ABI in the process. Then after the thread
150 ABI *& abi,
182 lldb::ValueObjectSP m_return_valobj_sp; // If this contains a valid pointer, use the ABI to extract values when complete
/external/lldb/source/Plugins/
H A DMakefile15 DIRS := ABI/MacOSX-arm ABI/MacOSX-i386 ABI/SysV-x86_64 Disassembler/llvm \
H A DAndroid.mk6 ABI/MacOSX-arm \
7 ABI/MacOSX-i386 \
8 ABI/SysV-x86_64 \
/external/llvm/test/MC/X86/
H A Dgnux32-dwarf-gen.s8 # assembler, looking at the difference between the x32 ABI and default x86-64
9 # ABI.
/external/lldb/include/lldb/Expression/
H A DDWARFExpression.h93 /// An optional ABI plug-in that can be used to resolve register
100 ABI *abi) const;
375 ABI *abi);
394 /// An optional ABI plug-in that can be used to resolve register
402 ABI *abi) const;
/external/lldb/source/Plugins/ABI/MacOSX-arm/
H A DABIMacOSX_arm.h18 #include "lldb/Target/ABI.h"
20 class ABIMacOSX_arm : public lldb_private::ABI
132 lldb_private::ABI()
/external/lldb/source/Plugins/ABI/MacOSX-i386/
H A DABIMacOSX_i386.h18 #include "lldb/Target/ABI.h"
22 public lldb_private::ABI
135 ABIMacOSX_i386() : lldb_private::ABI() { } // Call CreateInstance instead.
/external/lldb/source/Plugins/ABI/SysV-x86_64/
H A DABISysV_x86_64.h18 #include "lldb/Target/ABI.h"
21 public lldb_private::ABI
135 ABISysV_x86_64() : lldb_private::ABI() { } // Call CreateInstance instead.
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_powerpc-inl.h118 // Note we do *not* increment skip_count here for the SYSV ABI. If
121 // is probably bogus for linux/ppc (and other SYSV-ABI systems).
154 #error Need to specify the PPC ABI for your archiecture.
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_powerpc-inl.h118 // Note we do *not* increment skip_count here for the SYSV ABI. If
121 // is probably bogus for linux/ppc (and other SYSV-ABI systems).
154 #error Need to specify the PPC ABI for your archiecture.
/external/lldb/source/Plugins/Process/Utility/
H A DUnwindLLDB.cpp47 ABI *abi = process_sp ? process_sp->GetABI().get() : NULL;
105 UnwindLLDB::AddOneMoreFrame (ABI *abi)
222 ABI *abi = process_sp ? process_sp->GetABI().get() : NULL;
254 ABI *abi = process_sp ? process_sp->GetABI().get() : NULL;
H A DUnwindLLDB.h114 bool AddOneMoreFrame (ABI *abi);
/external/lldb/source/Symbol/
H A DFuncUnwinders.cpp17 #include "lldb/Target/ABI.h"
173 ABI *abi = process_sp->GetABI().get();
209 ABI *abi = process_sp->GetABI().get();
/external/chromium_org/third_party/mesa/src/bin/
H A Dmklib327 # x86_64 x32 ABI.
331 # x86_64 64-bit ABI.
335 # x86 32-bit ABI.
352 # Check to see if we are building for a different ABI.
404 # Check to see if we are building for a different ABI.
594 # examine first object to determine ABI
601 ABI="o32-bit"
604 ABI="n32-bit"
607 ABI="64-bit"
609 echo "Error: Unexpected IRIX ABI!"
[all...]
/external/mesa3d/bin/
H A Dmklib327 # x86_64 x32 ABI.
331 # x86_64 64-bit ABI.
335 # x86 32-bit ABI.
352 # Check to see if we are building for a different ABI.
404 # Check to see if we are building for a different ABI.
594 # examine first object to determine ABI
601 ABI="o32-bit"
604 ABI="n32-bit"
607 ABI="64-bit"
609 echo "Error: Unexpected IRIX ABI!"
[all...]

Completed in 3436 milliseconds

1234