HomeSort by relevance Sort by last modified time
    Searched refs:Types (Results 126 - 150 of 274) sorted by null

1 2 3 4 56 7 8 91011

  /external/clang/lib/AST/
ASTContext.cpp 729 if (size_reserve > 0) Types.reserve(size_reserve);
782 llvm::errs() << " " << Types.size() << " types total.\n";
791 for (unsigned i = 0, e = Types.size(); i != e; ++i) {
792 Type *T = Types[i];
801 << " types\n"; \
    [all...]
  /external/chromium/testing/gtest/test/
gtest_output_test_.cc 747 TYPED_TEST_CASE(TypedTest, testing::Types<int>);
778 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
800 typedef testing::Types<int, double> NumericTypes;
  /external/chromium_org/testing/gtest/test/
gtest_output_test_.cc 760 TYPED_TEST_CASE(TypedTest, testing::Types<int>);
791 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
813 typedef testing::Types<int, double> NumericTypes;
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 580 /// constant fold these types).
636 SmallVector<llvm::Type*, 2> Types;
638 Types.push_back(C->getType());
649 Types.push_back(Ty);
653 llvm::StructType::get(C->getType()->getContext(), Types, false);
783 std::vector<llvm::Type*> Types;
784 Types.reserve(NumInitableElts + NumElements);
786 Types.push_back(Elts[i]->getType());
788 Types, true);
    [all...]
CGObjCMac.cpp 53 // The types of these functions don't really matter because we
196 CodeGen::CodeGenTypes &Types = CGM.getTypes();
198 llvm::Type *T = Types.ConvertType(Ctx.getObjCProtoType());
234 CodeGen::CodeGenTypes &Types = CGM.getTypes();
245 Types.GetFunctionType(Types.arrangeLLVMFunctionInfo(IdType, Params,
252 CodeGen::CodeGenTypes &Types = CGM.getTypes();
265 Types.GetFunctionType(Types.arrangeLLVMFunctionInfo(Ctx.VoidTy, Params,
272 CodeGen::CodeGenTypes &Types = CGM.getTypes()
    [all...]
TargetInfo.cpp 294 // Treat complex types as the element type.
315 // llvm-gcc (checks that all fields are 32-bit or 64-bit primitive types). We
319 // We can only expand structure types.
471 // Floating-point types don't go inreg.
648 // Structure types are passed in register if all fields would be
719 // We apply a similar transformation for pointer types to improve the
906 // Expand small (<= 128-bit) record types when we know that the stack layout
    [all...]
  /external/gtest/test/
gtest_output_test_.cc 747 TYPED_TEST_CASE(TypedTest, testing::Types<int>);
778 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
800 typedef testing::Types<int, double> NumericTypes;
  /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/protobuf/gtest/test/
gtest_output_test_.cc 724 TYPED_TEST_CASE(TypedTest, testing::Types<int>);
755 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
777 typedef testing::Types<int, double> NumericTypes;
  /ndk/sources/third_party/googletest/googletest/test/
gtest_output_test_.cc 760 TYPED_TEST_CASE(TypedTest, testing::Types<int>);
791 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
813 typedef testing::Types<int, double> NumericTypes;
  /external/chromium_org/sync/engine/
commit.cc 118 commit_request_types.PutAll(commit_set->Types());
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 57 template<typename...Ts> struct types;
83 typedef types<typename Take<_>::type...> take;
84 typedef types<typename Drop<_>::type...> drop;
98 // FIXME: Desguar the types on the RHS in this diagnostic.
99 // desired-error {{'types<void, void, void, void>' vs 'types<int, char, double, (no argument)>'}}
100 using T1 = types<void, void, void, void>; // expected-error {{'types<void, void, void, void>' vs 'types<typename inner<_>::type, typename inner<_>::type, typename inner<_>::type, (no argument)>'}}
102 using D1 = types<long>
    [all...]
  /external/llvm/utils/vim/
llvm.vim 14 " Types.
15 " Types also include struct, array, vector, etc. but these don't
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 19 ATTRIBUTE MS-MPPE-Encryption-Types 8 string Microsoft
  /external/clang/utils/TableGen/
NeonEmitter.cpp 110 /// NeonTypeFlags - Flags to identify the types for overloaded Neon
549 // Treat half-float ('h') types as unsigned short ('s') types.
595 // Non-return array types are passed as individual vectors.
976 // different types of checks, yet have more than 4 proto types
    [all...]
  /external/chromium_org/v8/src/
code-stubs.h     [all...]
code-stubs.cc 658 Types old_types(types_);
670 void ToBooleanStub::Types::Print(StringStream* stream) const {
686 bool ToBooleanStub::Types::UpdateStatus(Handle<Object> object) {
722 bool ToBooleanStub::Types::NeedsMap() const {
730 bool ToBooleanStub::Types::CanBeUndetectable() const {
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java 638 case Types.SMALLINT:
641 case Types.INTEGER:
644 case Types.DOUBLE:
647 case Types.FLOAT:
650 case Types.BIGINT:
653 case Types.BINARY:
654 case Types.VARBINARY:
655 case Types.LONGVARBINARY:
658 case Types.NULL:
    [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));
  /libcore/libdvm/src/main/java/java/lang/
Class.java 61 import libcore.reflect.Types;
69 * called "reflection". There are basically three types of {@code Class}
71 * primitive types, and those representing array classes.
73 * <h4>Class instances representing object types (classes or interfaces)</h4>
83 * <h4>Classes representing primitive types</h4>
85 * These represent the standard Java primitive types and hence share their
200 * Primitive types can not be found using this method; use {@code int.class} or {@code Integer.TYPE} instead.
223 * Primitive types can not be found using this method; use {@code int.class} or {@code Integer.TYPE} instead.
435 * constructor matching the given parameter types.
550 * matching the given parameter types that is declared by the clas
    [all...]
  /external/clang/include/clang/AST/
ASTContext.h 76 /// \brief Holds long-lived AST nodes (such as types and decls) that can be
81 mutable SmallVector<Type *, 0> Types;
145 /// \brief A cache from types to size and alignment information.
738 // Builtin Types.
764 // Types for deductions in C++0x [stmt.ranged]'s desugaring. Built on demand.
805 const SmallVectorImpl<Type *>& getTypes() const { return Types; }
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
extension_custom_bindings.js 72 // Types
  /libcore/libdvm/src/main/java/java/lang/reflect/
Field.java 39 import libcore.reflect.Types;
197 return Types.getType(genericType);
    [all...]
  /external/libvpx/libvpx/examples/includes/geshi/contrib/
cssgen.php 311 <tr><th>Data Types (int, boolean etc)</th><td><input type="text" name="keywords-4" value="color: #f63333;" /></td></tr>
  /external/stlport/test/eh/
main.cpp 40 # include <Types.h>

Completed in 723 milliseconds

1 2 3 4 56 7 8 91011