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

1 2 3

  /external/bison/doc/
refcard.tex 349 \key{Define the union of all data types used in the parser.}
459 \section {Variables and Types}
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
Types.java 21 public class Types {
23 public static Type[] getClonedTypeArray(ListOfTypes types) {
24 return types.getResolvedTypes().clone();
  /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 49 CodeGen::CodeGenTypes &Types = CGM.getTypes();
52 IntTy = Types.ConvertType(Ctx.IntTy);
53 SizeTy = Types.ConvertType(Ctx.getSizeType());
55 CharPtrTy = llvm::PointerType::getUnqual(Types.ConvertType(Ctx.CharTy));
56 VoidPtrTy = cast<llvm::PointerType>(Types.ConvertType(Ctx.VoidPtrTy));
CGRecordLayoutBuilder.cpp 36 /// FieldTypes - Holds the LLVM types that the struct is created from.
86 CodeGenTypes &Types;
148 /// ComputeNonVirtualBaseType - Compute the non-virtual base field types.
185 /// LLVM element types.
193 CGRecordLayoutBuilder(CodeGenTypes &Types)
197 Types(Types), BitsAvailableInLastField(0) { }
206 Alignment = Types.getContext().getASTRecordLayout(D).getAlignment();
232 CGBitFieldInfo CGBitFieldInfo::MakeInfo(CodeGenTypes &Types,
240 llvm::Type *Ty = Types.ConvertTypeForMem(FD->getType())
    [all...]
CodeGenModule.h 226 CodeGenTypes Types;
309 /// @name Cache for Objective-C runtime types
450 CodeGenTypes &getTypes() { return Types; }
529 /// are associated with declarations, not types.
    [all...]
ItaniumCXXABI.cpp 476 CodeGenTypes &Types = CGM.getTypes();
512 if (Types.isFuncTypeConvertible(FPT)) {
514 Ty = Types.GetFunctionType(Types.arrangeCXXMethodDeclaration(MD));
    [all...]
CGBlocks.cpp 371 // So do types that require non-trivial copy construction.
376 // And so do types with destructors.
1844 SmallVector<llvm::Type *, 8> types; local
    [all...]
CGExprConstant.cpp 613 /// constant fold these types).
665 SmallVector<llvm::Type*, 2> Types;
667 Types.push_back(C->getType());
678 Types.push_back(Ty);
682 llvm::StructType::get(C->getType()->getContext(), Types, false);
805 std::vector<llvm::Type*> Types;
806 Types.reserve(NumInitableElts + NumElements);
808 Types.push_back(Elts[i]->getType());
810 Types, true);
    [all...]
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
46 TypeList Types;
120 const TypeList &getTypes() const { return Types; }
  /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);
  /frameworks/av/media/libmedia/
Metadata.cpp 21 #include <sys/types.h>
39 // Types
40 enum Types {
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
50 TypeList Types;
124 const TypeList &getTypes() const { return Types; }
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
50 TypeList Types;
124 const TypeList &getTypes() const { return Types; }
  /libcore/luni/src/main/java/java/sql/
Types.java 21 * A class which defines constants used to identify generic SQL types, also
22 * called JDBC types. The type constant values are equivalent to those defined
25 public class Types {
30 private 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'}}
368 typedef pair<OuterTypes, InnerTypes>* types; \/\/ expected-error{{declaration type contains unexpanded parameter packs 'OuterTypes' and 'InnerTypes'}} typedef in struct:MemberTemplatePPNames::Inner
372 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/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/testing/gtest/include/gtest/internal/
gtest-type-util.h 39 // Currently we support at most 50 types in a list, and at most 50
90 // two types are equal.
101 // template Types. This allows us to simulate variadic templates
102 // (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't
108 // represents a type list with N types (T1, T2, ..., and TN) in it.
109 // Except for Types0, every struct in the family has two member types:
712 // as that would require them to count the length. Types<...> is much
    [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
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/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/protobuf/gtest/include/gtest/internal/
gtest-type-util.h 37 // Currently we support at most 50 types in a list, and at most 50
63 // two types are equal.
97 // template Types. This allows us to simulate variadic templates
98 // (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't
104 // represents a type list with N types (T1, T2, ..., and TN) in it.
105 // Except for Types0, every struct in the family has two member types:
708 // as that would require them to count the length. Types<...> is much
711 // argument, even if it has the default value (this means Types<int>
712 // will appear as Types<int, None, None, ..., None> in the compiler
    [all...]

Completed in 423 milliseconds

1 2 3