Searched defs:RT (Results 1 - 25 of 57) sorted by relevance

123

/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/
H A DRT.py18 class RT(dns.rdtypes.mxbase.UncompressedDowncasingMX): class in inherits:dns.rdtypes.mxbase.UncompressedDowncasingMX
19 """RT record"""
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/
H A DRT.java19 public final class RT { class
21 private RT() { method in class:RT
/external/jacoco/org.jacoco.agent.rt/src/com/vladium/emma/rt/
H A DRT.java27 public final class RT { class
29 private RT() { method in class:RT
52 out.write(org.jacoco.agent.rt.RT.getAgent().getExecutionData(false));
/external/valgrind/memcheck/tests/ppc32/
H A Dpower_ISA2_07.c14 unsigned RT; local
28 __asm__ volatile ("lbarx %0, 20, 21, 1":"=r" (RT));
29 printf("lbarx => 0x%x\n", RT);
35 __asm__ volatile ("lharx %0, 20, 21, 1":"=r" (RT));
36 printf("lharx => 0x%x\n", RT);
H A Dpower_ISA2_05.c171 int RT; local
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/memcheck/tests/ppc64/
H A Dpower_ISA2_07.c14 unsigned long RT; local
28 __asm__ volatile ("lbarx %0, 20, 21, 1":"=r" (RT));
29 printf("lbarx => 0x%lx\n", RT);
35 __asm__ volatile ("lharx %0, 20, 21, 1":"=r" (RT));
36 printf("lharx => 0x%lx\n", RT);
H A Dpower_ISA2_05.c176 unsigned long long RT; local
187 __asm__ volatile ("lwarx %0, 20, 21, 1":"=r" (RT));
188 printf("lwarx => 0x%llx\n", RT);
195 __asm__ volatile ("ldarx %0, 20, 21, 1":"=r" (RT));
196 printf("ldarx => 0x%llx\n", RT);
/external/emma/core/java12/com/vladium/emma/rt/
H A DRTExitHook.java105 RTExitHook (final Class RT, final ICoverageData cdata, final File outFile, final boolean merge) argument
107 m_RT = RT;
120 private Class m_RT; // keep our RT class pinned in memory
H A DRT.java7 * $Id: RT.java,v 1.2.2.3 2004/07/16 23:32:03 vlad_r Exp $
27 abstract class RT implements IAppConstants class in inherits: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 ());
176 private RT () {} // preven method in class:RT
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DReturnUndefChecker.cpp47 QualType RT = CallEvent::getDeclaredResultType(SFC->getDecl()); local
58 if (!RT.isNull() && RT->isVoidType())
64 if (RT.isNull() && isa<BlockDecl>(SFC->getDecl()) &&
72 if (RT.isNull())
75 if (RT->isReferenceType()) {
H A DCastSizeChecker.cpp51 const RecordType *RT = ToPointeeTy->getAs<RecordType>(); local
52 if (!RT)
55 const RecordDecl *RD = RT->getDecl();
H A DLLVMConventionsChecker.cpp31 const RecordType *RT = T->getAs<RecordType>(); local
32 if (!RT)
35 return StringRef(QualType(RT, 0).getAsString()) ==
251 if (const RecordType *RT = T->getAs<RecordType>()) {
252 const RecordDecl *RD = RT->getDecl()->getDefinition();
H A DPaddingChecker.cpp107 const RecordType *RT = ArrTy->getElementType()->getAs<RecordType>(); local
108 if (RT == nullptr)
113 visitRecord(RT->getDecl(), Elts);
/external/clang/lib/AST/
H A DItaniumCXXABI.cpp43 const RecordType *RT = VD.getType()->getAs<RecordType>(); local
44 assert(RT && "type of VarDecl is expected to be RecordType.");
45 assert(RT->getDecl()->isUnion() && "RecordType is expected to be a union.");
46 if (const FieldDecl *FD = RT->getDecl()->findFirstNamedDataMember()) {
H A DASTDiagnostic.cpp74 QualType RT = Desugar(Context, SugarRT, DesugarReturn); local
76 RT = Context.getAttributedType(
77 AttributedType::getNullabilityAttrKind(*nullability), RT, RT);
97 QT = FPT ? Context.getFunctionType(RT, Args, FPT->getExtProtoInfo())
98 : Context.getFunctionNoProtoType(RT, FT->getExtInfo());
918 const RecordType *RT = Ty->getAs<RecordType>(); local
920 if (!RT)
924 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
/external/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp19 RemoteTarget *RT; member in class:LLIChildTarget
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/
H A DCGCXX.cpp297 const RecordType *RT = T->getAs<RecordType>(); local
298 assert(RT && "BuildAppleKextVirtualCall - Qual type must be record");
299 const auto *RD = cast<CXXRecordDecl>(RT->getDecl());
H A DCodeGenTypes.cpp161 if (const auto *RT = T->getAs<RecordType>())
162 return isSafeToConvert(RT->getDecl(), CGT, AlreadyChecked);
206 const RecordType *RT = dyn_cast<RecordType>(TT); local
207 if (!RT) return true;
216 return isSafeToConvert(RT->getDecl(), *this);
310 if (const RecordType *RT = FT->getReturnType()->getAs<RecordType>())
311 ConvertRecordDeclType(RT->getDecl());
314 if (const RecordType *RT = FPT->getParamType(i)->getAs<RecordType>())
315 ConvertRecordDeclType(RT->getDecl());
374 if (const RecordType *RT
[all...]
H A DCGExprConstant.cpp924 const RecordType *RT = local
926 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1593 if (const RecordType *RT = T->getAs<RecordType>()) {
1594 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
H A Drdatatype.py54 RT = 21 variable
116 'RT' : RT,
/external/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h92 MinMaxRecurrenceKind MK, Instruction *UAI, Type *RT,
95 UnsafeAlgebraInst(UAI), RecurrenceType(RT), IsSigned(Signed) {
200 /// that ANDs the Phi with a type mask, return the user. RT is updated to
203 static Instruction *lookThroughAnd(PHINode *Phi, Type *&RT,
213 Type *RT, bool &IsSigned,
91 RecurrenceDescriptor(Value *Start, Instruction *Exit, RecurrenceKind K, MinMaxRecurrenceKind MK, Instruction *UAI, Type *RT, bool Signed, SmallPtrSetImpl<Instruction *> &CI) argument
/external/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp77 raw_ostream &operator<<(raw_ostream &OS, const ARM::WinEH::ReturnType &RT) { argument
78 switch (RT) {
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp93 } else if (const ReferenceType *RT = T->getAs<ReferenceType>()) {
94 PointeeT = RT->getPointeeType();
97 if (RT->isRValueReferenceType()) {
893 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
894 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
931 const RecordType *RT = Op->getType()->getAs<RecordType>(); local
932 if (!RT)
935 if (!cast<CXXRecordDecl>(RT->getDecl())->isPolymorphic())
1028 if (const RecordType *RT = DTy->getAs<RecordType>()) {
1029 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp70 RecurrenceDescriptor::lookThroughAnd(PHINode *Phi, Type *&RT, argument
79 // Matches either I & 2^x-1 or 2^x-1 & I. If we find a match, we update RT
85 RT = IntegerType::get(Phi->getContext(), Bits);
95 Instruction *Start, Instruction *Exit, Type *RT, bool &IsSigned,
101 unsigned DstSize = RT->getPrimitiveSizeInBits();
94 getSourceExtensionKind( Instruction *Start, Instruction *Exit, Type *RT, bool &IsSigned, SmallPtrSetImpl<Instruction *> &Visited, SmallPtrSetImpl<Instruction *> &CI) argument
/external/dhcpcd-6.8.2/
H A Ddhcp6.h175 struct timespec RT; member in struct:dhcp6_state

Completed in 4251 milliseconds

123