/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
OfflineAudioDestinationNode.cpp | 132 float* destination = m_renderTarget->getChannelData(channelIndex)->data(); local 133 memcpy(destination + n, source, sizeof(float) * framesAvailableToCopy);
|
AudioNode.cpp | 172 void AudioNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& exceptionState) 177 if (!destination) { 180 "invalid destination node."); 192 if (destination && inputIndex >= destination->numberOfInputs()) { 195 "input index (" + String::number(inputIndex) + ") exceeds number of inputs (" + String::number(destination->numberOfInputs()) + ")."); 199 if (context() != destination->context()) { 202 "cannot connect to a destination belonging to a different audio context."); 206 AudioNodeInput* input = destination->input(inputIndex);
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
AudioResampler.cpp | 102 // Now that we have the source data, resample each channel into the destination bus. 105 float* destination = destinationBus->channel(i)->mutableData(); local 106 m_kernels[i]->process(destination, framesToProcess);
|
AudioResamplerKernel.cpp | 76 void AudioResamplerKernel::process(float* destination, size_t framesToProcess) 110 *destination++ = static_cast<float>(sample);
|
ReverbConvolver.cpp | 161 float* destination = destinationChannel->mutableData(); local 162 bool isDataSafe = source && destination; 175 m_accumulationBuffer.readAndClear(destination, framesToProcess);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
ProcessingService.java | 108 Rect bounds, Rect destination, 118 request.setDestination(destination); 143 public static Intent getSaveIntent(Context context, ImagePreset preset, File destination, 153 if (destination != null) { 154 processIntent.putExtra(ProcessingService.DESTINATION_FILE, destination.toString()); 198 String destination = intent.getStringExtra(DESTINATION_FILE); local 209 if (destination != null) { 210 destinationFile = new File(destination);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_install.py | 37 destination = os.path.join(builddir, "installation") 48 cmd.home = destination 51 self.assertEqual(cmd.install_base, destination) 52 self.assertEqual(cmd.install_platbase, destination) 59 libdir = os.path.join(destination, "lib", "python") 64 os.path.join(destination, "include", "python", "foopkg")) 65 check_path(cmd.install_scripts, os.path.join(destination, "bin")) 66 check_path(cmd.install_data, destination)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_install.py | 37 destination = os.path.join(builddir, "installation") 48 cmd.home = destination 51 self.assertEqual(cmd.install_base, destination) 52 self.assertEqual(cmd.install_platbase, destination) 59 libdir = os.path.join(destination, "lib", "python") 64 os.path.join(destination, "include", "python", "foopkg")) 65 check_path(cmd.install_scripts, os.path.join(destination, "bin")) 66 check_path(cmd.install_data, destination)
|
/external/chromium_org/chrome/installer/mini_installer/ |
decompress.cc | 118 // we take a shortcut and provide a pointer to the wide destination file 121 const wchar_t* destination = reinterpret_cast<const wchar_t*>(pfdin->pv); local 125 result = reinterpret_cast<INT_PTR>(::CreateFileW(destination, 143 ::SetFileAttributes(destination, pfdin->attribs); 223 bool Expand(const wchar_t* source, const wchar_t* destination) { 241 scoped_ptr<char> dest_utf8(WideToUtf8(destination, -1)); 252 &Notify, NULL, const_cast<wchar_t*>(destination))) {
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
filesystem.py | 70 def copyfile(self, source, destination): 71 shutil.copyfile(source, destination) 177 def move(self, source, destination): 178 shutil.move(source, destination) 263 def copytree(self, source, destination): 264 shutil.copytree(source, destination)
|
filesystem_mock.py | 107 def copyfile(self, source, destination): 112 if self.isdir(destination): 113 raise IOError(errno.EISDIR, destination, os.strerror(errno.EISDIR)) 114 if not self.exists(self.dirname(destination)): 115 raise IOError(errno.ENOENT, destination, os.strerror(errno.ENOENT)) 117 self.files[destination] = self.files[source] 118 self.written_files[destination] = self.files[source] 270 def move(self, source, destination): 273 self.files[destination] = self.files[source] 274 self.written_files[destination] = self.files[destination [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/34/1/.cp/ant_tasks/ |
pde-ant.jar | |
/external/smack/src/org/jivesoftware/smack/util/ |
Base64.java | 353 * and writes the resulting four Base64 bytes to <var>destination</var>.
354 * The source and destination arrays can be manipulated
360 * the <var>destination</var> array.
369 * @param destination the array to hold the conversion
371 * @return the <var>destination</var> array
376 byte[] destination, int destOffset, int options )
398 destination[ destOffset ] = ALPHABET[ (inBuff >>> 18) ];
399 destination[ destOffset + 1 ] = ALPHABET[ (inBuff >>> 12) & 0x3f ];
400 destination[ destOffset + 2 ] = ALPHABET[ (inBuff >>> 6) & 0x3f ];
401 destination[ destOffset + 3 ] = ALPHABET[ (inBuff ) & 0x3f ]; [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
Action.java | 161 private void drawCenteredImage(Bitmap source, Bitmap destination, boolean scale) { 162 int minSide = Math.min(destination.getWidth(), destination.getHeight()); 166 float dx = (destination.getWidth() - source.getWidth() * scaleFactor) / 2.0f; 167 float dy = (destination.getHeight() - source.getHeight() * scaleFactor) / 2.0f; 174 Canvas canvas = new Canvas(destination);
|
/external/chromium/net/http/ |
http_proxy_client_socket_pool.cc | 57 const HostResolver::RequestInfo& HttpProxySocketParams::destination() const { function in class:net::HttpProxySocketParams 59 return ssl_params_->transport_params()->destination(); 61 return transport_params_->destination(); 191 params_->transport_params()->destination().priority(), 213 HostPortProxyPair pair(params_->destination().host_port_pair(), 225 params_->ssl_params()->transport_params()->destination().priority(), 276 const HostResolver::RequestInfo& tcp_destination = params_->destination(); 319 HostPortProxyPair pair(params_->destination().host_port_pair(), 342 params_->destination().priority(), 365 params_->destination().host_port_pair() [all...] |
/external/chromium_org/tools/telemetry/third_party/davclient/ |
davclient.py | 143 def copy(self, source, destination, body=None, depth='infinity', overwrite=True, headers=None): 147 headers = {'Destination':destination} 149 headers['Destination'] = self._url.geturl() + destination 157 def copy_collection(self, source, destination, depth='infinity', overwrite=True, headers=None): 166 self.copy(source, destination, body=unicode(body, 'utf-8'), depth=depth, overwrite=overwrite, headers=headers) 169 def move(self, source, destination, body=None, depth='infinity', overwrite=True, headers=None): 173 headers = {'Destination':destination} [all...] |
/external/protobuf/src/google/protobuf/ |
repeated_field_unittest.cc | 215 RepeatedField<int> source, destination; local 220 destination.Add(1); 221 destination.Add(2); 222 destination.Add(3); 224 destination.MergeFrom(source); 226 ASSERT_EQ(5, destination.size()); 228 EXPECT_EQ(1, destination.Get(0)); 229 EXPECT_EQ(2, destination.Get(1)); 230 EXPECT_EQ(3, destination.Get(2)); 231 EXPECT_EQ(4, destination.Get(3)) 519 RepeatedPtrField<string> source, destination; local [all...] |
/external/chromium_org/courgette/ |
streams.cc | 48 // |destination|. |destination| must have sufficient length to hold kMax32 50 static uint8* Encode32(uint8* destination, uint32 value); 116 inline uint8* Varint::Encode32(uint8* destination, uint32 value) { 118 *(destination++) = value | 128; 121 *(destination++) = value; 122 return destination; 129 bool SourceStream::Read(void* destination, size_t count) { 132 memcpy(destination, current_, count);
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodecLatin1.cpp | 131 LChar* destination = characters; local 143 copyASCIIMachineWord(destination, source); 145 destination += sizeof(MachineWord); 151 *destination = *source; 157 *destination = table[*source]; 161 ++destination; 174 LChar* endPtr8 = destination;
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PhotoCarousel.java | 186 ImageView destination = getBackface(); local 191 destination.setImageBitmap(photo); 192 destination.setTag(R.id.photo_orientation, Integer.valueOf(orientation)); 193 destination.setTag(R.id.photo_width, Integer.valueOf(width)); 194 destination.setTag(R.id.photo_height, Integer.valueOf(height)); 195 setScaleType(destination); 197 Bitmap old = mBitmapStore.put(destination, photo);
|
/external/chromium_org/media/midi/ |
midi_manager_mac.cc | 76 MIDIEndpointRef destination = MIDIGetDestination(i); local 80 destinations_[i] = destination; 82 MIDIPortInfo info = GetPortInfoFromEndpoint(destination); 186 // Lookup the destination based on the port index. 190 MIDIEndpointRef destination = destinations_[port_index]; 192 MIDISend(coremidi_output_, destination, packet_list_);
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
natserver.cc | 40 h ^= r.destination().Hash(); 50 if (symmetric && (r1.destination() < r2.destination())) 52 if (symmetric && (r2.destination() < r1.destination())) 112 // Read the intended destination from the wire. 125 // Allow the destination to send packets back to the source. 128 // Send the packet to its intended destination.
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
unknown_fields_test.py | 110 destination = unittest_pb2.TestEmptyMessage() 111 destination.ParseFromString(message.SerializeToString()) 112 unknown_fields = destination._unknown_fields[:] 114 destination.MergeFrom(source) 116 destination._unknown_fields)
|
/external/v8/src/ |
lithium.cc | 136 LOperand* destination = move_operands_[i].destination(); local 139 if (source->Equals(destination)) { 140 destination->PrintTo(stream); 142 destination->PrintTo(stream);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FilterEffect.h | 77 void copyUnmultipliedImage(Uint8ClampedArray* destination, const IntRect&); 78 void copyPremultipliedImage(Uint8ClampedArray* destination, const IntRect&); 116 // Mapping a rect forwards determines which which destination pixels a 119 // destination rect. Note that these are not necessarily the inverse of 188 inline void copyImageBytes(Uint8ClampedArray* source, Uint8ClampedArray* destination, const IntRect&);
|