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

1 2

  /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();
  /external/llvm/lib/Target/ARM/
ARMJITInfo.cpp 240 ARM::RelocationType RT = (ARM::RelocationType)MR->getRelocationType();
241 switch (RT) {
  /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/clang/lib/CodeGen/
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());
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...]
CGExprConstant.cpp 802 const RecordType *RT =
804 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
    [all...]
  /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...]
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/valgrind/main/memcheck/tests/ppc32/
power_ISA2_05.c 171 int RT;
181 __asm__ volatile ("lwarx %0, 20, 21, 1":"=r" (RT));
182 printf("lwarx => %x\n", RT);
187 __asm__ volatile ("ldarx %0, 20, 21, 1":"=r" (RT));
188 printf("ldarx => %x\n", RT);
  /external/valgrind/main/memcheck/tests/ppc64/
power_ISA2_05.c 170 int RT;
180 __asm__ volatile ("lwarx %0, 20, 21, 1":"=r" (RT));
181 printf("lwarx => %x\n", RT);
186 __asm__ volatile ("ldarx %0, 20, 21, 1":"=r" (RT));
187 printf("ldarx => %x\n", RT);
  /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/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/smack/src/org/xbill/DNS/
Type.java 76 public static final int RT = 21;
247 types.add(RT, "RT", new RTRecord());
  /frameworks/compile/slang/
slang_rs_export_type.cpp     [all...]
  /external/clang/lib/AST/
DeclCXX.cpp     [all...]
ASTDiagnostic.cpp 840 const RecordType *RT = Ty->getAs<RecordType>();
842 if (!RT)
846 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
    [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...]
  /external/chromium_org/third_party/libvpx/source/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/
RegionStore.cpp     [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/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp     [all...]

Completed in 207 milliseconds

1 2