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

1 2 3 4 5

  /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 113 static int dumpInfo(bcinfo::MetadataExtractor *ME) {
114 if (!ME) {
124 fprintf(info, "exportVarCount: %u\n", ME->getExportVarCount());
125 const char **varNameList = ME->getExportVarNameList();
126 for (size_t i = 0; i < ME->getExportVarCount(); i++) {
130 fprintf(info, "exportFuncCount: %u\n", ME->getExportFuncCount());
131 const char **funcNameList = ME->getExportFuncNameList();
132 for (size_t i = 0; i < ME->getExportFuncCount(); i++) {
137 ME->getExportForEachSignatureCount());
138 const char **nameList = ME->getExportForEachNameList()
    [all...]
  /external/chromium_org/remoting/tools/mac/
chromoting-set-channel.sh 9 ME="$(basename "$0")"
10 readonly ME
16 echo "Usage: ${ME} <channel>" >&2
  /external/clang/include/clang/Analysis/DomainSpecific/
ObjCNoReturn.h 42 bool isImplicitNoReturn(const ObjCMessageExpr *ME);
  /external/chromium_org/chrome/installer/mac/
make_signers.sh 27 ME="$(basename "${0}")"
28 readonly ME
31 echo "usage: ${ME} packaging_dir mac_product_name version" >& 2
sign_app.sh.in 24 ME="$(basename "${0}")"
25 readonly ME
28 echo "usage: ${ME} app_path codesign_keychain codesign_id" >& 2
sign_versioned_dir.sh.in 23 ME="$(basename "${0}")"
24 readonly ME
27 echo "usage: ${ME} app_path codesign_keychain codesign_id" >& 2
dirpatcher.sh 88 ME="$(basename "${0}")"
89 readonly ME
105 echo "${ME}: ${error}" >& 2
309 echo "usage: ${ME} old_dir patch_dir new_dir" >& 2
  /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 SourceRange ExprRange = ME->getSourceRange();
TransAutoreleasePool.cpp 353 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E);
354 if (!ME) return false;
355 if (ME->getMethodFamily() == OMF_new &&
356 ME->getReceiverKind() == ObjCMessageExpr::Class &&
357 isNSAutoreleasePool(ME->getReceiverInterface()))
359 if (ME->getReceiverKind() == ObjCMessageExpr::Instance &&
360 ME->getMethodFamily() == OMF_init) {
361 Expr *rec = getEssential(ME->getInstanceReceiver());
376 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S);
377 if (!ME) return false
    [all...]
TransZeroOutPropsInDealloc.cpp 43 bool VisitObjCMessageExpr(ObjCMessageExpr *ME) {
47 if (ME->getReceiverKind() != ObjCMessageExpr::Instance)
49 Expr *receiver = ME->getInstanceReceiver();
62 if (PropDecl->getSetterName() == ME->getSelector()) {
72 Expr *RHS = ME->getArg(0);
76 if (RHSIsNull && isRemovable(ME))
77 TA.removeStmt(ME);
  /external/ipsec-tools/src/libipsec/
policy_parse.h 54 ME = 270,
73 #define ME 270
  /external/clang/lib/Analysis/
ObjCNoReturn.cpp 49 bool ObjCNoReturn::isImplicitNoReturn(const ObjCMessageExpr *ME) {
50 Selector S = ME->getSelector();
52 if (ME->isInstanceMessage()) {
57 if (const ObjCInterfaceDecl *ID = ME->getReceiverInterface()) {
  /external/chromium_org/third_party/icu/source/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/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"`
388 echo ${ME}: ERROR Unknown Option $arg 1>&2
391 echo "### $ME: Exitting." 1>&2
icu-config 365 ME=`basename "$0"`
419 echo "usage: ${ME} " `allflags | cut -c-25 | sed -e 's%.*%[ & ]%'`
425 echo "${ME}: icu-config: ICU configuration helper script"
446 echo "### $ME: Can't find ${ICUUC_FILE} - ICU prefix is wrong." 1>&2
450 echo "### $ME: Exitting." 1>&2
508 echo "### $ME: Error: --noverify must be the first argument." 1>&2
634 HERE=`echo $0 | sed -e "s/$ME//g"`
735 echo ${ME}: ERROR Unknown Option $arg 1>&2
738 echo "### $ME: Exitting." 1>&2
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 33 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S))
34 if (ME->getSelector() == Dealloc) {
35 switch (ME->getReceiverKind()) {
59 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S))
60 if (ME->getSelector() == Release)
61 if (ME->getInstanceReceiver())
62 if (Expr *Receiver = ME->getInstanceReceiver()->IgnoreParenCasts())
68 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S))
69 if (ME->getInstanceReceiver())
70 if (Expr *Receiver = ME->getInstanceReceiver()->IgnoreParenCasts()
    [all...]
  /external/bison/build-aux/
do-release-commit-and-tag 27 ME=$(basename "$0")
28 warn() { printf '%s: %s\n' "$ME" "$*" >&2; }
34 Usage: $ME [OPTION...] VERSION RELEASE_TYPE
57 $ME 8.1 beta
68 $ME $VERSION
111 || die "Usage: $ME [OPTION...] VERSION TYPE"
gnu-web-doc-update 27 ME=$(basename "$0")
28 warn() { printf '%s: %s\n' "$ME" "$*" >&2; }
34 Usage: $ME
54 $ME $VERSION
  /external/chromium_org/remoting/host/installer/mac/
do_signing.sh 19 ME="$(basename "${0}")"
20 readonly ME
62 DMG_TEMP_DIR="$(mktemp -d -t "${ME}"-dmg)"
65 DMG_EMPTY_DIR="$(mktemp -d -t "${ME}"-empty)"
184 echo "Usage: ${ME} output_dir input_dir [keychain codesign_id"\
  /external/llvm/lib/Target/Hexagon/
HexagonMCInstLower.cpp 30 const MCExpr *ME;
32 ME = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None, MC);
35 ME = MCBinaryExpr::CreateAdd(ME, MCConstantExpr::Create(MO.getOffset(), MC),
38 return (MCOperand::CreateExpr(ME));
  /external/llvm/lib/CodeGen/
ErlangGC.cpp 65 for (MachineBasicBlock::iterator MI = BBI->begin(), ME = BBI->end();
66 MI != ME; ++MI)
  /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(...) \
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 135 void ExprEngine::VisitObjCMessage(const ObjCMessageExpr *ME,
140 CEMgr.getObjCMethodCall(ME, Pred->getState(), Pred->getLocationContext());
180 if (ObjCNoRet.isImplicitNoReturn(ME)) {
183 Bldr.generateSink(ME, Pred, State);
189 Pred = Bldr.generateNode(ME, Pred, notNilState);
196 if (ObjCNoRet.isImplicitNoReturn(ME)) {
199 Bldr.generateSink(ME, Pred, Pred->getState());

Completed in 286 milliseconds

1 2 3 4 5