HomeSort by relevance Sort by last modified time
    Searched defs:Types (Results 76 - 100 of 299) sorted by null

1 2 34 5 6 7 8 91011>>

  /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; }
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
52 TypeList Types;
155 const TypeList &getTypes() const { return Types; }
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
55 TypeList Types;
158 const TypeList &getTypes() const { return Types; }
  /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/guice/core/test/com/google/inject/
TypeLiteralTest.java 23 import com.google.inject.util.Types;
40 Types.listOf(String.class)) {};
66 TypeLiteral<?> b = TypeLiteral.get(Types.listOf(Types.subtypeOf(CharSequence.class)));
108 TypeLiteral.get(Types.subtypeOf(Runnable.class));
189 assertEquals(ImmutableList.<Type>of(Types.listOf(typeVariables[0]), Runnable.class),
  /external/llvm/lib/DebugInfo/CodeView/
TypeDumper.cpp 675 Error CVTypeDumper::dump(const CVTypeArray &Types) {
678 if (auto EC = Visitor.visitTypeStream(Types))
685 CVTypeArray Types;
687 if (auto EC = Reader.readArray(Types, Reader.getLength()))
690 return dump(Types);
  /external/llvm/lib/Transforms/IPO/
WholeProgramDevirt.cpp 327 SmallVector<MDNode *, 2> Types;
329 Types.clear();
330 GV.getMetadata(LLVMContext::MD_type, Types);
331 if (Types.empty())
343 for (MDNode *Type : Types) {
  /external/syslinux/gpxe/src/include/gpxe/efi/Pi/
PiFirmwareVolume.h 150 EFI_GUID Types[1];
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 436 BYTE *Types;
441 PathData(): Count(0), Points(NULL), Types(NULL) {}
452 /* Callback function types */
453 /* FIXME: need a correct definition for these function pointer types */
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Include/
EfiFirmwareVolumeHeader.h 149 // GUID that maps OEM file types to GUIDs
155 EFI_GUID Types[1];
  /external/clang/lib/CodeGen/
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, bool Packed);
123 return llvm::Type::getIntNTy(Types.getLLVMContext(),
129 llvm::Type *Type = llvm::Type::getInt8Ty(Types.getLLVMContext());
136 llvm::Type *Type = Types.ConvertTypeForMem(FD->getType());
144 return Types.getCGRecordLayout(RD).getBaseSubobjectLLVMType();
156 return Types.isZeroInitializable(FD->getType());
159 return Types.isZeroInitializable(RD)
    [all...]
CGExprConstant.cpp 604 /// constant fold these types).
662 SmallVector<llvm::Type*, 2> Types;
664 Types.push_back(C->getType());
675 Types.push_back(Ty);
679 llvm::StructType::get(C->getType()->getContext(), Types, false);
824 std::vector<llvm::Type*> Types;
825 Types.reserve(NumInitableElts + NumElements);
827 Types.push_back(Elts[i]->getType());
829 Types, true);
877 return nullptr; // FIXME: other array types not implemente
    [all...]
  /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'}}
379 typedef pair<OuterTypes, InnerTypes>* types; \/\/ expected-error{{declaration type contains unexpanded parameter packs 'OuterTypes' and 'InnerTypes'}} typedef in struct:MemberTemplatePPNames::Inner
383 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/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/guava/guava/src/com/google/common/reflect/
Types.java 57 final class Types {
180 * <li> For all other types, {@code type.toString()} are returned.
245 return Types.toString(componentType) + "[]";
503 private static Type[] toArray(Collection<Type> types) {
504 return types.toArray(new Type[types.size()]);
512 private static void disallowPrimitiveType(Type[] types, String usedAs) {
513 for (Type type : types) {
596 return Types.toString(type);
599 final ImmutableList<Type> usedInGenericType(Type[] types) {
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Type.cs 65 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Field), global::Google.Protobuf.WellKnownTypes.Field.Parser, new[]{ "Kind", "Cardinality", "Number", "Name", "TypeUrl", "OneofIndex", "Packed", "Options", "JsonName", "DefaultValue" }, null, new[]{ typeof(global::Google.Protobuf.WellKnownTypes.Field.Types.Kind), typeof(global::Google.Protobuf.WellKnownTypes.Field.Types.Cardinality) }, null),
158 /// The list of types appearing in `oneof` definitions in this type.
374 private global::Google.Protobuf.WellKnownTypes.Field.Types.Kind kind_ = 0;
378 public global::Google.Protobuf.WellKnownTypes.Field.Types.Kind Kind {
387 private global::Google.Protobuf.WellKnownTypes.Field.Types.Cardinality cardinality_ = 0;
391 public global::Google.Protobuf.WellKnownTypes.Field.Types.Cardinality Cardinality {
429 /// types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
443 /// types. The first type has index 1; zero means the type is not in the list.
661 kind_ = (global::Google.Protobuf.WellKnownTypes.Field.Types.Kind) input.ReadEnum()
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
MapUnittestProto3.cs 158 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.TestProtos.MessageContainingEnumCalledType), global::Google.Protobuf.TestProtos.MessageContainingEnumCalledType.Parser, new[]{ "Type" }, null, new[]{ typeof(global::Google.Protobuf.TestProtos.MessageContainingEnumCalledType.Types.Type) }, new pbr::GeneratedClrTypeInfo[] { null, }),
    [all...]
UnittestIssues.cs 54 new pbr::GeneratedClrTypeInfo(typeof(global::UnitTest.Issues.TestProtos.Issue307), global::UnitTest.Issues.TestProtos.Issue307.Parser, null, null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::UnitTest.Issues.TestProtos.Issue307.Types.NestedOnce), global::UnitTest.Issues.TestProtos.Issue307.Types.NestedOnce.Parser, null, null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::UnitTest.Issues.TestProtos.Issue307.Types.NestedOnce.Types.NestedTwice), global::UnitTest.Issues.TestProtos.Issue307.Types.NestedOnce.Types.NestedTwice.Parser, null, null, null, null)})}),
59 new pbr::GeneratedClrTypeInfo(typeof(global::UnitTest.Issues.TestProtos.ReservedNames), global::UnitTest.Issues.TestProtos.ReservedNames.Parser, new[]{ "Types_", "Descriptor_" }, null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::UnitTest.Issues.TestProtos.ReservedNames.Types.SomeNestedType), global::UnitTest.Issues.TestProtos.ReservedNames.Types.SomeNestedType.Parser, null, null, null, null)}),
83 /// Issue 307: when generating doubly-nested types, any references
84 /// should be of the form A.Types.B.Types.C
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 310 /// non-constant operands. The types of the arguments are ordinarily
386 // TODO: If one of the types get legalized by splitting, handle this
422 // Bitcast between types that are legalized to the same type are free.
572 // TODO: If one of the types get legalized by splitting, handle this
602 // Assuming that all loads of legal types cost 1.
754 SmallVector<Type *, 4> Types;
758 Types.push_back(VF == 1 ? OpTy : VectorType::get(OpTy, VF));
776 getIntrinsicInstrCost(IID, RetTy, Types, FMF, ScalarizationCost);
779 assert (VF == 1 && "Can't vectorize types here.");
790 assert (VF == 1 && "Can't vectorize types here.")
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 310 /// non-constant operands. The types of the arguments are ordinarily
386 // TODO: If one of the types get legalized by splitting, handle this
422 // Bitcast between types that are legalized to the same type are free.
572 // TODO: If one of the types get legalized by splitting, handle this
602 // Assuming that all loads of legal types cost 1.
754 SmallVector<Type *, 4> Types;
758 Types.push_back(VF == 1 ? OpTy : VectorType::get(OpTy, VF));
776 getIntrinsicInstrCost(IID, RetTy, Types, FMF, ScalarizationCost);
779 assert (VF == 1 && "Can't vectorize types here.");
790 assert (VF == 1 && "Can't vectorize types here.")
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
  /external/google-breakpad/src/testing/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/googletest/googletest/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/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
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/lib/Linker/
IRMover.cpp 36 /// add types to MappedTypes, but keep track of them here in case we need to
46 /// This is the set of opaque types in the destination modules who are
85 // Check to see if these types are recursively isomorphic and establish a
107 /// Recursively walk this pair of types, returning true if they are isomorphic,
110 // Two types with differing kinds are clearly not isomorphic.
119 // Two identical types are clearly isomorphic. Remember this
126 // Okay, we have two types with identical kinds that we haven't seen before.
153 // If the number of subtypes disagree between the two types, then we fail.
180 // Otherwise, we speculate that these two types will line up and recursively
237 // These are types that LLVM itself will unique
    [all...]

Completed in 903 milliseconds

1 2 34 5 6 7 8 91011>>