HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 76 - 100 of 428) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppShareInfo.java 37 * send/receive to a destination address.
70 int direction, String destination, int visibility, int confirm, int status,
78 mDestination = destination;
  /external/oprofile/libutil++/
file_manip.cpp 33 bool copy_file(string const & source, string const & destination)
51 int fd = open(destination.c_str(), O_RDWR|O_CREAT, mode);
59 retval = chown(destination.c_str(), buf.st_uid, buf.st_gid);
63 ofstream out(destination.c_str(), ios::trunc);
72 if (utime(destination.c_str(), &utim))
file_manip.h 22 * @param destination filename to copy into
27 bool copy_file(std::string const & source, std::string const & destination);
  /external/webkit/Source/WebCore/webaudio/
AudioNode.cpp 111 bool AudioNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex)
119 if (destination && inputIndex >= destination->numberOfInputs())
123 if (!destination) {
129 AudioNodeInput* input = destination->input(inputIndex);
BiquadProcessor.h 55 virtual void process(AudioBus* source, AudioBus* destination, size_t framesToProcess);
OfflineAudioDestinationNode.cpp 137 float* destination = m_renderTarget->getChannelData(channelIndex)->data(); local
138 memcpy(destination + n, source, sizeof(float) * framesAvailableToCopy);
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
VideoSinkGStreamer.cpp 192 guint8 *destination = GST_BUFFER_DATA(newBuffer); local
198 destination[0] = (source[0] * alpha + 128) / 255;
199 destination[1] = (source[1] * alpha + 128) / 255;
200 destination[2] = (source[2] * alpha + 128) / 255;
201 destination[3] = alpha;
204 destination[0] = alpha;
205 destination[1] = (source[1] * alpha + 128) / 255;
206 destination[2] = (source[2] * alpha + 128) / 255;
207 destination[3] = (source[3] * alpha + 128) / 255;
210 destination += 4
    [all...]
  /external/protobuf/src/google/protobuf/
extension_set_unittest.cc 190 unittest::TestAllTypes destination; local
198 EXPECT_TRUE(destination.ParseFromString(data));
199 TestUtil::ExpectAllFieldsSet(destination);
211 unittest::TestAllTypes destination; local
222 EXPECT_TRUE(destination.ParseFromString(data));
223 TestUtil::ExpectAllFieldsSet(destination);
234 unittest::TestPackedTypes destination; local
242 EXPECT_TRUE(destination.ParseFromString(data));
243 TestUtil::ExpectPackedFieldsSet(destination);
255 unittest::TestPackedTypes destination; local
273 unittest::TestAllExtensions destination; local
285 unittest::TestPackedExtensions destination; local
    [all...]
  /external/chromium/chrome/browser/history/
top_sites_cache.cc 95 size_t destination) {
99 // Map all the redirected URLs to the destination.
104 entry.first = &(top_sites_[destination]);
106 canonical_urls_[entry] = destination;
  /external/webkit/Source/WebCore/platform/graphics/filters/
FilterEffect.h 62 void copyUnmultipliedImage(ByteArray* destination, const IntRect&);
63 void copyPremultipliedImage(ByteArray* destination, const IntRect&);
137 inline void copyImageBytes(ByteArray* source, ByteArray* destination, const IntRect&);
  /external/webkit/Tools/Scripts/
update-webkit-dependency 117 my $destination = "$webkitLibrariesDir/$relativeName";
120 mkdir $destination;
124 system "cp", $_, $destination;
update-webkit-support-libs 82 my $destination = "$webkitLibrariesDir/$relativeName";
85 mkdir $destination;
89 system "cp", $_, $destination;
  /external/webkit/Source/WebCore/platform/cf/
BinaryPropertyList.cpp 426 static inline void storeLength(UInt8* destination, size_t length)
429 destination[0] = length >> 56;
430 destination[1] = length >> 48;
431 destination[2] = length >> 40;
432 destination[3] = length >> 32;
434 destination[0] = 0;
435 destination[1] = 0;
436 destination[2] = 0;
437 destination[3] = 0;
439 destination[4] = length >> 24
    [all...]
  /external/chromium/chrome/browser/
spellchecker_linux.cc 64 BrowserMessageFilter* destination) {}
spellchecker_platform_engine.h 88 // The result is returned to an IPC message to |destination| thus it should
94 BrowserMessageFilter* destination);
spellchecker_win.cc 64 BrowserMessageFilter* destination) {}
  /external/dbus/bus/
selinux.h 63 const char *destination,
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerX86.h 181 static void repatchCall(CodeLocationCall call, CodeLocationLabel destination)
183 X86Assembler::relinkCall(call.dataLocation(), destination.executableAddress());
186 static void repatchCall(CodeLocationCall call, FunctionPtr destination)
188 X86Assembler::relinkCall(call.dataLocation(), destination.executableAddress());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
FileStoreAdapter.java 66 public void copy(IFileStore destination, int options, IProgressMonitor monitor)
68 mStore.copy(destination, options, monitor);
128 public void move(IFileStore destination, int options, IProgressMonitor monitor)
130 mStore.move(destination, options, monitor);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
SimpleFile.java 46 public String destination; field in class:SimpleFile.FileOp
68 else if (fileArg.getName().equals("destination")) //$NON-NLS-1$
69 op.destination = fileArg.getSimpleValue();
71 if (op.source == null || op.destination == null)
91 IFile destFile = project.getFile(new Path(op.destination));
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
IFileOp.java 67 * @param dest the destination file to write.
77 * @param destination the destination file to write
81 public abstract boolean isSameFile(File source, File destination)
  /external/webkit/Source/WebCore/platform/audio/
AudioResampler.cpp 103 // Now that we have the source data, resample each channel into the destination bus.
106 float* destination = destinationBus->channel(i)->data(); local
107 m_kernels[i]->process(destination, framesToProcess);
AudioResamplerKernel.cpp 76 void AudioResamplerKernel::process(float* destination, size_t framesToProcess)
110 *destination++ = static_cast<float>(sample);
  /external/webkit/Source/WebCore/platform/image-encoders/
PNGImageEncoder.cpp 62 char* destination = state->m_dump->data() + oldSize; local
63 memcpy(destination, data, size);
  /frameworks/ex/chips/src/com/android/ex/chips/
SingleRecipientArrayAdapter.java 60 TextView destination = (TextView) view.findViewById(android.R.id.text1); local
61 destination.setText(Rfc822Tokenizer.tokenize(entry.getDestination())[0].getAddress());

Completed in 2698 milliseconds

1 2 34 5 6 7 8 91011>>