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

1 2 3 4 5 6 7

  /external/llvm/include/llvm/AsmParser/
SlotMapping.h 28 /// nodes, global values and types. It also contains the mapping for the named
29 /// types.
37 std::map<unsigned, Type *> Types;
  /external/bison/doc/
refcard.tex 347 \key{Define the union of all data types used in the parser.}
457 \section {Variables and Types}
  /external/guice/core/src/com/google/inject/util/
Types.java 35 * Static methods for working with types.
40 public final class Types {
41 private Types() {}
123 // for other custom collections types, use newParameterizedType()
  /external/guava/guava-tests/test/com/google/common/reflect/
TypesTest.java 42 * Tests for {@link Types}.
51 ParameterizedType ourType = Types.newParameterizedType(
60 ParameterizedType ourType = Types.newParameterizedType(
73 Types.newArrayType(Types.newArrayType(int.class))),
81 Type ourType = Types.newParameterizedType(LocalClass.class, String.class);
92 Type ourType = Types.newParameterizedType(LocalClass.class, String.class);
99 ParameterizedType ourType = Types.newParameterizedTypeWithOwner(
115 SerializableTester.reserializeAndAssert(Types.newParameterizedType(
121 Types.newParameterizedTypeWithOwner
    [all...]
TypeResolverTest.java 114 assertEquals(Types.subtypeOf(String.class), new TypeResolver()
118 assertEquals(Types.supertypeOf(String.class), new TypeResolver()
  /build/make/tools/droiddoc/test/stubs/expected/com/android/stubs/
Types.java 2 public class Types
15 protected Types() { throw new RuntimeException("Stub!"); }
  /build/make/tools/droiddoc/test/stubs/src/com/android/stubs/
Types.java 19 public class Types {
39 public Types() {
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
XenBus.c 297 CONST CHAR8 **Types;
304 &Count, &Types);
310 XenBusEnumerateDeviceType (Dev, Types[Index]);
313 FreePool ((VOID*)Types);
  /libcore/luni/src/main/java/libcore/reflect/
Types.java 27 public final class Types {
28 private Types() {
46 public static Type[] getTypeArray(ListOfTypes types, boolean clone) {
47 if (types.length() == 0) {
50 Type[] result = types.getResolvedTypes();
77 * Returns the names of {@code types} separated by commas.
79 public static String toString(Class<?>[] types) {
80 if (types.length == 0) {
84 appendTypeName(result, types[0]);
85 for (int i = 1; i < types.length; i++)
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SITypeRewriter.cpp 1 //===-- SITypeRewriter.cpp - Remove unwanted types ------------------------===//
20 /// - Having v1* types complicates the legalizer and we can easily replace
98 SmallVector <Type*, 8> Types;
109 Types.push_back(v4i32);
120 Types.push_back(ElementTy);
126 Types.push_back(Arg->getType());
135 NewF = Function::Create(FunctionType::get(F->getReturnType(), Types, false), GlobalValue::ExternalLinkage, Name, Mod);
  /external/llvm/lib/Transforms/IPO/
CrossDSOCFI.cpp 85 SmallVector<MDNode *, 2> Types;
87 Types.clear();
88 GO.getMetadata(LLVMContext::MD_type, Types);
89 for (MDNode *Type : Types) {
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
45 TypeList Types;
116 const TypeList &getTypes() const { return Types; }
  /external/swiftshader/third_party/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/ojluni/src/main/java/java/sql/
Types.java 30 * SQL types, called JDBC types.
34 public class Types {
313 private Types() {}
  /external/guice/core/test/com/google/inject/util/
TypesTest.java 23 import static com.google.inject.util.Types.subtypeOf;
24 import static com.google.inject.util.Types.supertypeOf;
46 // generic types for comparison
75 assertEqualsBothWays(mapStringInteger, Types.mapOf(String.class, Integer.class));
76 assertEqualsBothWays(listString, Types.listOf(String.class));
77 assertEqualsBothWays(setString, Types.setOf(String.class));
82 ParameterizedType parameterizedType = Types.newParameterizedType(Map.class, arguments);
90 ParameterizedType actual = Types.newParameterizedTypeWithOwner(
105 Types.newParameterizedType(Map.class, String.class, int.class);
109 "Primitive types are not allowed in type parameters: int")
    [all...]
  /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/guice/core/test/com/google/inject/
TypeLiteralTypeResolutionTest.java 21 import static com.google.inject.util.Types.arrayOf;
22 import static com.google.inject.util.Types.listOf;
23 import static com.google.inject.util.Types.newParameterizedType;
24 import static com.google.inject.util.Types.newParameterizedTypeWithOwner;
25 import static com.google.inject.util.Types.setOf;
28 import com.google.inject.util.Types;
253 assertEquals(Types.mapOf(String.class, Integer.class),
275 typeResolver = TypeLiteral.get(Types.setOf(Integer.class));
286 assertEquals(Types.newParameterizedType(AbstractCollection.class, String.class),
321 // TODO(jessewilson): tests for tricky bounded types like <T extends Collection, Serializable
    [all...]
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 87 CodeGen::CodeGenTypes &Types = CGM.getTypes();
90 IntTy = Types.ConvertType(Ctx.IntTy);
91 SizeTy = Types.ConvertType(Ctx.getSizeType());
94 CharPtrTy = llvm::PointerType::getUnqual(Types.ConvertType(Ctx.CharTy));
95 VoidPtrTy = cast<llvm::PointerType>(Types.ConvertType(Ctx.VoidPtrTy));
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
56 TypeList Types;
205 const TypeList &getTypes() const { return Types; }
  /external/llvm/lib/IR/
IRBuilder.cpp 243 /// an array of operands - Ops, and an array of overloaded types -
276 // We specify only one type when we create this intrinsic. Types of other
298 "Incompatible pointer and data types");
306 // We specify only one type when we create this intrinsic. Types of other
443 Type *Types[] = {ResultType};
444 Value *FnGCResult = Intrinsic::getDeclaration(M, ID, Types);
456 Type *Types[] = {ResultType};
458 Intrinsic::getDeclaration(M, Intrinsic::experimental_gc_relocate, Types);
  /external/llvm/tools/llvm-pdbdump/
llvm-pdbdump.cpp 96 "Dump semantic information about types and symbols");
121 cl::opt<bool> Types("types", cl::desc("Display types"), cl::cat(TypeCategory),
126 All("all", cl::desc("Implies all other options in 'Symbol Types' category"),
134 "exclude-types", cl::desc("Exclude types by regular expression"),
144 "include-types",
145 cl::desc("Include only types which match a regular expression"),
158 cl::desc("Don't show compiler generated types and symbols")
    [all...]
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 101 SmallVector<Type *, 10> Types;
102 Types.append(10, Ty);
103 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Context), Types, false);
  /external/protobuf/csharp/src/AddressBook/
Addressbook.cs 38 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Examples.AddressBook.Person), global::Google.Protobuf.Examples.AddressBook.Person.Parser, new[]{ "Name", "Id", "Email", "Phones" }, null, new[]{ typeof(global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneType) }, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber), global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber.Parser, new[]{ "Number", "Type" }, null, null, null)}),
114 private static readonly pb::FieldCodec<global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber> _repeated_phones_codec
115 = pb::FieldCodec.ForMessage(34, global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber.Parser);
116 private readonly pbc::RepeatedField<global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber> phones_ = new pbc::RepeatedField<global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber>();
117 public pbc::RepeatedField<global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber> Phones {
226 #region Nested types
227 /// <summary>Container for nested types declared in the Person message type.</summary
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
52 TypeList Types;
155 const TypeList &getTypes() const { return Types; }

Completed in 1014 milliseconds

1 2 3 4 5 6 7