Searched defs:Type (Results 1 - 25 of 624) sorted by relevance

1234567891011>>

/external/libcxx/test/std/utilities/function.objects/func.require/
H A Dinvoke.pass.cpp25 struct Type struct
40 static_assert(sizeof(std::__invoke(&Type::f1, std::declval<Type >())) == 1, "");
41 static_assert(sizeof(std::__invoke(&Type::f2, std::declval<Type const >())) == 2, "");
43 static_assert(sizeof(std::__invoke(&Type::g1, std::declval<Type &>())) == 1, "");
44 static_assert(sizeof(std::__invoke(&Type::g2, std::declval<Type const &>())) == 2, "");
46 static_assert(sizeof(std::__invoke(&Type
[all...]
/external/dagger2/core/src/main/java/dagger/
H A DProvides.java37 enum Type { enum in interface:Provides
72 Type type() default Type.UNIQUE;
/external/dagger2/producers/src/main/java/dagger/producers/
H A DProduces.java38 enum Type { enum in interface:Produces
69 Type type() default Type.UNIQUE;
/external/clang/test/CodeGenCXX/
H A Ddelayed-template-parsing.cpp5 struct Type { struct in namespace:ClassScopeSpecialization
13 Type T;
14 // CHECK: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QAEXXZ"
15 // X64: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QEAAXXZ"
/external/llvm/lib/DebugInfo/DWARF/
H A DSyntaxHighlighting.cpp21 WithColor::WithColor(llvm::raw_ostream &OS, enum HighlightColor Type) : OS(OS) { argument
24 switch (Type) {
/external/llvm/lib/DebugInfo/PDB/
H A DPDB.cpp23 PDB_ErrorCode llvm::loadDataForPDB(PDB_ReaderType Type, StringRef Path, argument
25 // Create the correct concrete instance type based on the value of Type.
32 PDB_ErrorCode llvm::loadDataForEXE(PDB_ReaderType Type, StringRef Path, argument
34 // Create the correct concrete instance type based on the value of Type.
/external/llvm/lib/Object/
H A DELF.cpp19 StringRef getELFRelocationTypeName(uint32_t Machine, uint32_t Type) { argument
22 switch (Type) {
30 switch (Type) {
37 switch (Type) {
44 switch (Type) {
51 switch (Type) {
58 switch (Type) {
65 switch (Type) {
72 switch (Type) {
79 switch (Type) {
[all...]
H A DELFObjectFile.cpp20 ELFObjectFileBase::ELFObjectFileBase(unsigned int Type, MemoryBufferRef Source) argument
21 : ObjectFile(Type, Source) {}
H A DSymbolicFile.cpp24 SymbolicFile::SymbolicFile(unsigned int Type, MemoryBufferRef Source) argument
25 : Binary(Type, Source) {}
30 MemoryBufferRef Object, sys::fs::file_magic Type, LLVMContext *Context) {
32 if (Type == sys::fs::file_magic::unknown)
33 Type = sys::fs::identify_magic(Data);
35 switch (Type) {
60 return ObjectFile::createObjectFile(Object, Type);
67 ObjectFile::createObjectFile(Object, Type);
81 llvm_unreachable("Unexpected Binary File Type");
29 createSymbolicFile( MemoryBufferRef Object, sys::fs::file_magic Type, LLVMContext *Context) argument
/external/llvm/tools/llvm-pdbdump/
H A DBuiltinDumper.cpp22 WithColor(Printer, PDB_ColorItem::Type).get() << getTypeName(Symbol);
26 PDB_BuiltinType Type = Symbol.getBuiltinType(); local
27 switch (Type) {
/external/nanopb-c/generator/google/protobuf/internal/
H A Dapi_implementation.py82 def Type(): function
85 # See comment on 'Type' above.
/external/skia/src/pdf/
H A DSkJpegInfo.h16 enum Type { enum in struct:SkJFIFInfo
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/common/
H A Dtokenizer.py25 Type = tokens.TokenType variable
37 non-matched text when in the given mode. Defaults to Type.NORMAL.
48 non-matched text when in the given mode. Defaults to Type.NORMAL.
107 self.__AddToken(self._CreateToken('', Type.BLANK_LINE, line, line_number))
162 type = Type.NORMAL
/external/clang/include/clang/AST/
H A DTypeVisitor.h1 //===--- TypeVisitor.h - Visitor for Type subclasses ------------*- C++ -*-===//
17 #include "clang/AST/Type.h"
29 /// \tparam RetTy %Type of result produced by the operation.
32 /// from Type. The operation is performed by calling method Visit. It then
43 /// Type *atype = ...
59 /// \li <tt>ImplClass::VisitType(const Type*)</tt>
60 /// \li <tt>TypeVisitor::VisitType(const Type*)</tt>
69 RetTy Visit(const Type *T) {
73 #define TYPE(CLASS, PARENT) case Type::CLASS: DISPATCH(CLASS##Type);
88 VisitType(const Type*) argument
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.h23 const TypeDescriptor &Type; member in struct:__ubsan::DynamicTypeCacheMissData
30 const TypeDescriptor &Type; member in struct:__ubsan::CFIBadTypeData
/external/deqp/framework/delibs/decpp/
H A DdeMeta.hpp39 typedef T Type; typedef in struct:de::meta::EnableIf
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/
H A DProvidesIntoOptional.java56 enum Type { enum in interface:ProvidesIntoOptional
65 Type value();
/external/libunwind/doc/
H A Dlibunwind-ia64.tex20 \Type{unw\_word\_t} is always defined to be 64 bits wide (independent
35 64-bit wide \Type{unw\_word\_t} values, \Prog{libunwind} treats the
194 \section{The Unwind-Context Type}
196 On IA-64, \Type{unw\_context\_t} is simply an alias for
197 \Type{ucontext\_t} (as defined by the Single UNIX Spec). This implies
/external/parameter-framework/upstream/parameter/
H A DInstanceConfigurableElement.h47 enum Type enum in class:CInstanceConfigurableElement
80 // Type
81 virtual Type getType() const = 0;
120 // Type Element
/external/skia/src/gpu/vk/
H A DGrVkImageView.h19 enum Type { enum in class:GrVkImageView
24 static const GrVkImageView* Create(GrVkGpu* gpu, VkImage image, VkFormat format, Type viewType);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIToken.cs42 int Type { property in interface:Antlr.Runtime.IToken
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonErrorNode.cs48 stop.Type != TokenTypes.EndOfFile)) {
73 if (((IToken)stop).Type == TokenTypes.EndOfFile) {
89 public override int Type { property in class:Antlr.Runtime.Tree.CommonErrorNode
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIToken.cs45 int Type property in interface:Antlr.Runtime.IToken
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonErrorNode.cs51 stop.Type != TokenTypes.EndOfFile ) )
82 if ( ( (IToken)stop ).Type == TokenTypes.EndOfFile )
104 public override int Type property in class:Antlr.Runtime.Tree.CommonErrorNode
H A DParseTree.cs88 public override int Type property in class:Antlr.Runtime.Tree.ParseTree
110 if ( t.Type == TokenTypes.EndOfFile )

Completed in 2637 milliseconds

1234567891011>>