HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 226 - 250 of 719) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/ti/omap4xxx/security/tf_sdk/include/
tee_client_api_ex.h 88 const TEEC_UUID* destination,
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
RenderingRequest.java 56 RenderingRequestCaller caller, Rect bounds, Rect destination) {
85 request.setDestination(destination);
186 public void setDestination(Rect destination) {
187 mDestination = destination;
  /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_->GetDirectConnectionParams()->destination();
63 return transport_params_->destination();
207 SpdySessionKey key(params_->destination().host_port_pair(),
272 const HostResolver::RequestInfo& tcp_destination = params_->destination();
303 SpdySessionKey key(params_->destination().host_port_pair(),
347 params_->destination().host_port_pair(),
  /external/chromium_org/chrome/browser/ui/fullscreen/
fullscreen_controller_state_test.cc 221 State destination = transition_table_[source][event]; local
222 state_transitions_[source][destination].event = static_cast<Event>(event);
223 state_transitions_[source][destination].state = destination;
224 state_transitions_[source][destination].distance = 1;
601 State destination,
606 if (state_transitions_[source][destination].state == STATE_INVALID) {
620 next_state_candidate, destination, search_limit - 1);
630 state_transitions_[source][destination] = result;
633 return state_transitions_[source][destination];
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexServerSession.java 183 String destination; local
185 destination = ((BluetoothOppRfcommTransport)mTransport).getRemoteAddress();
187 destination = "FF:FF:FF:00:00:00";
190 isWhitelisted(destination);
272 values.put(BluetoothShare.DESTINATION, destination);
556 String destination; local
558 destination = ((BluetoothOppRfcommTransport)mTransport).getRemoteAddress();
560 destination = "FF:FF:FF:00:00:00";
563 isWhitelisted(destination);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
SincResampler.cpp 185 void SincResampler::process(const float* source, float* destination, unsigned numberOfSourceFrames)
195 process(&sourceProvider, destination, framesThisTime);
197 destination += framesThisTime;
202 void SincResampler::process(AudioSourceProvider* sourceProvider, float* destination, size_t framesToProcess)
448 *destination++ = result;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
layout_tests_mover.py 32 to the specified destination path. Updates all references in tests and resources to reflect the new
36 If the destination directory does not exist, it and any missing parent directories are created. If
37 the destination directory already exists, the child members of the origin directory are added to the
38 destination directory. If any of the child members clash with existing members of the destination
90 def _move_path(self, path, origin, destination):
93 return self._filesystem.normpath(self._filesystem.join(destination, self._filesystem.relpath(path, origin)))
101 raise Exception('Destination path %s is a file' % self._destination)
103 raise Exception('Destination path %s is not in LayoutTests directory' % self._destination)
105 # If destination is an existing directory, we move the children of origin into destination
    [all...]
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_provider_win.cc 574 STGMEDIUM* destination) {
577 destination->hGlobal =
582 destination->hMetaFilePict =
587 destination->hBitmap =
592 destination->hEnhMetaFile =
597 destination->lpszFileName =
602 destination->pstm = source->pstm;
603 destination->pstm->AddRef();
606 destination->pstg = source->pstg;
607 destination->pstg->AddRef()
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
UnknownFieldSetTest.java 174 TestEmptyMessage destination = local
193 destination.toString());
218 TestAllTypes destination = TestAllTypes.parseFrom(data); local
220 TestUtil.assertAllFieldsSet(destination);
221 assertEquals(1, destination.getUnknownFields().asMap().size());
224 destination.getUnknownFields().getField(123456);
  /external/protobuf/java/src/test/java/com/google/protobuf/
UnknownFieldSetTest.java 174 TestEmptyMessage destination = local
193 destination.toString());
218 TestAllTypes destination = TestAllTypes.parseFrom(data); local
220 TestUtil.assertAllFieldsSet(destination);
221 assertEquals(1, destination.getUnknownFields().asMap().size());
224 destination.getUnknownFields().getField(123456);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Attachment.java 108 * @see AttachmentColumns#DESTINATION
110 public int destination; field in class:Attachment
181 destination = in.readInt();
202 destination = cursor.getInt(cursor.getColumnIndex(AttachmentColumns.DESTINATION));
223 destination = srcJson.optInt(AttachmentColumns.DESTINATION);
256 destination = AttachmentDestination.CACHE;
294 destination = values.getAsInteger(AttachmentColumns.DESTINATION);
    [all...]
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbDevice.java 117 public AdbSocket openSocket(String destination) {
124 if (socket.open(destination)) {
  /external/bison/src/
graphviz.c 69 output_edge (int source, int destination, char const *label,
72 fprintf (fout, " %d -> %d [style=%s", source, destination, style);
  /external/chromium_org/chrome/browser/printing/
print_job_manager.cc 25 void PrintQueriesQueue::SetDestination(PrintDestinationInterface* destination) {
27 destination_ = destination;
  /external/chromium_org/chrome/browser/themes/
browser_theme_pack.h 154 // Source and destination is |images|.
159 // can be of any size. Source and destination is |images|.
162 // Creates tinted and composited frame images. Source and destination is
180 // Takes all images in |source| and puts them in |destination|, freeing any
181 // image already in |destination| that |source| would overwrite.
183 ImageCache* destination) const;
185 // Copies images from |source| to |destination| such that the lifetimes of
186 // the images in |destination| are not affected by the lifetimes of the
188 void CopyImagesTo(const ImageCache& source, ImageCache* destination) const;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioContext.idl 35 // All rendered audio ultimately connects to destination, which represents the audio hardware.
36 readonly attribute AudioDestinationNode destination;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterEffect.cpp 281 inline void FilterEffect::copyImageBytes(Uint8ClampedArray* source, Uint8ClampedArray* destination, const IntRect& rect)
283 // Initialize the destination to transparent black, if not entirely covered by the source.
285 memset(destination->data(), 0, destination->length());
314 unsigned char *destinationPixel = destination->data() + ((yDest * rect.width()) + xDest) * 4;
325 void FilterEffect::copyUnmultipliedImage(Uint8ClampedArray* destination, const IntRect& rect)
356 copyImageBytes(m_unmultipliedImageResult.get(), destination, rect);
359 void FilterEffect::copyPremultipliedImage(Uint8ClampedArray* destination, const IntRect& rect)
384 copyImageBytes(m_premultipliedImageResult.get(), destination, rect);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/
director-ant.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
RSSFeedUtil.java 115 * Copies all bytes in the given source stream to the given destination
122 * @param destination
123 * the given destination stream
125 public static void transferData(InputStream source, OutputStream destination) throws IOException
133 destination.write(buffer, 0, bytesRead);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeMoveParticipantTest.java 103 @NonNull String destination,
108 IFolder destinationFolder = project.getFolder(destination);
  /bionic/libc/kernel/arch-mips/asm/
uaccess.h 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t"
74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
  /development/ndk/platforms/android-9/arch-mips/include/asm/
uaccess.h 71 #define __MODULE_JAL(destination) ".set\tnoat\n\t" __UA_LA "\t$1, " #destination "\n\t" "jalr\t$1\n\t" ".set\tat\n\t"
74 #define __MODULE_JAL(destination) "jal\t" #destination "\n\t"
  /external/chromium/chrome/browser/
aeropeek_manager.h 155 // Returns a rectangle that fits into the destination rectangle and keeps
158 void GetOutputBitmapSize(const gfx::Size& destination,
  /external/chromium_org/chrome/browser/history/
top_sites_cache.h 134 void StoreRedirectChain(const RedirectList& redirects, size_t destination);
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
Data.java 170 * Set the source node to be a symbolic link to the destination.
175 * Set the source node to be a symbolic link to the destination.
177 void setSymlink(String sourcePath, Data destination);
194 * @param toPath destination path for the deep copy.

Completed in 1167 milliseconds

1 2 3 4 5 6 7 8 91011>>