HomeSort by relevance Sort by last modified time
    Searched defs:PID (Results 1 - 10 of 10) sorted by null

  /external/clang/lib/ARCMigrate/
TransZeroOutPropsInDealloc.cpp 104 ObjCPropertyImplDecl *PID = *I;
105 if (PID->getPropertyImplementation() ==
107 ObjCPropertyDecl *PD = PID->getPropertyDecl();
116 SynthesizedProperties[PD] = PID;
  /external/clang/lib/AST/
DeclObjC.cpp 106 const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this);
107 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
108 E = PID->protocol_end(); I != E; ++I)
    [all...]
DeclPrinter.cpp 864 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
865 Out << "@protocol " << PID << '\n';
866 VisitDeclContext(PID, false);
870 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) {
871 Out << "@implementation " << PID->getClassInterface() << '(' << PID << ")\n";
873 VisitDeclContext(PID, false);
878 void DeclPrinter::VisitObjCCategoryDecl(ObjCCategoryDecl *PID) {
879 Out << "@interface " << PID->getClassInterface() << '(' << PID << ")\n"
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp     [all...]
  /frameworks/base/media/libstagefright/
MPEG2TSWriter.cpp 701 // PID = b0000000000000 (13 bits)
748 // PID = b0 0001 1110 0000 (13 bits) [0x1e0]
825 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
859 const unsigned PID = 0x1e0 + sourceIndex + 1;
886 *ptr++ = 0x40 | (PID >> 8);
887 *ptr++ = PID & 0xff;
921 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
934 *ptr++ = 0x00 | (PID >> 8);
935 *ptr++ = PID & 0xff;
  /frameworks/base/media/libstagefright/mpeg2ts/
ATSParser.cpp 50 unsigned pid, unsigned payload_unit_start_indicator,
89 unsigned pid() const { return mElementaryPID; } function in struct:android::ATSParser::Stream
90 void setPID(unsigned pid) { mElementaryPID = pid; }
142 unsigned pid, unsigned payload_unit_start_indicator,
146 if (pid == mProgramMapPID) {
157 ssize_t index = mStreams.indexOfKey(pid);
294 LOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type());
301 LOGI("PID 0x%08x => type 0x%02x", info.mPID, info.mType)
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/qemu/
usb-linux.c 449 if (p->pid == USB_TOKEN_IN)
741 switch(p->pid) {
762 switch (p->pid) {
1679 char bus[10], addr[10], vid[10], pid[10]; local
    [all...]

Completed in 98 milliseconds