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

1 2 3 4 5 6 7

  /external/libcxx/test/thread/futures/futures.tas/futures.task.members/
ctor1.fail.cpp 22 typedef std::packaged_task<A(int, char)> PT;
28 PT p { VPT{} };
ctor2.fail.cpp 24 typedef std::packaged_task<A(int, char)> PT;
29 PT p { std::allocator_arg_t{}, test_allocator<A>{}, VPT {}};
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/futures.task.members/
ctor1.fail.cpp 22 typedef std::packaged_task<A(int, char)> PT;
28 PT p { VPT{} };
ctor2.fail.cpp 24 typedef std::packaged_task<A(int, char)> PT;
29 PT p { std::allocator_arg_t{}, test_allocator<A>{}, VPT {}};
  /external/clang/lib/Analysis/
CocoaConventions.cpp 42 const PointerType* PT = RetTy->getAs<PointerType>();
43 if (!(PT->getPointeeType().getUnqualifiedType()->isVoidType()))
63 const ObjCObjectPointerType *PT = Ty->getAs<ObjCObjectPointerType>();
66 if (!PT)
71 if (PT->isObjCIdType() || PT->isObjCQualifiedIdType() ||
72 PT->isObjCClassType() || PT->isObjCQualifiedClassType())
77 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
ScanfFormatString.cpp 402 QualType PT = QT->getPointeeType();
405 if (const EnumType *ETy = PT->getAs<EnumType>())
406 PT = ETy->getDecl()->getIntegerType();
408 const BuiltinType *BT = PT->getAs<BuiltinType>();
413 if (PT->isAnyCharacterType()) {
415 if (PT->isWideCharType())
478 if (isa<TypedefType>(PT) && (LangOpt.C99 || LangOpt.CPlusPlus11))
479 namedTypeToLengthModifier(PT, LM);
489 if (PT->isRealFloatingType())
491 else if (PT->isSignedIntegerType()
    [all...]
FormatString.cpp 260 const PointerType *PT = argTy->getAs<PointerType>();
261 if (!PT)
265 if (PT->getPointeeType().isConstQualified())
268 argTy = PT->getPointeeType();
333 const PointerType *PT = argTy->getAs<PointerType>();
334 if (!PT)
336 QualType pointeeTy = PT->getPointeeType();
353 const PointerType *PT = argTy->getAs<PointerType>();
354 if (!PT)
357 C.getCanonicalType(PT->getPointeeType()).getUnqualifiedType()
    [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTextureGLThreadToGL_test.cpp 26 class PT : public ProducerThread {
34 runProducerThread(new PT());
45 class PT : public ProducerThread {
53 runProducerThread(new PT());
66 class PT : public ProducerThread {
78 runProducerThread(new PT());
95 class PT : public ProducerThread {
107 runProducerThread(new PT());
125 class PT : public ProducerThread {
139 runProducerThread(new PT());
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 129 Modifier(BasicBlock *Block, PieceTable *PT, Random *R):
130 BB(Block),PT(PT),Ran(R),Context(BB->getContext()) {}
146 assert(PT->size());
147 return PT->at(Ran->Rand() % PT->size());
166 for (unsigned i=0; i<PT->size(); ++i) {
167 Value *V = PT->at((index + i) % PT->size());
199 for (unsigned i=0; i<PT->size(); ++i)
    [all...]
  /external/clang/test/Parser/
cxx-ambig-paren-expr.cpp 16 typedef int *PT;
18 x = (PT()[(int){1}]); // expected-warning {{compound literals}}
  /external/oprofile/module/ia64/
IA64entry.h 21 #define PT(f) (IA64_PT_REGS_##f##_OFFSET)
27 .spillsp rp, PT(CR_IIP)+16+(off); \
28 .spillsp ar.pfs, PT(CR_IFS)+16+(off); \
29 .spillsp ar.unat, PT(AR_UNAT)+16+(off); \
30 .spillsp ar.fpsr, PT(AR_FPSR)+16+(off); \
31 .spillsp pr, PT(PR)+16+(off);
  /external/clang/test/Sema/
offsetof.c 5 typedef struct P { int i; float f; } PT;
10 PT X[100];
  /frameworks/av/media/libstagefright/rtsp/
ASessionDescription.h 44 size_t index, unsigned long *PT,
48 size_t index, unsigned long PT,
ASessionDescription.cpp 199 size_t index, unsigned long *PT,
212 *PT = x;
226 size_t index, unsigned long PT,
232 sprintf(key, "a=framesize:%lu", PT);
  /external/fio/tools/
fio_generate_plots 99 PT=$(echo $x | sed s/_"$FILETYPE".log//g)
105 DEPTH=$(echo $PT | cut -d "-" -f 4)
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 319 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>();
320 if (!PT)
323 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
359 const PointerType *PT = FPT->getParamType(1)->getAs<PointerType>();
360 if (!PT)
363 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
399 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>();
400 if (!PT)
404 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
571 const PointerType *PT = FPT->getParamType(i)->getAs<PointerType>()
    [all...]
NSErrorChecker.cpp 288 const ObjCObjectPointerType* PT =
291 if (!PT)
294 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
  /external/llvm/lib/IR/
IRBuilder.cpp 43 PointerType *PT = cast<PointerType>(Ptr->getType());
44 if (PT->getElementType()->isIntegerTy(8))
48 PT = getInt8PtrTy(PT->getAddressSpace());
49 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
  /external/llvm/lib/Support/
Host.cpp 780 Triple PT(Triple::normalize(LLVM_HOST_TRIPLE));
782 if (sizeof(void *) == 8 && PT.isArch32Bit())
783 PT = PT.get64BitArchVariant();
784 if (sizeof(void *) == 4 && PT.isArch64Bit())
785 PT = PT.get32BitArchVariant();
787 return PT.str();
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-myanmar-machine.rl 54 PT = 25;
74 pwo_tone_group = PT A* DB? As?;
  /external/llvm/include/llvm/IR/
Instruction.h 474 typedef Instruction* PT;
476 static inline void *getAsVoidPointer(PT P) { return P; }
477 static inline PT getFromVoidPointer(void *P) {
478 return static_cast<PT>(P);
Value.h 549 typedef Value* PT;
551 static inline void *getAsVoidPointer(PT P) { return P; }
552 static inline PT getFromVoidPointer(void *P) {
553 return static_cast<PT>(P);
  /art/runtime/base/
allocator.h 127 template <typename PT>
128 void deallocate(PT p, size_type n) {
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
RTPencode.cc 74 void NetEQTest_GetCodec_and_PT(char * name, webrtc::NetEqDecoder *codec, int *PT, int frameLen, int *fs, int *bitrate, int *useRed);
805 void NetEQTest_GetCodec_and_PT(char * name, webrtc::NetEqDecoder *codec, int *PT, int frameLen, int *fs, int *bitrate, int *useRed) {
812 *PT=NETEQ_CODEC_PCMU_PT;
817 *PT=NETEQ_CODEC_PCMA_PT;
822 *PT=NETEQ_CODEC_PCM16B_PT;
827 *PT=NETEQ_CODEC_PCM16B_WB_PT;
832 *PT=NETEQ_CODEC_PCM16B_SWB32KHZ_PT;
837 *PT=NETEQ_CODEC_PCM16B_SWB48KHZ_PT;
842 *PT=NETEQ_CODEC_G722_PT;
848 *PT=NETEQ_CODEC_ILBC_PT
    [all...]
  /external/chromium_org/media/cast/rtcp/
rtcp_utility.cc 108 switch (header.PT) {
270 // |V=2|P| IC | PT | length |
281 parsed_header->PT = data_begin[1];
612 DCHECK((header.PT == transport::kPacketTypeGenericRtpFeedback) ||
613 (header.PT == transport::kPacketTypePayloadSpecific))
633 if (header.PT == transport::kPacketTypeGenericRtpFeedback) {
666 } else if (header.PT == transport::kPacketTypePayloadSpecific) {

Completed in 527 milliseconds

1 2 3 4 5 6 7