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

1 2 3 4 5 67 8 91011>>

  /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/chromium_org/chrome/browser/sync/test/integration/
apps_helper.cc 119 void CopyNTPOrdinals(Profile* source, Profile* destination, int index) {
120 SetPageOrdinalForApp(destination, index, GetPageOrdinalForApp(source, index));
122 destination, index, GetAppLaunchOrdinalForApp(source, index));
  /external/chromium_org/printing/android/java/src/org/chromium/printing/
PrintDocumentAdapterWrapper.java 37 final ParcelFileDescriptor destination,
131 final ParcelFileDescriptor destination,
134 mPdfGenerator.onWrite(ranges, destination, cancellationSignal,
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
BiquadDSPKernel.cpp 113 void BiquadDSPKernel::process(const float* source, float* destination, size_t framesToProcess)
115 ASSERT(source && destination && biquadProcessor());
123 m_biquad.process(source, destination, framesToProcess);
BiquadProcessor.h 58 virtual void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess);
  /packages/apps/Gallery2/jni/filters/
fx.c 36 char* destination = 0; local
38 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
40 unsigned char * rgb = (unsigned char * )destination;
edge.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
35 char * dst = destination;
38 char * ptr = destination;
  /frameworks/base/libs/hwui/font/
Font.cpp 237 SkPoint destination[4]; local
244 destination[0].set(-tangent->fX * halfWidth - tangent->fY * vOffset,
246 destination[1].set(tangent->fX * halfWidth - tangent->fY * vOffset,
248 destination[2].set(destination[1].fX + tangent->fY * height,
249 destination[1].fY - tangent->fX * height);
250 destination[3].set(destination[0].fX + tangent->fY * height,
251 destination[0].fY - tangent->fX * height);
259 position->x() + destination[0].x()
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java 79 int destination,
87 if (destination == Downloads.Impl.DESTINATION_FILE_URI) {
90 base = storageManager.locateDestinationDirectory(mimeType, destination,
93 destination);
95 storageManager.verifySpace(destination, path, contentLength);
99 path = getFullPath(path, mimeType, destination, base);
103 static String getFullPath(String filename, String mimeType, int destination, File base)
108 if (destination == Downloads.Impl.DESTINATION_FILE_URI) {
109 // Destination is explicitly set - do not change the extension
122 extension = chooseExtensionFromFilename(mimeType, destination, filename, dotIndex)
    [all...]
  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
SampleGenPlugin.groovy 37 def destination) {
42 outputDir = destination
  /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/chromium_org/chrome/browser/history/
history_backend_android.cc 97 int destination) {
99 DCHECK_LE(-1, destination);
102 if (current_pos > destination) {
106 for (; cur < destination; ++cur) {
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_delegate.h 56 void NavigateToUrl(const GURL& destination) const;
  /external/chromium_org/chrome/browser/ui/android/infobars/
translate_infobar.cc 107 TranslateInfoBar* destination,
112 reinterpret_cast<intptr_t>(destination), new_type)) {
113 ReassignJavaInfoBar(destination);
114 destination->SetJavaDelegate(java_translate_delegate_.Release());
translate_infobar.h 35 void TransferOwnership(TranslateInfoBar* destination,
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextBreakIteratorICU.cpp 133 // Relocate pointer from source into destination as required.
134 static void textFixPointer(const UText* source, UText* destination, const void*& pointer)
138 pointer = static_cast<char*>(destination->pExtra) + (static_cast<const char*>(pointer) - static_cast<const char*>(source->pExtra));
141 pointer = reinterpret_cast<char*>(destination) + (static_cast<const char*>(pointer) - reinterpret_cast<const char*>(source));
145 static UText* textClone(UText* destination, const UText* source, UBool deep, UErrorCode* status)
151 destination = utext_setup(destination, extraSize, status);
153 return destination;
154 void* extraNew = destination->pExtra;
155 int32_t flags = destination->flags
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebLayerTreeView.h 91 // If useAnchor is true, destination is a point on the screen that will remain fixed for the duration of the animation.
92 // If useAnchor is false, destination is the final top-left scroll position.
93 virtual void startPageScaleAnimation(const WebPoint& destination, bool useAnchor, float newPageScale, double durationSec) = 0;
  /external/oprofile/libutil++/
file_manip.h 22 * @param destination filename to copy into
27 bool copy_file(std::string const & source, std::string const & destination);
  /frameworks/ex/chips/tests/src/com/android/ex/chips/
RecipientAlternatesAdapterTest.java 53 // Test: add a third row with a non-unique destination.
62 // Test: add a forth row with a non-unique destination again.
74 String destination,
82 c.addRow(new Object[] {displayName, destination, destinationType, destinationLabel,
89 String destination,
99 assertEquals(destination, c.getString(1));
131 // Ensure that if one has a display name different from its destination, and the other's
132 // is equal to its destination, we use the unique one
  /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));
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
LiteralByteStringTest.java 131 byte[] destination = new byte[destinationOffset + length];
133 stringUnderTest.copyTo(destination, sourceOffset, destinationOffset, length);
136 stillEqual = referenceBytes[i + sourceOffset] == destination[i + destinationOffset];
144 byte[] destination = new byte[destinationOffset + length];
148 stringUnderTest.copyTo(destination, stringUnderTest.size() + 1 - length,
158 stringUnderTest.copyTo(destination, -1, destinationOffset, length);
167 stringUnderTest.copyTo(destination, 0, -1, length);
176 stringUnderTest.copyTo(destination, 0, 0, -1);
185 stringUnderTest.copyTo(destination, 2 * stringUnderTest.size(), 0, length);
194 stringUnderTest.copyTo(destination, 0, 2 * destination.length, length)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PrintHtmlOffScreen.java 114 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination,
116 mWrappedInstance.onWrite(pages, destination, cancellationSignal, callback);

Completed in 861 milliseconds

1 2 3 4 5 67 8 91011>>