Searched defs:Type (Results 51 - 75 of 776) sorted by relevance

1234567891011>>

/external/llvm/lib/Object/
H A DELFObjectFile.cpp20 ELFObjectFileBase::ELFObjectFileBase(unsigned int Type, MemoryBufferRef Source) argument
21 : ObjectFile(Type, Source) {}
/external/llvm/tools/llvm-pdbdump/
H A DVariableDumper.cpp94 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName();
122 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName();
126 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName();
129 void VariableDumper::dumpSymbolTypeAndName(const PDBSymbol &Type, argument
131 if (auto *ArrayType = dyn_cast<PDBSymbolTypeArray>(&Type)) {
146 if (!tryDumpFunctionPointer(Type, Name)) {
147 Type.dump(*this);
153 bool VariableDumper::tryDumpFunctionPointer(const PDBSymbol &Type, argument
157 if (auto *PointerType = dyn_cast<PDBSymbolTypePointer>(&Type)) {
/external/pdfium/core/fpdfdoc/
H A Dcpvt_color.h15 enum Type { kTransparent = 0, kGray, kRGB, kCMYK }; enum in struct:CPVT_Color
17 CPVT_Color(Type type = kTransparent,
28 Type nColorType;
/external/pdfium/xfa/fwl/
H A Dcfwl_message.h20 enum class Type { Key, KillFocus, Mouse, MouseWheel, SetFocus }; class in class:CFWL_Message
22 explicit CFWL_Message(Type type);
23 CFWL_Message(Type type, CFWL_Widget* pSrcTarget);
24 CFWL_Message(Type type, CFWL_Widget* pSrcTarget, CFWL_Widget* pDstTarget);
28 Type GetType() const { return m_type; }
34 Type m_type;
/external/skia/include/core/
H A DSkDrawFilter.h28 enum Type { enum in class:SkDrawFilter
49 virtual bool filter(SkPaint*, Type) = 0;
/external/swiftshader/src/OpenGL/compiler/preprocessor/
H A DMacro.h29 enum Type enum in struct:pp::Macro
43 Type type;
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DTargetSelect.cpp59 Triple::ArchType Type = Triple::getArchTypeForLLVMName(MArch); local
60 if (Type != Triple::UnknownArch)
61 TheTriple.setArch(Type);
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCELF.cpp36 void MCELF::SetType(MCSymbolData &SD, unsigned Type) { argument
37 assert(Type == ELF::STT_NOTYPE || Type == ELF::STT_OBJECT ||
38 Type == ELF::STT_FUNC || Type == ELF::STT_SECTION ||
39 Type == ELF::STT_FILE || Type == ELF::STT_COMMON ||
40 Type == ELF::STT_TLS);
43 SD.setFlags(OtherFlags | (Type << ELF_STT_Shift));
47 uint32_t Type local
[all...]
/external/swiftshader/third_party/LLVM/lib/Object/
H A DBinary.cpp31 Binary::Binary(unsigned int Type, MemoryBuffer *Source) argument
32 : TypeID(Type)
/external/syslinux/efi32/include/efi/
H A Defi_nii.h62 UINT8 Type; member in struct:__anon21043
/external/syslinux/efi64/include/efi/
H A Defi_nii.h62 UINT8 Type; member in struct:__anon21223
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/
H A Defi_nii.h62 UINT8 Type; member in struct:__anon21426
/external/v4l2_codec2/vda/
H A Dv4l2_device.h47 enum class Type { class in class:media::V4L2Device
57 bool Open(Type type, uint32_t v4l2_pixfmt);
129 bool OpenDevicePath(const std::string& path, Type type);
136 void EnumerateDevicesForType(Type type);
141 const Devices& GetDevicesForType(Type type);
145 std::string GetDevicePathFor(Type type, uint32_t pixfmt);
148 // for each device Type.
149 std::map<Type, Devices> devices_by_type_;
/external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
H A Dtrace_after_dispatch.h17 enum Type { TB, TC, TD }; enum in class:blink::A
18 A(Type type) : m_type(type) { }
20 Type m_type;
42 Abstract(Type type) : A(type) { }
/external/v8/tools/clang/blink_gc_plugin/tests/
H A Dtrace_after_dispatch.h17 enum Type { TB, TC, TD }; enum in class:blink::A
18 A(Type type) : m_type(type) { }
20 Type m_type;
42 Abstract(Type type) : A(type) { }
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DSessionDescription.java38 public static enum Type { enum in class:SessionDescription
45 public static Type fromCanonicalForm(String canonical) {
46 return Type.valueOf(Type.class, canonical.toUpperCase());
50 public final Type type;
53 public SessionDescription(Type type, String description) {
/external/webrtc/webrtc/system_wrappers/include/
H A Dsort.h21 enum Type { enum in namespace:webrtc
42 int32_t Sort(void* data, uint32_t num_of_elements, Type data_type);
61 uint32_t size_of_element, Type key_type);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DClassicToken.cs60 type = oldToken.Type;
87 public int Type { property in class:Antlr.Runtime.ClassicToken
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DParseTree.cs76 public override int Type { property in class:Antlr.Runtime.Tree.ParseTree
92 if (t.Type == TokenTypes.EndOfFile) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DClassicToken.cs64 type = oldToken.Type;
96 public int Type property in class:Antlr.Runtime.ClassicToken
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DBenchmarkMethods.java37 enum Type { enum in class:BenchmarkMethods
42 static Type of(Method benchmarkMethod) {
/external/clang/include/clang/CodeGen/
H A DSwiftCallingConv.h19 #include "clang/AST/Type.h"
26 class Type;
49 llvm::Type *Type; member in struct:clang::CodeGen::swiftcall::SwiftAggLowering::StorageEntry
69 void addTypedData(llvm::Type *type, CharUnits begin);
70 void addTypedData(llvm::Type *type, CharUnits begin, CharUnits end);
94 llvm::function_ref<void(CharUnits offset, llvm::Type *type)>;
110 std::pair<llvm::StructType*, llvm::Type*> getCoerceAndExpandTypes() const;
115 void addLegalTypedData(llvm::Type *type, CharUnits begin, CharUnits end);
116 void addEntry(llvm::Type *typ
[all...]
/external/clang/lib/AST/
H A DInheritViz.cpp44 void WriteGraph(QualType Type) { argument
45 Out << "digraph \"" << llvm::DOT::EscapeString(Type.getAsString())
47 WriteNode(Type, false);
54 void WriteNode(QualType Type, bool FromVirtual);
59 raw_ostream& WriteNodeReference(QualType Type, bool FromVirtual);
63 void InheritanceHierarchyWriter::WriteNode(QualType Type, bool FromVirtual) { argument
64 QualType CanonType = Context.getCanonicalType(Type);
77 WriteNodeReference(Type, FromVirtual);
80 std::string TypeName = Type.getAsString();
95 = static_cast<const CXXRecordDecl *>(Type
125 WriteNodeReference(QualType Type, bool FromVirtual) argument
[all...]
/external/clang/test/Parser/
H A Dms-if-exists.cpp5 typedef int Type; typedef in class:MayExist
10 __if_exists(MayExist::Type) {
17 __if_not_exists(MayExist::Type) {
27 __if_exists(MayExist::Type) {
36 __if_exists(MayExist::Type) {
44 __if_not_exists(MayExist::Type) {
56 __if_exists(MayExist::Type) {2, }
74 __if_not_exists(MayExist::Type) { this will not compile }
82 __if_exists(MayExist::Type) {
94 __if_not_exists(MayExist::Type) {
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic.h31 typedef u8 Type; typedef in struct:__sanitizer::atomic_uint8_t
32 volatile Type val_dont_use;
36 typedef u16 Type; typedef in struct:__sanitizer::atomic_uint16_t
37 volatile Type val_dont_use;
41 typedef u32 Type; typedef in struct:__sanitizer::atomic_uint32_t
42 volatile Type val_dont_use;
46 typedef u64 Type; typedef in struct:__sanitizer::atomic_uint64_t
48 volatile ALIGNED(8) Type val_dont_use;
52 typedef uptr Type; typedef in struct:__sanitizer::atomic_uintptr_t
53 volatile Type val_dont_us
[all...]

Completed in 590 milliseconds

1234567891011>>