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

  /external/clang/lib/ARCMigrate/
TransZeroOutPropsInDealloc.cpp 103 ObjCPropertyImplDecl *PID = *I;
104 if (PID->getPropertyImplementation() ==
106 ObjCPropertyDecl *PD = PID->getPropertyDecl();
115 SynthesizedProperties[PD] = PID;
  /external/clang/lib/AST/
DeclObjC.cpp 107 const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this);
108 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
109 E = PID->protocol_end(); I != E; ++I)
    [all...]
DeclPrinter.cpp 927 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
928 Out << "@protocol " << *PID << '\n';
929 VisitDeclContext(PID, false);
933 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) {
934 Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\n";
936 VisitDeclContext(PID, false);
941 void DeclPrinter::VisitObjCCategoryDecl(ObjCCategoryDecl *PID) {
942 Out << "@interface " << *PID->getClassInterface() << '(' << *PID << ")\n"
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 723 static bool processStillExecuting(StringRef Hostname, int PID);
753 // Read the owning host and PID out of the lock file. If it appears that the
755 int PID = 0;
758 if (Input >> Hostname >> PID && PID > 0 &&
759 processStillExecuting(Hostname, PID))
760 return std::make_pair(Hostname, PID);
768 bool LockFileManager::processStillExecuting(StringRef Hostname, int PID) {
775 if (MyHostname == Hostname && getsid(PID) == -1 && errno == ESRCH)
822 // We failed to write out PID, so make up an excuse, remove th
    [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; }
145 unsigned pid, unsigned payload_unit_start_indicator,
149 if (pid == mProgramMapPID) {
160 ssize_t index = mStreams.indexOfKey(pid);
297 LOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type());
304 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 651 milliseconds