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

1 2 3 4 5

  /external/python/cpython2/Lib/plat-mac/
terminalcommand.py 22 from Carbon import AE
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:
argvemulator.py 10 from Carbon import AE
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
aepack.py 2 conversion between AE types and python types
21 from Carbon import AE
42 # Some AE types are immedeately coerced into something
60 AEDescType = AE.AEDescType
69 def packkey(ae, key, value):
76 ae.AEPutParamDesc(keystr, pack(value))
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
    [all...]
aetools.py 9 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
60 def missed(ae):
62 desc = ae.AEGetAttributeDesc('miss', 'keyw')
63 except AE.Error, msg:
67 def unpackevent(ae, formodulename=""):
70 dirobj = ae.AEGetParamDesc('----', '****')
71 except AE.Error:
78 dirobj = ae.AEGetParamDesc('errn', '****'
    [all...]
MiniAEFrame.py 4 AEServer -- a mixin class offering nice AE handling.
14 from Carbon import AE
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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
terminalcommand.py 22 from Carbon import AE
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:
argvemulator.py 10 from Carbon import AE
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
aepack.py 2 conversion between AE types and python types
21 from Carbon import AE
42 # Some AE types are immedeately coerced into something
60 AEDescType = AE.AEDescType
69 def packkey(ae, key, value):
76 ae.AEPutParamDesc(keystr, pack(value))
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
    [all...]
aetools.py 9 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
60 def missed(ae):
62 desc = ae.AEGetAttributeDesc('miss', 'keyw')
63 except AE.Error, msg:
67 def unpackevent(ae, formodulename=""):
70 dirobj = ae.AEGetParamDesc('----', '****')
71 except AE.Error:
78 dirobj = ae.AEGetParamDesc('errn', '****'
    [all...]
MiniAEFrame.py 4 AEServer -- a mixin class offering nice AE handling.
14 from Carbon import AE
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)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
terminalcommand.py 22 from Carbon import AE
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:
argvemulator.py 10 from Carbon import AE
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
aepack.py 2 conversion between AE types and python types
21 from Carbon import AE
42 # Some AE types are immedeately coerced into something
60 AEDescType = AE.AEDescType
69 def packkey(ae, key, value):
76 ae.AEPutParamDesc(keystr, pack(value))
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
    [all...]
aetools.py 9 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
60 def missed(ae):
62 desc = ae.AEGetAttributeDesc('miss', 'keyw')
63 except AE.Error, msg:
67 def unpackevent(ae, formodulename=""):
70 dirobj = ae.AEGetParamDesc('----', '****')
71 except AE.Error:
78 dirobj = ae.AEGetParamDesc('errn', '****'
    [all...]
MiniAEFrame.py 4 AEServer -- a mixin class offering nice AE handling.
14 from Carbon import AE
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)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FvOnFv2Thunk/
FvOnFv2Thunk.inf 27 FILE_GUID = 5007A40E-A5E0-44f7-86AE-662F9A91DA26
  /external/llvm/lib/Transforms/Utils/
InstructionNamer.cpp 35 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end();
36 AI != AE; ++AI)
MetaRenamer.cpp 84 for (auto AI = M.alias_begin(), AE = M.alias_end(); AI != AE; ++AI) {
125 for (auto AI = F.arg_begin(), AE = F.arg_end(); AI != AE; ++AI)
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
InstructionNamer.cpp 35 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end();
36 AI != AE; ++AI)
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/
WatchdogTimer.inf 20 FILE_GUID = F099D67F-71AE-4c36-B2A3-DCEB0EB2B7D8
  /external/llvm/lib/Target/Hexagon/
HexagonBlockRanges.cpp 32 IndexType S = start(), E = end(), AS = A.start(), AE = A.end();
35 bool SbAE = (S < AE) || (S == AE && A.TiedEnd); // S-before-AE.
48 IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start();
49 if (AE <= E)
59 IndexType AS = A.start(), AE = A.end();
62 if (end() < AE || end() == IndexType::None) {
63 setEnd(AE);
66 if (end() == AE)
    [all...]
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
RegionCode.java 26 static final String AE = "AE";
  /external/llvm/lib/Support/
TargetParser.cpp 340 for (const auto AE : ARCHExtNames) {
341 if (ArchExtKind == AE.ID)
342 return AE.getName();
350 for (const auto AE : ARCHExtNames) {
351 if (AE.NegFeature && ArchExtBase == AE.getName())
352 return AE.NegFeature;
355 for (const auto AE : ARCHExtNames) {
356 if (AE.Feature && ArchExt == AE.getName()
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
TargetParser.cpp 347 for (const auto AE : ARCHExtNames) {
348 if (ArchExtKind == AE.ID)
349 return AE.getName();
357 for (const auto AE : ARCHExtNames) {
358 if (AE.NegFeature && ArchExtBase == AE.getName())
359 return StringRef(AE.NegFeature);
362 for (const auto AE : ARCHExtNames) {
363 if (AE.Feature && ArchExt == AE.getName()
    [all...]
  /external/llvm/test/MC/PowerPC/
ppc64-fixup-explicit.s 19 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16 target 0x0
27 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_DS target 0x0
35 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_HA target 0x0
43 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_LO target 0x0
51 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_HI target 0x0
59 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_LO target 0x0
67 # CHECK-BE-REL: 0x{{[0-9A-F]*[26AE]}} R_PPC64_GOT16_LO_DS target 0x0

Completed in 447 milliseconds

1 2 3 4 5