Searched defs:destination (Results 176 - 200 of 263) sorted by relevance

1234567891011

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_decoder.c90 struct pipe_surface **destination; local
120 destination = dec->idct_source->get_surfaces(dec->idct_source);
122 destination = dec->mc_source->get_surfaces(dec->mc_source);
124 if (!destination)
129 &buffer->zscan[i], buffer->zscan_source, destination[i]))
/external/chromium_org/v8/src/
H A Dutils.h531 void WriteTo(Vector<T> destination) { argument
532 DCHECK(size_ <= destination.length());
537 destination[position] = chunk[j];
542 destination[position] = current_chunk_[i];
H A Ddeoptimizer.h33 HeapNumberMaterializationDescriptor(T destination, double value) argument
34 : destination_(destination), value_(value) { }
36 T destination() const { return destination_; } function in class:v8::internal::BASE_EMBEDDED
H A Dlithium.h260 LMoveOperands(LOperand* source, LOperand* destination) argument
261 : source_(source), destination_(destination) {
267 LOperand* destination() const { return destination_; } function in class:v8::internal::BASE_EMBEDDED
271 // destination (but not the source).
276 // True if this move a move into the given destination operand.
282 // destination are the same, or if its destination is unneeded or constant.
/external/chromium_org/v8/src/x64/
H A Dmacro-assembler-x64.h117 void Load(Register destination, ExternalReference source);
118 void Store(ExternalReference destination, Register source);
119 // Loads the address of the external reference into the destination
121 void LoadAddress(Register destination, ExternalReference source);
129 void LoadRoot(Register destination, Heap::RootListIndex index);
134 void LoadRootIndexed(Register destination,
417 // high 32 bits of destination.
439 // the original values of source registers. The destination register
892 void Jump(Address destination, RelocInfo::Mode rmode);
897 void Call(Address destination, RelocInf
905 CallSize(Address destination) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/
H A Ddirector-ant.jar ... uninstallIU private String extraArguments private java.io.File destination private java.io.File bundlePool private java. ...
/external/icu/icu4c/source/i18n/
H A Ducol_sit.cpp351 int32_t ucol_sit_dumpSpecs(CollatorSpec *s, char *destination, int32_t capacity, UErrorCode *status) argument
361 uprv_strcat(destination, "_");
369 destination[len+j] = uprv_toupper(*(s->entries[i].start+j));
376 uprv_strncat(destination,s->entries[i].start, s->entries[i].len);
577 char *destination,
587 if(destination) {
588 uprv_memset(destination, 0, capacity*sizeof(char));
600 return ucol_sit_dumpSpecs(&s, destination, capacity, status);
576 ucol_normalizeShortDefinitionString(const char *definition, char *destination, int32_t capacity, UParseError *parseError, UErrorCode *status) argument
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_decoder.c90 struct pipe_surface **destination; local
120 destination = dec->idct_source->get_surfaces(dec->idct_source);
122 destination = dec->mc_source->get_surfaces(dec->mc_source);
124 if (!destination)
129 &buffer->zscan[i], buffer->zscan_source, destination[i]))
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jar ... .artifact.IArtifactDescriptor descriptor java.io.OutputStream destination org.eclipse.core.runtime.IProgressMonitor monitor ...
H A Dorg.eclipse.equinox.p2.extensionlocation_1.2.0.v20100518.jar ... .artifact.IArtifactDescriptor descriptor java.io.OutputStream destination org.eclipse.core.runtime.IProgressMonitor monitor
/external/chromium_org/ash/shelf/
H A Dshelf_view_unittest.cc477 views::View* destination = test_api_->GetButton(destination_index); local
479 gfx::Point(destination->x() - button->x(),
480 destination->y() - button->y()),
481 destination->GetBoundsInScreen().origin(), 0, 0);
/external/chromium_org/content/renderer/gpu/
H A Drender_widget_compositor.cc627 const blink::WebPoint& destination,
634 gfx::Vector2d(destination.x, destination.y),
626 startPageScaleAnimation( const blink::WebPoint& destination, bool use_anchor, float new_page_scale, double duration_sec) argument
/external/chromium_org/dbus/
H A Dmessage.cc242 // destination if any, followed by a blank line, and the message
245 // destination: com.example.Service
259 AppendStringHeader("destination", GetDestination(), &headers);
274 bool Message::SetDestination(const std::string& destination) { argument
275 return dbus_message_set_destination(raw_message_, destination.c_str());
307 const char* destination = dbus_message_get_destination(raw_message_); local
308 return destination ? destination : "";
/external/chromium_org/net/disk_cache/blockfile/
H A Dindex_table_v3.cc333 void EntryCell::SerializaForTest(IndexCell* destination) { argument
335 Serialize(destination);
399 void EntryCell::Serialize(IndexCell* destination) const {
400 *destination = cell_;
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositeEditCommand.cpp1071 void CompositeEditCommand::cleanupAfterDeletion(VisiblePosition destination) argument
1074 Node* destinationNode = destination.deepEquivalent().anchorNode();
1075 if (caretAfterDelete != destination && isStartOfParagraph(caretAfterDelete) && isEndOfParagraph(caretAfterDelete)) {
1080 // Bail if we'd remove an ancestor of our destination.
1093 // If caret position after deletion and destination position coincides,
1095 if (!position.rendersInDifferentPosition(destination.deepEquivalent())) {
1162 void CompositeEditCommand::moveParagraph(const VisiblePosition& startOfParagraphToMove, const VisiblePosition& endOfParagraphToMove, const VisiblePosition& destination, bool preserveSelection, bool preserveStyle, Node* constrainingAncestor) argument
1166 moveParagraphs(startOfParagraphToMove, endOfParagraphToMove, destination, preserveSelection, preserveStyle, constrainingAncestor);
1169 void CompositeEditCommand::moveParagraphs(const VisiblePosition& startOfParagraphToMove, const VisiblePosition& endOfParagraphToMove, const VisiblePosition& destination, bool preserveSelection, bool preserveStyle, Node* constrainingAncestor) argument
1171 if (startOfParagraphToMove == destination || startOfParagraphToMov
[all...]
H A DReplaceSelectionCommand.cpp465 bool ReplaceSelectionCommand::shouldMerge(const VisiblePosition& source, const VisiblePosition& destination) argument
467 if (source.isNull() || destination.isNull())
471 Node* destinationNode = destination.deepEquivalent().deprecatedNode();
477 && enclosingTableCell(source.deepEquivalent()) == enclosingTableCell(destination.deepEquivalent())
844 VisiblePosition destination = mergeForward ? endOfInsertedContent.next() : endOfInsertedContent; local
847 // Merging forward could result in deleting the destination anchor node.
849 if (endOfParagraph(startOfParagraphToMove) == destination) {
852 destination = VisiblePosition(positionBeforeNode(placeholder.get()));
855 moveParagraph(startOfParagraphToMove, endOfParagraph(startOfParagraphToMove), destination);
1054 // We don't want the destination t
1190 VisiblePosition destination = startOfParagraphToMove.previous(); local
[all...]
H A DTextIterator.cpp2050 UChar* destination = m_buffer.data() + oldLength; local
2051 StringImpl::copyChars(destination, characters, usableLength);
2052 foldQuoteMarksAndSoftHyphens(destination, usableLength);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/dxgi/src/
H A Ddxgi_native.cpp586 IDXGISurface *destination)
631 * a CopyResource/CopySubresourceRegion destination.
585 GetDisplaySurfaceData( IDXGISurface *destination) argument
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data_provider_win.cc583 STGMEDIUM* destination) {
586 destination->hGlobal =
591 destination->hMetaFilePict =
596 destination->hBitmap =
601 destination->hEnhMetaFile =
606 destination->lpszFileName =
611 destination->pstm = source->pstm;
612 destination->pstm->AddRef();
615 destination->pstg = source->pstg;
616 destination
581 DuplicateMedium(CLIPFORMAT source_clipformat, STGMEDIUM* source, STGMEDIUM* destination) argument
[all...]
/external/chromium_org/v8/src/compiler/
H A Dinstruction.h272 MoveOperands(InstructionOperand* source, InstructionOperand* destination) argument
273 : source_(source), destination_(destination) {}
278 InstructionOperand* destination() const { return destination_; } function in class:v8::internal::compiler::FINAL
282 // destination (but not the source).
285 // True if this move a move into the given destination operand.
291 // destination are the same, or if its destination is unneeded or constant.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/46/1/.cp/lib/
H A Drepository-tools-ant.jar ... .internal.repository.tools.tasks.DestinationRepository destination public org.eclipse.equinox.p2.internal ...
/external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
H A Ddxgi_native.cpp586 IDXGISurface *destination)
631 * a CopyResource/CopySubresourceRegion destination.
585 GetDisplaySurfaceData( IDXGISurface *destination) argument
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mdls.c250 EAS_U16 destination; member in struct:s_connection_tag
1920 EAS_U16 destination; local
1950 if ((result = EAS_HWGetWord(pDLSData->hwInstData, pDLSData->fileHandle, &destination, EAS_FALSE)) != EAS_SUCCESS)
1961 (connTable[i].destination == destination) &&

Completed in 476 milliseconds

1234567891011