HomeSort by relevance Sort by last modified time
    Searched defs:destination (Results 1 - 25 of 1217) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/walt/ios/WALT/
MIDIClient.h 48 /** A MIDI client that can read data from a MIDI source and write data to a MIDI destination. */
53 /** The destination attached by -connectToDestination:error:. */
54 @property (readonly, nonatomic) MIDIDestination *destination; variable
68 /** Attaches an output destination to the client. */
69 - (BOOL)connectToDestination:(MIDIDestination *)destination error:(NSError **)error;
71 /** Sends a MIDI packet of data to the client's output destination. */
  /packages/apps/Gallery2/jni/filters/
redeye.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
24 unsigned char * rgb = (unsigned char * )destination;
negative.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
26 char * dst = destination;
exposure.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
23 unsigned char * rgb = (unsigned char * )destination;
  /external/parameter-framework/upstream/utility/
BinaryCopy.hpp 45 * The source and the destination must have the same storage size (e.g. copying
49 * @tparam Destination the destination type (even if it is a reference, this
52 * @returns the source, reinterpreted as the destination type
54 template <class Destination, class Source>
55 typename std::remove_reference<Destination>::type binaryCopy(const Source source)
57 static_assert(sizeof(Source) == sizeof(Destination),
58 "Source and Destination must have the same size");
60 using Destination_ = decltype(binaryCopy<Destination>(source));
65 Destination_ destination; member in union:utility::__anon30942
    [all...]
  /external/python/cpython2/Mac/Modules/ibcarbon/
IBCarbonscan.py 26 def destination(self, type, name, arglist): member in class:IBCarbon_Scanner
  /external/parameter-framework/upstream/test/test-subsystem/
TESTSubsystemString.cpp 59 auto destination = MAKE_ARRAY_ITERATOR(static_cast<char *>(pvValue), size); local
60 auto last = std::copy(begin(strValue), end(strValue), destination);
TESTSubsystemBinary.cpp 58 auto destination = MAKE_ARRAY_ITERATOR(reinterpret_cast<uint8_t *>(&uiValue), sizeof(uiValue)); local
60 std::copy_n(first, size, destination);
78 auto destination = MAKE_ARRAY_ITERATOR(static_cast<uint8_t *>(pvValue), size); local
79 std::copy_n(first, size, destination);
  /external/python/cpython2/Mac/Modules/ae/
aescan.py 29 def destination(self, type, name, arglist): member in class:AppleEventsScanner
  /external/python/cpython2/Mac/Modules/carbonevt/
CarbonEvtscan.py 37 def destination(self, type, name, arglist): member in class:CarbonEvents_Scanner
  /external/python/cpython2/Mac/Modules/ctl/
ctlscan.py 24 def destination(self, type, name, arglist): member in class:MyScanner
  /external/python/cpython2/Mac/Modules/drag/
dragscan.py 35 def destination(self, type, name, arglist): member in class:MyScanner
  /external/python/cpython2/Mac/Modules/menu/
menuscan.py 23 def destination(self, type, name, arglist): member in class:MyScanner
  /external/python/cpython2/Mac/Modules/qd/
qdscan.py 50 def destination(self, type, name, arglist): member in class:MyScanner
  /external/python/cpython2/Mac/Modules/qdoffs/
qdoffsscan.py 23 def destination(self, type, name, arglist): member in class:MyScanner
  /external/python/cpython2/Mac/Modules/res/
resscan.py 28 def destination(self, type, name, arglist): member in class:ResourcesScanner
  /external/python/cpython2/Mac/Modules/snd/
sndscan.py 26 def destination(self, type, name, arglist): member in class:SoundScanner
  /external/python/cpython2/Mac/Modules/win/
winscan.py 23 def destination(self, type, name, arglist): member in class:MyScanner
  /external/webrtc/webrtc/base/
socketaddresspair.h 18 // Records a pair (source,destination) of socket addresses. The two addresses
27 const SocketAddress& destination() const { return dest_; } function in class:rtc::SocketAddressPair
  /packages/services/Telephony/testapps/EmbmsTestDownloadApp/src/com/android/phone/testapps/embmsdownload/
DownloadCompletionReceiver.java 51 Path destination = FileSystems.getDefault() local
54 if (!Files.isDirectory(destination.getParent())) {
55 Files.createDirectory(destination.getParent());
57 return destination;
59 Path destination = FileSystems.getDefault() local
62 if (!Files.isDirectory(destination.getParent())) {
63 Files.createDirectory(destination.getParent());
65 return destination;
  /frameworks/support/navigation/common/src/test/java/androidx/navigation/
NavDestinationTest.java 45 NavDestination destination = new NavDestination(mock(Navigator.class)); local
46 destination.setId(DESTINATION_ID);
50 destination.setParent(parent);
51 int[] deepLinkIds = destination.buildDeepLinkIds();
59 NavDestination destination = new NavDestination(mock(Navigator.class)); local
60 destination.putAction(ACTION_ID, DESTINATION_ID);
62 assertThat(destination.getAction(ACTION_ID), not(nullValue()));
63 assertThat(destination.getAction(ACTION_ID).getDestinationId(), is(DESTINATION_ID));
68 NavDestination destination = new NavDestination(mock(Navigator.class)); local
69 destination.putAction(INVALID_ACTION_ID, DESTINATION_ID)
74 NavDestination destination = new NavDestination(mock(Navigator.class)); local
83 NavDestination destination = new NavDestination(mock(Navigator.class)); local
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsLongDescription.java 17 @Parameter(names = { "-d", "--destination" }, description = "The destination to go to")
18 public String destination; field in class:ArgsLongDescription
  /external/python/cpython2/Mac/Modules/ah/
ahscan.py 27 def destination(self, type, name, arglist): member in class:MyScanner
  /external/python/cpython2/Mac/Modules/app/
appscan.py 27 def destination(self, type, name, arglist): member in class:MyScanner
  /external/python/cpython2/Mac/Modules/cm/
cmscan.py 26 def destination(self, type, name, arglist): member in class:MyScanner

Completed in 773 milliseconds

1 2 3 4 5 6 7 8 91011>>