/external/clang/lib/ARCMigrate/ |
TransUnusedInitDelegate.cpp | 50 bool VisitObjCMessageExpr(ObjCMessageExpr *ME) { 51 if (ME->isDelegateInitCall() && 52 isRemovable(ME) && 54 ME->getExprLoc())) { 57 ME->getExprLoc()); 58 Pass.TA.insert(ME->getExprLoc(), "self = ");
|
TransZeroOutPropsInDealloc.cpp | 39 bool VisitObjCMessageExpr(ObjCMessageExpr *ME) { 43 if (ME->getReceiverKind() != ObjCMessageExpr::Instance) 45 Expr *receiver = ME->getInstanceReceiver(); 58 if (PropDecl->getSetterName() == ME->getSelector()) { 68 Expr *RHS = ME->getArg(0); 72 if (RHSIsNull && isRemovable(ME)) 73 TA.removeStmt(ME);
|
TransAutoreleasePool.cpp | 354 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E); 355 if (!ME) return false; 356 if (ME->getMethodFamily() == OMF_new && 357 ME->getReceiverKind() == ObjCMessageExpr::Class && 358 isNSAutoreleasePool(ME->getReceiverInterface())) 360 if (ME->getReceiverKind() == ObjCMessageExpr::Instance && 361 ME->getMethodFamily() == OMF_init) { 362 Expr *rec = getEssential(ME->getInstanceReceiver()); 377 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S); 378 if (!ME) return false [all...] |
Transforms.cpp | 131 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E); 132 if (!ME) 134 switch (ME->getMethodFamily()) { 139 switch (ME->getReceiverKind()) { 143 return hasSideEffects(ME->getInstanceReceiver(), Ctx);
|
TransRetainReleaseDealloc.cpp | 161 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E)) 162 return (ME->isInstanceMessage() && ME->getSelector() == DelegateSel);
|
/system/extras/ext4_utils/ |
test_ext4fixup | 5 ME=`basename $0` 9 echo "$ME: Usage: $ME <iterations> <maxcount> <filesystem_image>" >&2 21 echo "$ME: Filesystem image $NEW_FS_IMAGE does not exist" >&2 35 echo "$ME: ext4fixup failed!\n" 63 echo "$ME: test failed with parameters $PHASE, $LOC, $COUNT"
|
/frameworks/compile/libbcc/bcinfo/tools/ |
main.cpp | 78 static void dumpMetadata(bcinfo::MetadataExtractor *ME) { 79 if (!ME) { 83 printf("exportVarCount: %u\n", ME->getExportVarCount()); 84 printf("exportFuncCount: %u\n", ME->getExportFuncCount()); 87 ME->getExportForEachSignatureCount()); 88 const uint32_t *sigList = ME->getExportForEachSignatureList(); 89 for (size_t i = 0; i < ME->getExportForEachSignatureCount(); i++) { 93 printf("pragmaCount: %u\n", ME->getPragmaCount()); 94 const char **keyList = ME->getPragmaKeyList(); 95 const char **valueList = ME->getPragmaValueList() [all...] |
/external/ipsec-tools/src/libipsec/ |
policy_parse.h | 54 ME = 270, 73 #define ME 270
|
/external/icu4c/config/ |
icu-config-bottom | 18 ME=`basename "$0"` 72 echo "usage: ${ME} " `allflags | cut -c-25 | sed -e 's%.*%[ & ]%'` 78 echo "${ME}: icu-config: ICU configuration helper script" 99 echo "### $ME: Can't find ${ICUUC_FILE} - ICU prefix is wrong." 1>&2 103 echo "### $ME: Exitting." 1>&2 161 echo "### $ME: Error: --noverify must be the first argument." 1>&2 287 HERE=`echo $0 | sed -e "s/$ME//g"` 383 echo ${ME}: ERROR Unknown Option $arg 1>&2 386 echo "### $ME: Exitting." 1>&2
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
CheckObjCDealloc.cpp | 32 if (ObjCMessageExpr* ME = dyn_cast<ObjCMessageExpr>(S)) 33 if (ME->getSelector() == Dealloc) { 34 switch (ME->getReceiverKind()) { 58 if (ObjCMessageExpr* ME = dyn_cast<ObjCMessageExpr>(S)) 59 if (ME->getSelector() == Release) 60 if (ME->getInstanceReceiver()) 61 if (Expr* Receiver = ME->getInstanceReceiver()->IgnoreParenCasts()) 67 if (ObjCMessageExpr* ME = dyn_cast<ObjCMessageExpr>(S)) 68 if (ME->getInstanceReceiver()) 69 if (Expr* Receiver = ME->getInstanceReceiver()->IgnoreParenCasts() [all...] |
IteratorsChecker.cpp | 73 static RefState getInvalid( const MemberExpr *ME ) { 74 return RefState(Invalid, ME); 125 const MemberExpr *ME) const; 219 const MemRegion *MR, const MemberExpr *ME) const { 230 state = state->set<IteratorState>(I.getKey(), RefState::getInvalid(ME)); 274 if (const MemberExpr *ME = dyn_cast<MemberExpr>(CE->getCallee())) { 275 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ME->getBase()); 290 llvm::StringRef mName = ME->getMemberDecl()->getName(); 402 const MemberExpr *ME = RS->getMemberExpr(); 403 if (ME) { [all...] |
DereferenceChecker.cpp | 58 const MemberExpr *ME = cast<MemberExpr>(Ex); 60 << " field '" << ME->getMemberNameInfo() << "')"; 61 SourceLocation L = ME->getMemberLoc();
|
/frameworks/base/libs/rs/driver/ |
rsdBcc.cpp | 44 bcinfo::MetadataExtractor *ME; 93 drv->ME = new bcinfo::MetadataExtractor((const char*)drv->mScriptText, 95 if (!drv->ME->extract()) { 131 exportFuncCount = drv->ME->getExportFuncCount(); 141 exportVarCount = drv->ME->getExportVarCount(); 152 objectSlotCount = drv->ME->getObjectSlotCount(); 154 const uint32_t *objectSlotList = drv->ME->getObjectSlotList(); 160 exportForEachSignatureCount = drv->ME->getExportForEachSignatureCount(); 162 drv->mExportForEachSignatureList = drv->ME->getExportForEachSignatureList(); 165 script->mHal.info.exportedFunctionCount = drv->ME->getExportFuncCount() [all...] |
/external/qemu/memcheck/ |
memcheck_proc_management.c | 73 ME("memcheck: Unable to allocate new thread descriptor."); 103 ME("memcheck: Unable to allocate new process descriptor"); 122 ME("memcheck: Unable to get parent process pid=%u for new process pid=%u", 134 ME("memcheck: Unable to copy process' %s[pid=%u] allocation map to new process pid=%u", 144 ME("memcheck: Unable to copy process' %s[pid=%u] mmrange map to new process pid=%u", 274 ME("memcheck: Unable to allocate %u bytes for image path %s to set it for pid=%u", 364 ME("memcheck: Unable to find mapping for guest PC 0x%08X in process %s[pid=%u]", 387 ME("memcheck: Unable to allocate %u bytes for calling stack.", 410 ME("memcheck: Unable to allocate %u bytes for module path in the thread calling stack.", 481 ME("memcheck: FORK(%u, %u): Unable to look up parent process. Current tid=%u" [all...] |
memcheck_logging.h | 31 #define ME(...) \
|
memcheck_mmrange_map.c | 131 ME("memcheck: Unable to allocate new MMRangeMapEntry on insert."); 194 ME("memcheck: Unable to allocate new MMRangeMapEntry on copy."); 200 ME("memcheck: Unable to allocate new path for MMRangeMapEntry on copy."); 207 ME("memcheck: Unable to insert new range map entry on copy. Insert returned %u",
|
memcheck.c | 382 ME("memcheck: Unable to obtain process for libc_init pid=%u", pid); 414 ME("memcheck: Unable to obtain process for allocation pid=%u", 430 ME("memcheck: Unable to allocate %u bytes for the calling stack", 457 ME("memcheck: Duplicate allocation blocks:"); 468 ME("memcheck: Unable to insert an entry to the allocation map:"); 490 ME("memcheck: Unable to obtain process for pid=%u on free", 536 ME("memcheck: Unable to obtain process for pid=%u on query_%s",
|
memcheck_malloc_map.c | 170 ME("memcheck: Unable to allocate new AllocMapEntry on insert."); 233 ME("memcheck: Unable to allocate new AllocMapEntry on copy."); 256 ME("memcheck: Unable to insert new map entry on copy. Insert returned %u",
|
/external/clang/lib/Index/ |
ASTLocation.cpp | 26 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) 27 return ME->getMemberDecl();
|
/external/llvm/lib/Analysis/IPA/ |
FindUsedTypes.cpp | 70 for (Module::iterator MI = m.begin(), ME = m.end(); MI != ME; ++MI) {
|
/external/llvm/lib/Target/PowerPC/ |
PPCISelDAGToDAG.cpp | 82 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME); 88 unsigned &SH, unsigned &MB, unsigned &ME); 310 bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) { 315 ME = CountLeadingZeros_32((Val - 1) ^ Val); 321 ME = CountLeadingZeros_32(Val) - 1; 333 unsigned &MB, unsigned &ME) { 368 return isRunOfOnes(Mask, MB, ME); 415 unsigned MB, ME; 416 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) { 437 getI32Imm(ME) }; [all...] |
/external/llvm/lib/CodeGen/ |
RegisterScavenging.cpp | 272 MachineBasicBlock::iterator ME = MBB->getFirstTerminator(); 273 assert(StartMI != ME && "MI already at terminator"); 278 for (++MI; InstrLimit > 0 && MI != ME; ++MI, --InstrLimit) { 320 if (MI == ME) RestorePointMI = ME;
|
/external/llvm/lib/Target/PowerPC/InstPrinter/ |
PPCInstPrinter.cpp | 38 unsigned char ME = MI->getOperand(4).getImm(); 40 if (SH <= 31 && MB == 0 && ME == (31-SH)) { 43 if (SH <= 31 && MB == (32-SH) && ME == 31) { 67 unsigned char ME = MI->getOperand(3).getImm(); 69 if (63-SH == ME) {
|
/external/qemu/tcg/ppc/ |
tcg-target.c | 402 #define ME(e) ((e)<<1) 561 | ME (31 - CPU_TLB_ENTRY_BITS) 576 | ME (31 - TARGET_PAGE_BITS) 757 | ME (31 - CPU_TLB_ENTRY_BITS) 772 | ME (31 - TARGET_PAGE_BITS) 809 | ME (31))); 817 | ME (31))); 1154 | ME (31) 1221 | ME (31) 1396 int mb, me; local [all...] |
/frameworks/compile/slang/ |
slang_rs.cpp | 153 llvm::StringMapEntry<ReflectedDefinitionTy> *ME = 156 ME->setValue(std::make_pair(ERT, CurInputFile)); 158 if (!ReflectedDefinitions.insert(ME)) 159 delete ME;
|