HomeSort by relevance Sort by last modified time
    Searched refs:RT (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/compiler-rt/test/asan/TestCases/Linux/
asan_dlopen_test.cc 11 dlopen(RT, RTLD_LAZY);
  /external/clang/lib/StaticAnalyzer/Checkers/
ReturnUndefChecker.cpp 47 QualType RT = CallEvent::getDeclaredResultType(SFC->getDecl());
58 if (!RT.isNull() && RT->isVoidType())
64 if (RT.isNull() && isa<BlockDecl>(SFC->getDecl()) &&
72 if (RT.isNull())
75 if (RT->isReferenceType()) {
CastSizeChecker.cpp 51 const RecordType *RT = ToPointeeTy->getAs<RecordType>();
52 if (!RT)
55 const RecordDecl *RD = RT->getDecl();
LLVMConventionsChecker.cpp 31 const RecordType *RT = T->getAs<RecordType>();
32 if (!RT)
35 return StringRef(QualType(RT, 0).getAsString()) ==
252 if (const RecordType *RT = T->getAs<RecordType>()) {
253 const RecordDecl *RD = RT->getDecl()->getDefinition();
ArrayBoundCheckerV2.cpp 223 if (const RecordType *RT = Ty->getAs<RecordType>()) {
224 const RecordDecl *D = RT->getDecl();
  /external/emma/core/java12/com/vladium/emma/rt/
RT.java 7 * $Id: RT.java,v 1.2.2.3 2004/07/16 23:32:03 vlad_r Exp $
9 package com.vladium.emma.rt;
27 abstract class RT implements IAppConstants
39 ClassLoader loader = RT.class.getClassLoader ();
84 final Runnable exitHook = new RTExitHook (RT.class, cdata, getCoverageOutFile (), getCoverageOutMerge ());
89 // the RT classloader is some component loader (e.g, in a J2EE container)
123 // issues of class name collisions and class reloading) or RT.class
124 // (to prevent RT reloading)]
150 if (DEBUG) System.out.println ("RT::dumpCoverageData() DUMPING " + RT.class.getClassLoader ())
    [all...]
RTExitHook.java 9 package com.vladium.emma.rt;
105 RTExitHook (final Class RT, final ICoverageData cdata, final File outFile, final boolean merge)
107 m_RT = RT;
120 private Class m_RT; // keep our RT class pinned in memory
AppRunner.java 9 package com.vladium.emma.rt;
70 RTSettings.setStandaloneMode (false); // an optimization to disable RT's static init code [this line must precede any reference to RT]
71 RT.reset (true, false); // reset RT [RT creates 'cdata' and loads app properties]
76 IProperties appProperties = RT.getAppProperties (); // try to use app props consistent with RT's view of them
361 ICoverageData cdata = RT.getCoverageData ();
584 RT.reset (false, false)
    [all...]
  /external/llvm/tools/lli/ChildTarget/
ChildTarget.cpp 19 RemoteTarget *RT;
49 ThisChild.RT = new RemoteTarget();
57 delete ThisChild.RT;
89 RT->stop();
116 RT->allocateSpace(AllocSize, Alignment, Addr);
135 if (!RT->isAllocatedMemory(Addr, BufferSize))
166 RT->executeCode(Addr, Result);
  /external/chromium_org/ui/gfx/geometry/
r_tree_unittest.cc 14 typedef RTree<int> RT;
18 void ValidateRTree(RTreeBase* rt) {
20 if (!rt->root()->count()) {
21 EXPECT_TRUE(rt->root()->rect().IsEmpty());
22 EXPECT_EQ(0, rt->root()->Level());
27 EXPECT_LE(rt->root()->count(), rt->max_children_);
29 EXPECT_GT(rt->root()->Level(), -1);
31 EXPECT_TRUE(rt->root()->parent() == NULL);
33 CheckBoundsConsistent(rt->root())
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 159 if (const RecordType *RT = dyn_cast<RecordType>(T))
160 return isSafeToConvert(RT->getDecl(), CGT, AlreadyChecked);
199 const RecordType *RT = dyn_cast<RecordType>(TT);
200 if (!RT) return true;
209 return isSafeToConvert(RT->getDecl(), *this);
297 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
298 return ConvertRecordDeclType(RT->getDecl());
480 if (const RecordType *RT = FT->getReturnType()->getAs<RecordType>())
481 ConvertRecordDeclType(RT->getDecl());
484 if (const RecordType *RT = FPT->getParamType(i)->getAs<RecordType>()
    [all...]
CGCXX.cpp 340 const RecordType *RT = T->getAs<RecordType>();
341 assert(RT && "BuildAppleKextVirtualCall - Qual type must be record");
342 const auto *RD = cast<CXXRecordDecl>(RT->getDecl());
TargetInfo.cpp 51 static CGCXXABI::RecordArgABI getRecordArgABI(const RecordType *RT,
53 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
61 const RecordType *RT = T->getAs<RecordType>();
62 if (!RT)
64 return getRecordArgABI(RT, CXXABI);
145 // This assumes the user is passing a library name like "rt" instead of a
172 const RecordType *RT = FT->getAs<RecordType>();
173 if (!RT)
180 if (isa<CXXRecordDecl>(RT->getDecl()))
190 const RecordType *RT = T->getAs<RecordType>()
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 441 const RecordType *RT = nullptr;
444 RT = VD->getType()->getAs<RecordType>();
446 RT = TD->getUnderlyingType()->getAs<RecordType>();
448 RT = TD->getTypeForDecl()->getAs<RecordType>();
449 if (!RT)
452 if (RequireCompleteType(AsmLoc, QualType(RT, 0), 0))
458 if (!LookupQualifiedName(FieldResult, RT->getDecl()))
466 const ASTRecordLayout &RL = Context.getASTRecordLayout(RT->getDecl());
SemaExceptionSpec.cpp 66 } else if (const ReferenceType *RT = T->getAs<ReferenceType>()) {
67 PointeeT = RT->getPointeeType();
70 if (RT->isRValueReferenceType()) {
825 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
826 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
    [all...]
SemaAccess.cpp 296 if (const RecordType *RT = T->getAs<RecordType>()) {
297 RD = cast<CXXRecordDecl>(RT->getDecl());
426 if (const RecordType *RT = Friend->getAs<RecordType>())
427 return MatchesFriend(S, EC, cast<CXXRecordDecl>(RT->getDecl()));
655 if (const RecordType *RT = T->getAs<RecordType>()) {
656 RD = cast<CXXRecordDecl>(RT->getDecl());
    [all...]
  /external/clang/lib/AST/
Type.cpp 366 if (const RecordType *RT = getAs<RecordType>())
367 return RT->getDecl()->isClass();
371 if (const RecordType *RT = getAs<RecordType>())
372 return RT->getDecl()->isStruct();
376 if (const RecordType *RT = getAs<RecordType>())
377 return RT->getDecl()->isInterface();
381 if (const RecordType *RT = getAs<RecordType>())
382 return RT->getDecl()->isStruct() || RT->getDecl()->isClass() ||
383 RT->getDecl()->isInterface()
    [all...]
RecordLayoutBuilder.cpp 162 const RecordType *RT =
166 if (!RT)
170 const CXXRecordDecl *MemberDecl = RT->getAsCXXRecordDecl();
400 const RecordType *RT = ElemTy->getAs<RecordType>();
401 if (!RT)
404 const CXXRecordDecl *RD = RT->getAsCXXRecordDecl();
497 const RecordType *RT = ElemTy->getAs<RecordType>();
498 if (!RT)
501 const CXXRecordDecl *RD = RT->getAsCXXRecordDecl();
    [all...]
DeclCXX.cpp     [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
onyx_if.c 689 #define RT(x) (x+7)
704 0, GOOD(2), 1500, GOOD(3), 2000, RT(0), 1000, RT(2), 2000, INT_MAX
708 1000, GOOD(2), 1500, GOOD(3), 2000, RT(0), 1000, RT(1), 2000,
709 RT(7), INT_MAX, INT_MAX
713 2000, GOOD(0), 2500, GOOD(2), 5000, GOOD(3), 7500, RT(0), 2500, RT(1), 5000,
714 RT(6), INT_MAX, INT_MAX
718 1000, GOOD(2), 1500, GOOD(3), 2000, RT(0), 0, RT(1), 1000, RT(2), 2000
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
onyx_if.c 666 #define RT(x) (x+7)
681 0, GOOD(2), 1500, GOOD(3), 2000, RT(0), 1000, RT(2), 2000, INT_MAX
685 1000, GOOD(2), 1500, GOOD(3), 2000, RT(0), 1000, RT(1), 2000,
686 RT(7), INT_MAX, INT_MAX
690 2000, GOOD(0), 2500, GOOD(2), 5000, GOOD(3), 7500, RT(0), 2500, RT(1), 5000,
691 RT(6), INT_MAX, INT_MAX
695 1000, GOOD(2), 1500, GOOD(3), 2000, RT(0), 0, RT(1), 1000, RT(2), 2000
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 53 if (const RecordType *RT = Ty->getAs<RecordType>()) {
54 const RecordDecl *D = RT->getDecl();
389 if (const ReferenceType *RT = T->getAs<ReferenceType>())
390 T = Ctx.getPointerType(RT->getPointeeType());
  /external/llvm/lib/Target/ARM/
ARMJITInfo.cpp 240 ARM::RelocationType RT = (ARM::RelocationType)MR->getRelocationType();
241 switch (RT) {
  /external/llvm/include/llvm/TableGen/
Record.h 147 static bool classof(const RecTy *RT) {
148 return RT->getRecTyKind() == BitRecTyKind;
184 static bool classof(const RecTy *RT) {
185 return RT->getRecTyKind() == BitsRecTyKind;
223 static bool classof(const RecTy *RT) {
224 return RT->getRecTyKind() == IntRecTyKind;
261 static bool classof(const RecTy *RT) {
262 return RT->getRecTyKind() == StringRecTyKind;
300 static bool classof(const RecTy *RT) {
301 return RT->getRecTyKind() == ListRecTyKind
    [all...]
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 76 } else if (ReferenceTypeLoc RT = TL.getAs<ReferenceTypeLoc>())
77 TL = RT.getPointeeLoc();

Completed in 9689 milliseconds

1 2 3 4