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

1 2 3 4

  /external/clang/lib/ARCMigrate/
TransUnusedInitDelegate.cpp 49 bool VisitObjCMessageExpr(ObjCMessageExpr *ME) {
50 if (ME->isDelegateInitCall() &&
51 isRemovable(ME) &&
53 ME->getExprLoc())) {
56 ME->getExprLoc());
57 Pass.TA.insert(ME->getExprLoc(), "self = ");
TransZeroOutPropsInDealloc.cpp 38 bool VisitObjCMessageExpr(ObjCMessageExpr *ME) {
42 if (ME->getReceiverKind() != ObjCMessageExpr::Instance)
44 Expr *receiver = ME->getInstanceReceiver();
57 if (PropDecl->getSetterName() == ME->getSelector()) {
67 Expr *RHS = ME->getArg(0);
71 if (RHSIsNull && isRemovable(ME))
72 TA.removeStmt(ME);
TransAutoreleasePool.cpp 356 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E);
357 if (!ME) return false;
358 if (ME->getMethodFamily() == OMF_new &&
359 ME->getReceiverKind() == ObjCMessageExpr::Class &&
360 isNSAutoreleasePool(ME->getReceiverInterface()))
362 if (ME->getReceiverKind() == ObjCMessageExpr::Instance &&
363 ME->getMethodFamily() == OMF_init) {
364 Expr *rec = getEssential(ME->getInstanceReceiver());
379 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S);
380 if (!ME) return false
    [all...]
Transforms.cpp 142 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E);
143 if (!ME)
145 switch (ME->getMethodFamily()) {
150 switch (ME->getReceiverKind()) {
154 return hasSideEffects(ME->getInstanceReceiver(), Ctx);
TransRetainReleaseDealloc.cpp 159 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E))
160 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);
132 const MemberExpr *ME) const;
231 const MemRegion *MR, const MemberExpr *ME) const {
242 state = state->set<IteratorState>(I.getKey(), RefState::getInvalid(ME));
286 if (const MemberExpr *ME = dyn_cast<MemberExpr>(CE->getCallee())) {
287 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ME->getBase());
302 StringRef mName = ME->getMemberDecl()->getName();
414 const MemberExpr *ME = RS->getMemberExpr();
415 if (ME) {
    [all...]
DereferenceChecker.cpp 59 const MemberExpr *ME = cast<MemberExpr>(Ex);
61 << " field '" << ME->getMemberNameInfo() << "')";
62 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 273 MachineBasicBlock::iterator ME = MBB->getFirstTerminator();
274 assert(StartMI != ME && "MI already at terminator");
279 for (++MI; InstrLimit > 0 && MI != ME; ++MI, --InstrLimit) {
321 if (MI == ME) RestorePointMI = ME;
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 40 unsigned char ME = MI->getOperand(4).getImm();
42 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
45 if (SH <= 31 && MB == (32-SH) && ME == 31) {
72 unsigned char ME = MI->getOperand(3).getImm();
74 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;

Completed in 1332 milliseconds

1 2 3 4