HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 176 - 200 of 658) sorted by null

1 2 3 4 5 6 78 91011>>

  /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)
174 def move(self, source, destination):
175 shutil.move(source, destination)
260 def copytree(self, source, destination):
261 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]
266 def move(self, source, destination):
269 self.files[destination] = self.files[source]
270 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/net/http/
http_proxy_client_socket_pool.cc 59 const HostResolver::RequestInfo& HttpProxySocketParams::destination() const { function in class:net::HttpProxySocketParams
61 return ssl_params_->transport_params()->destination();
63 return transport_params_->destination();
184 params_->transport_params()->destination().priority(), callback_,
204 SpdySessionKey key(params_->destination().host_port_pair(),
217 params_->ssl_params()->transport_params()->destination().priority(),
270 const HostResolver::RequestInfo& tcp_destination = params_->destination();
301 SpdySessionKey key(params_->destination().host_port_pair(),
326 params_->destination().priority(), spdy_session->net_log(), callback_);
342 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/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/jingle/glue/
fake_socket_factory.cc 49 net::IPEndPoint destination; local
50 if (!SocketAddressToIPEndPoint(address, &destination)) {
57 fake_socket_manager_->SendPacket(endpoint_, destination, data_vector);
140 LOG(WARNING) << "Dropping packet with unknown destination: "
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
ReverbConvolver.cpp 189 float* destination = destinationChannel->mutableData(); local
190 bool isDataSafe = source && destination;
203 m_accumulationBuffer.readAndClear(destination, framesToProcess);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FilterEffect.h 68 void copyUnmultipliedImage(Uint8ClampedArray* destination, const IntRect&);
69 void copyPremultipliedImage(Uint8ClampedArray* destination, const IntRect&);
107 // Mapping a rect forwards determines which which destination pixels a
110 // destination rect. Note that these are not necessarily the inverse of
177 inline void copyImageBytes(Uint8ClampedArray* source, Uint8ClampedArray* destination, const IntRect&);
  /packages/apps/Camera2/jni/
tinyplanet.cc 136 char* destination = 0; local
138 AndroidBitmap_lockPixels(env, bitmap_out, (void**) &destination);
140 unsigned char * rgb_out = (unsigned char * )destination;
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 135 char* destination = 0; local
137 AndroidBitmap_lockPixels(env, bitmap_out, (void**) &destination);
139 unsigned char * rgb_out = (unsigned char * )destination;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_py.py 33 destination = self.mkdtemp()
41 build_lib=destination)
58 pkgdest = os.path.join(destination, "pkg")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_py.py 33 destination = self.mkdtemp()
41 build_lib=destination)
58 pkgdest = os.path.join(destination, "pkg")
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNode.cpp 127 void AudioNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& es)
132 if (!destination) {
143 if (destination && inputIndex >= destination->numberOfInputs()) {
148 if (context() != destination->context()) {
153 AudioNodeInput* input = destination->input(inputIndex);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
svn-apply 430 my ($source, $destination) = @_;
433 my $escapedDestination = escapeSubversionPath($destination);
436 system("cp", $source, $destination) == 0 or die "Failed to copy $source $destination.";
437 system("git", "add", $destination) == 0 or die "Failed to git add $destination.";

Completed in 1117 milliseconds

1 2 3 4 5 6 78 91011>>