Searched refs:T1 (Results 176 - 200 of 217) sorted by relevance

123456789

/external/chromium/testing/gtest/test/
H A Dgtest_unittest.cc2388 template <typename T1, typename T2>
2389 bool GreaterThan(T1 x1, T2 x2) {
2430 template <typename T1, typename T2>
2432 const T1& x1, const T2& x2) {
7030 template <typename T1, typename T2>
7032 CompileAssertTypesEqual<T1, GTEST_REMOVE_REFERENCE_(T2)>();
7056 template <typename T1, typename T2>
7058 CompileAssertTypesEqual<T1, GTEST_REMOVE_CONST_(T2)>();
7069 template <typename T1, typename T2>
7071 CompileAssertTypesEqual<T1, GTEST_REMOVE_REFERENCE_AND_CONST
[all...]
/external/gtest/test/
H A Dgtest_unittest.cc2388 template <typename T1, typename T2>
2389 bool GreaterThan(T1 x1, T2 x2) {
2430 template <typename T1, typename T2>
2432 const T1& x1, const T2& x2) {
7030 template <typename T1, typename T2>
7032 CompileAssertTypesEqual<T1, GTEST_REMOVE_REFERENCE_(T2)>();
7056 template <typename T1, typename T2>
7058 CompileAssertTypesEqual<T1, GTEST_REMOVE_CONST_(T2)>();
7069 template <typename T1, typename T2>
7071 CompileAssertTypesEqual<T1, GTEST_REMOVE_REFERENCE_AND_CONST
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tree.Tests.pas1605 T1, T2: ICommonTree;
1609 T1 := Wiz.CreateTreeOrNode('(A B C)') as ICommonTree;
1611 CheckTrue(Wiz.Equals(T1, T2, Adaptor));
1618 T1, T2: ICommonTree;
1622 T1 := Wiz.CreateTreeOrNode('(A B[foo] C)') as ICommonTree;
1624 CheckFalse(Wiz.Equals(T1, T2, Adaptor));
1631 T1, T2: ICommonTree;
1635 T1 := Wiz.CreateTreeOrNode('(A B[foo] C)') as ICommonTree;
1637 CheckTrue(Wiz.Equals(T1, T2, Adaptor));
/external/clang/lib/Sema/
H A DSemaLookup.cpp2134 /// arguments have types T1 (and, if non-empty, T2). This routine
2139 QualType T1, QualType T2,
2141 if (T1->isDependentType() || (!T2.isNull() && T2->isDependentType()))
2144 if (T1->isRecordType() || (!T2.isNull() && T2->isRecordType()))
2151 if (T1->isEnumeralType()) {
2153 if (Context.hasSameUnqualifiedType(T1, ArgType))
2188 QualType T1, QualType T2,
2197 // that have a first parameter of type T1 or "reference to
2198 // (possibly cv-qualified) T1", when T1 i
2138 IsAcceptableNonMemberOperatorCandidate(FunctionDecl *Fn, QualType T1, QualType T2, ASTContext &Context) argument
2187 LookupOverloadedOperatorName(OverloadedOperatorKind Op, Scope *S, QualType T1, QualType T2, UnresolvedSetImpl &Functions) argument
2663 QualType T1, T2; local
[all...]
H A DSemaExprCXX.cpp3953 // The process for determining whether an operand expression E1 of type T1
3988 // same type as, or a base class of, the class of T1, and
4396 QualType T1 = E1->getType(), T2 = E2->getType(); local
4404 if (!T1->isAnyPointerType() && !T1->isMemberPointerType() &&
4406 if (T1->isNullPtrType() &&
4408 E2 = ImpCastExprToType(E2, T1, CK_NullToPointer).take();
4409 return T1;
4427 if (T1->isMemberPointerType())
4428 E2 = ImpCastExprToType(E2, T1, CK_NullToMemberPointe
[all...]
H A DSemaChecking.cpp5692 bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2);
5813 bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2) { argument
5814 if (T1.isNull() || T2.isNull())
5818 // If two types T1 and T2 are the same type, then T1 and T2 are
5820 if (C.hasSameType(T1, T2))
5823 T1 = T1.getCanonicalType().getUnqualifiedType();
5826 const Type::TypeClass TC1 = T1->getTypeClass();
5834 cast<EnumType>(T1)
5997 IsSameCharType(QualType T1, QualType T2) argument
[all...]
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-matchers.h1118 template <typename T1, typename T2> \
1119 operator Matcher< ::std::tr1::tuple<T1, T2> >() const { \
1120 return MakeMatcher(new Impl< ::std::tr1::tuple<T1, T2> >); \
1122 template <typename T1, typename T2> \
1123 operator Matcher<const ::std::tr1::tuple<T1, T2>&>() const { \
1124 return MakeMatcher(new Impl<const ::std::tr1::tuple<T1, T2>&>); \
1974 // must be able to be safely cast to Matcher<tuple<const T1&, const
1975 // T2&> >, where T1 and T2 are the types of elements in the LHS
2936 // T1&, const T2&> >, where T1 an
[all...]
/external/llvm/lib/TableGen/
H A DRecord.cpp348 /// resolveTypes - Find a common type that T1 and T2 convert to.
351 RecTy *llvm::resolveTypes(RecTy *T1, RecTy *T2) { argument
352 if (!T1->typeIsConvertibleTo(T2)) {
353 if (!T2->typeIsConvertibleTo(T1)) {
355 RecordRecTy *RecTy1 = dynamic_cast<RecordRecTy*>(T1);
357 // See if T2 inherits from a type T1 also inherits from
376 // See if T1 inherits from a type T2 also inherits from
384 RecTy *NewType2 = resolveTypes(T1, SuperRecTy2);
397 return T1;
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt048rewrite.py10 class T1(testbase.ANTLRTest): class in inherits:testbase.ANTLRTest
/external/chromium/base/
H A Dstl_util-inl.h284 template <class R, class T1, class T2>
/external/chromium/build/
H A Dinstall-build-deps.sh428 -e "/Provides/s/($conflicts)(, *)?//g;T1;s/, *$//;:1" \
/external/opencv/cv/src/
H A Dcvfundam.cpp894 CvMat T0, T1; local
895 T0 = T1 = F0;
897 T1.data.db = tt1;
899 // F0 <- T1'*F0*T0
900 cvGEMM( &T1, &F0, 1., 0, 0., &TF, CV_GEMM_A_T );
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPServerTransaction.java221 this.ticks = SIPTransaction.T1;
244 this.ticks = SIPTransaction.T1;
252 * with an interval that starts at T1 seconds and doubles for each retransmission (T1
272 // timer H MUST be set to fire in 64*T1 seconds for all transports. Timer H
936 * set Timer J to fire in 64*T1 seconds for unreliable transports, and
969 * an interval that starts at T1 seconds and doubles for each
970 * retransmission until it reaches T2 seconds (T1 and T2 are defined
992 * state. For unreliable transports, timer G is set to fire in T1
1033 * transports, timer G is set to fire in T1 second
[all...]
H A DSIPTransaction.java104 protected static final int T1 = 1; field in class:SIPTransaction
/external/dropbear/libtomcrypt/src/ciphers/
H A Dkhazad.c107 static const ulong64 T1[256] = { variable
645 T1[(int)(K1 >> 48) & 0xff] ^
664 T1[(int)S[(int)(K1 >> 48) & 0xff] & 0xff] ^
702 T1[(int)(state >> 48) & 0xff] ^
717 (T1[(int)(state >> 48) & 0xff] & CONST64(0x00ff000000000000)) ^
/external/llvm/include/llvm/ADT/
H A DIntervalMap.h183 // T1 T2 N Waste Used by
192 template <typename T1, typename T2, unsigned N>
197 T1 first[N];
206 void copy(const NodeBase<T1, T2, M> &Other, unsigned i,
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp1777 /// isCompatibleAggregate - Check if T1 and T2 are either the same type or are
1779 static bool isCompatibleAggregate(Type *T1, Type *T2) { argument
1780 if (T1 == T2)
1785 if (isHomogeneousAggregate(T1, NumElts1, EltTy1) &&
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.ascend271 VALUE Ascend-FR-Link-Mgt Ascend-FR-T1-617D 1
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h761 // Defining a variable of type CompileAssertTypesEqual<T1, T2> will cause a
762 // compiler error iff T1 and T2 are different types.
763 template <typename T1, typename T2>
H A Dgtest-port.h731 template <typename T1, typename T2>
/external/gtest/include/gtest/internal/
H A Dgtest-internal.h767 // Defining a variable of type CompileAssertTypesEqual<T1, T2> will cause a
768 // compiler error iff T1 and T2 are different types.
769 template <typename T1, typename T2>
H A Dgtest-port.h765 template <typename T1, typename T2>
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp338 .Case("t1", Mips::T1)
/external/llvm/test/MC/ARM/
H A Dbasic-thumb-instructions.s35 @ the literal is in the range [0,7] which would allow encoding T1.
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h786 // Defining a variable of type CompileAssertTypesEqual<T1, T2> will cause a
787 // compiler error iff T1 and T2 are different types.
788 template <typename T1, typename T2>

Completed in 2793 milliseconds

123456789