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

1 2 3

  /external/bison/doc/
refcard.tex 347 \key{Define the union of all data types used in the parser.}
457 \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 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 36 /// FieldTypes - Holds the LLVM types that the struct is created from.
86 CodeGenTypes &Types;
150 /// ComputeNonVirtualBaseType - Compute the non-virtual base field types.
187 /// LLVM element types.
195 CGRecordLayoutBuilder(CodeGenTypes &Types)
199 Types(Types) { }
208 Alignment = Types.getContext().getASTRecordLayout(D).getAlignment();
211 IsMsStruct = D->isMsStruct(Types.getContext());
234 CGBitFieldInfo CGBitFieldInfo::MakeInfo(CodeGenTypes &Types,
    [all...]
ItaniumCXXABI.cpp 509 CodeGenTypes &Types = CGM.getTypes();
545 if (Types.isFuncTypeConvertible(FPT)) {
547 Ty = Types.GetFunctionType(Types.arrangeCXXMethodDeclaration(MD));
    [all...]
  /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 {
  /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/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
46 TypeList Types;
131 const TypeList &getTypes() const { return Types; }
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
50 TypeList Types;
135 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;
135 const TypeList &getTypes() const { return Types; }
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
50 TypeList Types;
135 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'}}
377 typedef pair<OuterTypes, InnerTypes>* types; \/\/ expected-error{{declaration type contains unexpanded parameter packs 'OuterTypes' and 'InnerTypes'}} typedef in struct:MemberTemplatePPNames::Inner
381 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/libvpx/libvpx/third_party/googletest/src/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/open-vcdiff/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...]
  /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 920 milliseconds

1 2 3