HomeSort by relevance Sort by last modified time
    Searched defs:Types (Results 1 - 25 of 43) sorted by null

1 2

  /external/bison/doc/
refcard.tex 347 \key{Define the union of all data types used in the parser.}
457 \section {Variables and Types}
  /dalvik/hit/src/com/android/hit/
Types.java 19 public class Types {
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
Types.java 2 public class Types
15 protected Types() { throw new RuntimeException("Stub!"); }
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/
Types.java 19 public class Types {
39 public Types() {
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 48 CodeGen::CodeGenTypes &Types = CGM.getTypes();
51 IntTy = Types.ConvertType(Ctx.IntTy);
52 SizeTy = Types.ConvertType(Ctx.getSizeType());
54 CharPtrTy = llvm::PointerType::getUnqual(Types.ConvertType(Ctx.CharTy));
55 VoidPtrTy = cast<llvm::PointerType>(Types.ConvertType(Ctx.VoidPtrTy));
CGRecordLayoutBuilder.cpp 45 /// when lowered to llvm types. For example unsigned x : 24 gets lowered to
66 /// SCISSOR. If LLVM were updated to read base types (which it probably
76 // member. In additional to the standard member types, there exists a
96 CGRecordLowering(CodeGenTypes &Types, const RecordDecl *D);
108 return llvm::Type::getIntNTy(Types.getLLVMContext(),
114 llvm::Type *Type = llvm::Type::getInt8Ty(Types.getLLVMContext());
121 llvm::Type *Type = Types.ConvertTypeForMem(FD->getType());
128 return Types.getCGRecordLayout(RD).getBaseSubobjectLLVMType();
142 return Types.getCXXABI().isZeroInitializable(MPT);
148 return Types.getCGRecordLayout(RD).isZeroInitializable()
    [all...]
CGBlocks.cpp 422 // So do types that require non-trivial copy construction.
427 // And so do types with destructors.
2013 SmallVector<llvm::Type *, 8> types; local
    [all...]
CGExprConstant.cpp 559 /// constant fold these types).
615 SmallVector<llvm::Type*, 2> Types;
617 Types.push_back(C->getType());
628 Types.push_back(Ty);
632 llvm::StructType::get(C->getType()->getContext(), Types, false);
765 std::vector<llvm::Type*> Types;
766 Types.reserve(NumInitableElts + NumElements);
768 Types.push_back(Elts[i]->getType());
770 Types, true);
    [all...]
CodeGenModule.h 289 CodeGenTypes Types;
422 /// @name Cache for Objective-C runtime types
597 CodeGenTypes &getTypes() { return Types; }
674 /// declarations, not types.
    [all...]
  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 1 //===-- SITypeRewriter.cpp - Remove unwanted types ------------------------===//
20 /// - Having v1* types complicates the legalizer and we can easily replace
105 SmallVector <Type*, 8> Types;
113 Types.push_back(v4i32);
124 Types.push_back(ElementTy);
130 Types.push_back(Arg->getType());
139 NewF = Function::Create(FunctionType::get(F->getReturnType(), Types, false), GlobalValue::ExternalLinkage, Name, Mod);
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 92 SmallVector<Type *, 10> Types;
93 Types.append(10, Ty);
94 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Context), Types, false);
  /external/deqp/modules/glshared/
glsLifetimeTests.hpp 259 class Types : public ContextWrapper
262 Types (const Context& ctx)
269 virtual ~Types (void) {}
353 class ES2Types : public Types
381 void addTestCases (TestCaseGroup& group, Types& types);
417 using details::Types;
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
48 TypeList Types;
137 const TypeList &getTypes() const { return Types; }
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p5.cpp 12 template<typename... Types>
14 typedef pair<Types..., int> expand_with_pacs; // okay
15 typedef pair<Types, int...> expand_no_packs; // expected-error{{pack expansion does not contain any unexpanded parameter packs}}
16 typedef pair<pair<Types..., int>..., int> expand_with_expanded_nested; // expected-error{{pack expansion does not contain any unexpanded parameter packs}}
21 template<typename ...Types>
25 typedef tuple<pair<Types, OtherTypes>...> type; // expected-error{{pack expansion contains parameter packs 'Types' and 'OtherTypes' that have different lengths (3 vs. 2)}}
41 template<typename T, int N, typename ... Types>
43 : public Types, public T // expected-error{{base type contains unexpanded parameter pack 'Types'}}
378 typedef pair<OuterTypes, InnerTypes>* types; \/\/ expected-error{{declaration type contains unexpanded parameter packs 'OuterTypes' and 'InnerTypes'}} typedef in struct:MemberTemplatePPNames::Inner
382 typedef pair<pair<VeryInnerTypes, OuterTypes>, pair<InnerTypes, OuterTypes> > types; \/\/ expected-error{{declaration type contains unexpanded parameter packs 'VeryInnerTypes', 'OuterTypes', ...}} typedef in struct:MemberTemplatePPNames::Inner::VeryInner
    [all...]
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 7 * $Id: Types.java,v 1.1.1.1 2004/05/09 16:57:50 vlad_r Exp $
24 public abstract class Types
34 // TODO: handle array and other types
141 * Converts a method signature (parameter types + return type) to its VM descriptor
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
NavigatorView.js 67 if (type === WebInspector.NavigatorTreeOutline.Types.Domain)
69 if (type === WebInspector.NavigatorTreeOutline.Types.FileSystem)
167 var type = project.type() === WebInspector.projectTypes.FileSystem ? WebInspector.NavigatorTreeOutline.Types.FileSystem : WebInspector.NavigatorTreeOutline.Types.Domain;
211 folderNode = new WebInspector.NavigatorFolderTreeNode(this, null, name, WebInspector.NavigatorTreeOutline.Types.Folder, folderPath, name);
609 WebInspector.NavigatorTreeOutline.Types = {
628 if (type === WebInspector.NavigatorTreeOutline.Types.Domain) {
633 if (type === WebInspector.NavigatorTreeOutline.Types.FileSystem)
635 if (type === WebInspector.NavigatorTreeOutline.Types.Folder)
826 WebInspector.BaseNavigatorTreeElement.call(this, WebInspector.NavigatorTreeOutline.Types.UISourceCode, title, this._calculateIconClasses(), false)
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/
ClassDef.java 27 import com.vladium.jcd.lib.Types;
277 dout.writeUTF (Types.vmNameToJavaName (getName ())); // [in Java format]
317 ifcs [i] = Types.vmNameToJavaName (((CONSTANT_Class_info) m_constants.get (interfaces.get (i))).getName (this));
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-type-util.h 39 // Currently we support at most 50 types in a list, and at most 50
94 // two types are equal.
105 // template Types. This allows us to simulate variadic templates
106 // (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't
112 // represents a type list with N types (T1, T2, ..., and TN) in it.
113 // Except for Types0, every struct in the family has two member types:
716 // as that would require them to count the length. Types<...> is muc
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-type-util.h 39 // Currently we support at most 50 types in a list, and at most 50
95 // two types are equal.
106 // template Types. This allows us to simulate variadic templates
107 // (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't
113 // represents a type list with N types (T1, T2, ..., and TN) in it.
114 // Except for Types0, every struct in the family has two member types:
717 // as that would require them to count the length. Types<...> is muc
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
  /external/gtest/include/gtest/internal/
gtest-type-util.h 39 // Currently we support at most 50 types in a list, and at most 50
94 // two types are equal.
105 // template Types. This allows us to simulate variadic templates
106 // (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't
112 // represents a type list with N types (T1, T2, ..., and TN) in it.
113 // Except for Types0, every struct in the family has two member types:
716 // as that would require them to count the length. Types<...> is muc
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-type-util.h 39 // Currently we support at most 50 types in a list, and at most 50
95 // two types are equal.
106 // template Types. This allows us to simulate variadic templates
107 // (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't
113 // represents a type list with N types (T1, T2, ..., and TN) in it.
114 // Except for Types0, every struct in the family has two member types:
717 // as that would require them to count the length. Types<...> is muc
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-type-util.h 39 // Currently we support at most 50 types in a list, and at most 50
95 // two types are equal.
106 // template Types. This allows us to simulate variadic templates
107 // (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't
113 // represents a type list with N types (T1, T2, ..., and TN) in it.
114 // Except for Types0, every struct in the family has two member types:
717 // as that would require them to count the length. Types<...> is muc
    [all...]
  /external/chromium_org/v8/src/
code-stubs.h 2248 Types types() const { return Types(TypesBits::decode(sub_minor_key())); } function in class:ToBooleanStub
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 7 #include "src/hydrogen-types.h"
9 #include "src/types.h"
80 class Types {
82 Types(Region* region, Isolate* isolate)
86 types.push_back(name);
106 types.push_back(Type::Class(*it, region));
129 types.push_back(Type::Constant(*it, region));
153 types.push_back(Fuzz());
198 TypeVector types; member in class:Types
258 return types[rng_->NextInt(static_cast<int>(types.size()))]
    [all...]

Completed in 2458 milliseconds

1 2