Searched defs:AE (Results 1 - 25 of 25) sorted by relevance

/external/python/cpython2/Lib/plat-mac/
H A Dterminalcommand.py22 from Carbon import AE namespace
33 termAddress = AE.AECreateDesc(typeApplicationBundleID, "com.apple.Terminal")
34 theEvent = AE.AECreateAppleEvent(kAECoreSuite, kAEDoScript, termAddress,
36 commandDesc = AE.AECreateDesc(typeChar, command)
41 except AE.Error, why:
H A Dargvemulator.py10 from Carbon import AE namespace
27 AE.AEInstallEventHandler(kCoreEventClass, kAEOpenApplication, self.__runapp)
28 AE.AEInstallEventHandler(kCoreEventClass, kAEOpenDocuments, self.__openfiles)
31 AE.AERemoveEventHandler(kCoreEventClass, kAEOpenApplication)
32 AE.AERemoveEventHandler(kCoreEventClass, kAEOpenDocuments)
57 AE.AEProcessAppleEvent(event)
58 except AE.Error, err:
60 print 'AE error: ', err
H A DMiniAEFrame.py4 AEServer -- a mixin class offering nice AE handling.
14 from Carbon import AE namespace
74 AE.AEProcessAppleEvent(event)
75 except AE.Error, err:
76 print 'AE error: ', err
127 AE.AEInstallEventHandler(classe, type, self.callback_wrapper)
132 AE.AERemoveEventHandler(classe, type)
146 raise 'Cannot happen: AE callback without handler', (_class, _type)
H A Daepack.py2 conversion between AE types and python types
21 from Carbon import AE namespace
42 # Some AE types are immedeately coerced into something
60 AEDescType = AE.AEDescType
79 """Pack a python object into an AE descriptor"""
83 return AE.AECreateDesc(forcetype, x)
88 return AE.AECreateDesc('null', '')
93 return AE.AECreateDesc('fss ', x.data)
95 return AE.AECreateDesc('fsrf', x.data)
97 return AE
[all...]
H A Daetools.py9 Plus... Lots of classes and routines that help representing AE objects,
14 and pack(x) will create an AE object reference equivalent to AppleScript's
28 from Carbon import AE namespace
63 except AE.Error, msg:
71 except AE.Error:
79 except AE.Error:
92 except (AE.Error, MacOS.Error), msg:
147 """An AE connection to an application"""
178 self.target = AE.AECreateDesc(AppleEvents.typeApplSignature, signature)
195 except AE
[all...]
H A DEasyDialogs.py33 from Carbon import AE namespace
56 AE.AEInteractWithUser(50000000)
584 import Carbon.AE namespace
593 not isinstance(args['defaultLocation'], Carbon.AE.AEDesc):
596 args['defaultLocation'] = Carbon.AE.AECreateDesc(
601 args['defaultLocation'] = Carbon.AE.AECreateDesc(
/external/llvm/lib/Analysis/
H A DObjCARCInstKind.cpp88 Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end(); local
91 if (AI == AE)
99 if (AI == AE)
139 if (AI == AE)
H A DLint.cpp233 CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end(); local
234 for (; AI != AE; ++AI) {
247 for (CallSite::arg_iterator BI = CS.arg_begin(); BI != AE; ++BI)
267 for (CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
268 AI != AE; ++AI) {
H A DLoopAccessAnalysis.cpp1379 EquivalenceClasses<MemAccessInfo>::member_iterator AE = local
1383 while (AI != AE) {
1386 while (OI != AE) {
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDereferenceChecker.cpp134 const ArraySubscriptExpr *AE = cast<ArraySubscriptExpr>(S); local
135 AddDerefSource(os, Ranges, AE->getBase()->IgnoreParenCasts(),
142 const OMPArraySectionExpr *AE = cast<OMPArraySectionExpr>(S); local
143 AddDerefSource(os, Ranges, AE->getBase()->IgnoreParenCasts(),
H A DRetainCountChecker.cpp410 if (const ArgEffect *AE = Args.lookup(idx))
411 return *AE;
852 ArgEffects AE = ScratchArgs; local
854 return AE;
2023 for (CallExpr::const_arg_iterator AI=CE->arg_begin(), AE=CE->arg_end();
2024 AI!=AE; ++AI, ++i) {
2747 ArgEffect AE = IncRef;
2754 AE = IncRef;
2757 AE = DecRefBridgedTransferred;
2770 state = updateSymbol(state, Sym, *T, AE, hasEr
[all...]
/external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
H A DRegionCode.java26 static final String AE = "AE"; field in class:RegionCode
/external/llvm/lib/Target/Hexagon/
H A DHexagonBlockRanges.cpp32 IndexType S = start(), E = end(), AS = A.start(), AE = A.end(); local
35 bool SbAE = (S < AE) || (S == AE && A.TiedEnd); // S-before-AE.
48 IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start(); local
49 if (AE <= E)
59 IndexType AS = A.start(), AE = A.end(); local
62 if (end() < AE || end() == IndexType::None) {
63 setEnd(AE);
66 if (end() == AE)
116 IndexType AS = A.start(), AE = A.end(); local
[all...]
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DLint.cpp220 CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end(); local
221 for (; AI != AE; ++AI) {
233 for (CallSite::arg_iterator BI = CS.arg_begin(); BI != AE; ++BI)
254 for (CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
255 AI != AE; ++AI) {
/external/clang/lib/AST/
H A DItaniumMangle.cpp3624 const ArraySubscriptExpr *AE = cast<ArraySubscriptExpr>(E); local
3629 mangleExpression(AE->getLHS());
3630 mangleExpression(AE->getRHS());
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp2079 void ExprEngine::VisitAtomicExpr(const AtomicExpr *AE, ExplodedNode *Pred, argument
2082 getCheckerManager().runCheckersForPreStmt(AfterPreSet, Pred, AE, *this);
2096 for (unsigned SI = 0, Count = AE->getNumSubExprs(); SI != Count; SI++) {
2097 const Expr *SubExpr = AE->getSubExprs()[SI];
2102 State = State->invalidateRegions(ValuesToInvalidate, AE,
2109 State = State->BindExpr(AE, LCtx, ResultVal);
2110 Bldr.generateNode(AE, *I, State, nullptr,
2114 getCheckerManager().runCheckersForPostStmt(Dst, AfterInvalidateSet, AE, *this);
H A DBugReporter.cpp1280 CallExpr::const_arg_iterator AI = CE->arg_begin(), AE = CE->arg_end(); local
1281 for (; AI != AE && PI != PE; ++AI, ++PI) {
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
H A DCBackend.cpp2985 CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end(); local
2993 for (; AI != AE; ++AI, ++ArgNo) {
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp1496 ArgEffect AE = AEArgs[i]; local
1497 if (AE == DecRef && !pd->hasAttr<CFConsumedAttr>() &&
1503 else if (AE == DecRefMsg && !pd->hasAttr<NSConsumedAttr>() &&
1548 ArgEffect AE = AEArgs[i]; local
1549 if (AE == DecRef /*CFConsumed annotated*/ || AE == IncRef) {
1550 if (AE == DecRef && !pd->hasAttr<CFConsumedAttr>())
1552 else if (AE == IncRef)
1622 ArgEffect AE = AEArgs[i]; local
1623 if (AE
1678 ArgEffect AE = AEArgs[i]; local
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DObjCARC.cpp204 Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end(); local
207 if (AI == AE)
214 if (AI == AE)
248 if (AI == AE)
306 AE = F->arg_end(); AI != AE; ++AI)
2733 AE = RetainsToMove.Calls.end(); AI != AE; ++AI) {
2740 AE = ReleasesToMove.Calls.end(); AI != AE;
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp2604 AtomicExpr *AE = new (Context) AtomicExpr(TheCall->getCallee()->getLocStart(), local
2610 Context.AtomicUsesUnsupportedLibcall(AE))
2611 Diag(AE->getLocStart(), diag::err_atomic_load_store_uses_lib) <<
2614 return AE;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp14631 SDValue AE = DAG.getNode(ISD::FMUL, DL, VT, Arg, Est, Flags); local
14632 AddToWorklist(AE.getNode());
14634 SDValue AEE = DAG.getNode(ISD::FMUL, DL, VT, AE, Est, Flags);
14649 LHS = DAG.getNode(ISD::FMUL, DL, VT, AE, MinusHalf, Flags);
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 2174 milliseconds