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

1 2 3

  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/
RT.py 18 class RT(dns.rdtypes.mxbase.UncompressedDowncasingMX):
19 """RT record"""
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/
RT.java 12 package org.jacoco.agent.rt;
14 import org.jacoco.agent.rt.internal.Agent;
19 public final class RT {
21 private RT() {
  /external/jacoco/org.jacoco.agent.rt/src/com/vladium/emma/rt/
RT.java 12 package com.vladium.emma.rt;
24 * @deprecated Use {@link org.jacoco.agent.rt.IAgent} instead.
27 public final class RT {
29 private RT() {
52 out.write(org.jacoco.agent.rt.RT.getAgent().getExecutionData(false));
  /external/valgrind/memcheck/tests/ppc32/
power_ISA2_07.c 14 unsigned RT;
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);
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/memcheck/tests/ppc64/
power_ISA2_07.c 14 unsigned long RT;
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);
power_ISA2_05.c 176 unsigned long long RT;
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/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()) ==
251 if (const RecordType *RT = T->getAs<RecordType>()) {
252 const RecordDecl *RD = RT->getDecl()->getDefinition();
PaddingChecker.cpp 107 const RecordType *RT = ArrTy->getElementType()->getAs<RecordType>();
108 if (RT == nullptr)
113 visitRecord(RT->getDecl(), Elts);
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 43 const RecordType *RT = VD.getType()->getAs<RecordType>();
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()) {
ASTDiagnostic.cpp 74 QualType RT = Desugar(Context, SugarRT, DesugarReturn);
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>();
920 if (!RT)
924 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
    [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/clang/lib/CodeGen/
CGCXX.cpp 297 const RecordType *RT = T->getAs<RecordType>();
298 assert(RT && "BuildAppleKextVirtualCall - Qual type must be record");
299 const auto *RD = cast<CXXRecordDecl>(RT->getDecl());
CodeGenTypes.cpp 161 if (const auto *RT = T->getAs<RecordType>())
162 return isSafeToConvert(RT->getDecl(), CGT, AlreadyChecked);
206 const RecordType *RT = dyn_cast<RecordType>(TT);
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 = dyn_cast<RecordType>(Ty)
    [all...]
CGExprConstant.cpp 924 const RecordType *RT =
926 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/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
rdatatype.py 54 RT = 21
116 'RT' : RT,
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 93 } else if (const ReferenceType *RT = T->getAs<ReferenceType>()) {
94 PointeeT = RT->getPointeeType();
97 if (RT->isRValueReferenceType()) {
    [all...]
SemaAccess.cpp 301 if (const RecordType *RT = T->getAs<RecordType>()) {
302 RD = cast<CXXRecordDecl>(RT->getDecl());
431 if (const RecordType *RT = Friend->getAs<RecordType>())
432 return MatchesFriend(S, EC, cast<CXXRecordDecl>(RT->getDecl()));
660 if (const RecordType *RT = T->getAs<RecordType>()) {
661 RD = cast<CXXRecordDecl>(RT->getDecl());
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp     [all...]
  /external/dhcpcd-6.8.2/
dhcp6.h 175 struct timespec RT;
  /toolchain/binutils/binutils-2.25/opcodes/
nds32-asm.c 100 {"rt", 20, 5, 0, HW_GPR, NULL},
217 #define RT(r) (r << 20)
225 {"lbi", "=rt,[%ra{+%i15s}]", OP6 (LBI), 4, ATTR_ALL, 0, NULL, 0, NULL},
226 {"lhi", "=rt,[%ra{+%i15s1}]", OP6 (LHI), 4, ATTR_ALL, 0, NULL, 0, NULL},
227 {"lwi", "=rt,[%ra{+%i15s2}]", OP6 (LWI), 4, ATTR_ALL, 0, NULL, 0, NULL},
228 {"lbi.bi", "=rt,[%ra],%i15s", OP6 (LBI_BI), 4, ATTR_ALL, 0, NULL, 0, NULL},
229 {"lhi.bi", "=rt,[%ra],%i15s1", OP6 (LHI_BI), 4, ATTR_ALL, 0, NULL, 0, NULL},
230 {"lwi.bi", "=rt,[%ra],%i15s2", OP6 (LWI_BI), 4, ATTR_ALL, 0, NULL, 0, NULL},
231 {"sbi", "%rt,[%ra{+%i15s}]", OP6 (SBI), 4, ATTR_ALL, 0, NULL, 0, NULL},
232 {"shi", "%rt,[%ra{+%i15s1}]", OP6 (SHI), 4, ATTR_ALL, 0, NULL, 0, NULL}
    [all...]

Completed in 540 milliseconds

1 2 3