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

1 2 3 4 5 6 78 91011>>

  /external/chromium/chrome/browser/tab_contents/
web_drag_dest_gtk.cc 75 void WebDragDestGtk::UpdateDragStatus(WebDragOperation operation) {
77 is_drop_target_ = operation != WebDragOperationNone;
78 gdk_drag_status(context_, gtk_util::WebDragOpToGdkDragAction(operation),
background_contents.h 109 virtual void UpdateDragCursor(WebKit::WebDragOperation operation) {}
  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshotView.js 213 var operation = operationAndNumber[0]; variable
228 heapSnapshotDataGridNode._searchMatchedCountColumn = operation(heapSnapshotDataGridNode.countPercent, queryNumber);
229 heapSnapshotDataGridNode._searchMatchedSizeColumn = operation(heapSnapshotDataGridNode.sizePercent, queryNumber);
230 heapSnapshotDataGridNode._searchMatchedCountDeltaColumn = operation(heapSnapshotDataGridNode.countDeltaPercent, queryNumber);
231 heapSnapshotDataGridNode._searchMatchedSizeDeltaColumn = operation(heapSnapshotDataGridNode.sizeDeltaPercent, queryNumber);
233 heapSnapshotDataGridNode._searchMatchedSizeColumn = operation(heapSnapshotDataGridNode.size, queryNumberBytes);
234 heapSnapshotDataGridNode._searchMatchedSizeDeltaColumn = operation(heapSnapshotDataGridNode.sizeDelta, queryNumberBytes);
236 heapSnapshotDataGridNode._searchMatchedCountColumn = operation(heapSnapshotDataGridNode.count, queryNumber);
237 heapSnapshotDataGridNode._searchMatchedCountDeltaColumn = operation(heapSnapshotDataGridNode.countDelta, queryNumber);
531 for (var operation in parsers)
    [all...]
  /external/webkit/Source/WebCore/page/
DragController.cpp 244 DragOperation operation = DragOperationNone; local
245 bool handledByDocument = tryDocumentDrag(dragData, m_dragDestinationAction, operation);
248 return operation;
291 bool DragController::tryDocumentDrag(DragData* dragData, DragDestinationAction actionMask, DragOperation& operation)
303 m_isHandlingDrag = tryDHTMLDrag(dragData, operation);
324 operation = DragOperationGeneric;
338 operation = dragIsMove(innerFrame->selection(), dragData) ? DragOperationMove : DragOperationCopy;
525 // This is designed to match IE's operation fallback for the case where
542 bool DragController::tryDHTMLDrag(DragData* dragData, DragOperation& operation)
562 operation = clipboard->destinationOperation()
    [all...]
  /frameworks/ex/common/java/com/android/common/content/
SQLiteContentProvider.java 220 final ContentProviderOperation operation = operations.get(i); local
221 if (i > 0 && operation.isYieldAllowed()) {
231 results[i] = operation.apply(this, results, i);
  /frameworks/native/include/ui/
Region.h 142 const Region operation(const Rect& rhs, int op) const;
143 const Region operation(const Region& rhs, int op) const;
144 const Region operation(const Region& rhs, int dx, int dy, int op) const;
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
SQLiteContentProvider.java 220 final ContentProviderOperation operation = operations.get(i); local
221 if (i > 0 && operation.isYieldAllowed()) {
224 results[i] = operation.apply(this, results, i);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AbstractContactsProvider.java 46 * Duration in ms to sleep after successfully yielding the lock during a batch operation.
198 final ContentProviderOperation operation = operations.get(i); local
199 if (i > 0 && operation.isYieldAllowed()) {
214 results[i] = operation.apply(this, results, i);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlineDropListener.java 51 int operation = DND.DROP_COPY; local
52 event.detail = operation;
161 public boolean validateDrop(Object target, int operation,
  /frameworks/base/core/java/android/content/
ContentProvider.java 213 for (ContentProviderOperation operation : operations) {
214 if (operation.isReadOperation()) {
215 enforceReadPermission(operation.getUri());
218 if (operation.isWriteOperation()) {
219 enforceWritePermission(operation.getUri());
628 * signal to ensure correct operation on older versions of the Android Framework in
644 * @param cancellationSignal A signal to cancel the operation in progress, or null if none.
645 * If the operation is canceled, then {@link OperationCanceledException} will be thrown
713 * deletion, allowing the operation to affect multiple rows in a directory.
    [all...]
SyncManager.java 723 // operation in the specified window
    [all...]
  /external/webkit/Tools/Scripts/
prepare-ChangeLog     [all...]
  /external/mesa3d/src/glsl/
ir.cpp 200 this->operation = ir_expression_operation(op);
214 this->operation = ir_expression_operation(op);
227 this->operation = ir_expression_operation(op);
238 this->operation = ir_expression_operation(op);
246 switch (this->operation) {
285 this->operation = ir_expression_operation(op);
293 switch (this->operation) {
424 return operator_string(this->operation);
    [all...]
lower_mat_op_to_vec.cpp 27 * Breaks matrix operation expressions down to a series of vector operations.
397 /* OK, time to break down this matrix operation. */
398 switch (orig_expr->operation) {
402 /* Apply the operation to each column.*/
409 column_expr = new(mem_ctx) ir_expression(orig_expr->operation,
430 * column-wise through and applying the operation to each column
440 column_expr = new(mem_ctx) ir_expression(orig_expr->operation,
478 (orig_expr->operation == ir_binop_all_equal));
482 printf("FINISHME: Handle matrix operation for %s\n",
  /external/openssl/crypto/evp/
pmeth_lib.c 180 ret->operation = EVP_PKEY_OP_UNDEFINED;
341 rctx->operation = pctx->operation;
396 if (ctx->operation == EVP_PKEY_OP_UNDEFINED)
402 if ((optype != -1) && !(ctx->operation & optype))
442 return ctx->operation;
  /external/chromium/chrome/browser/notifications/
balloon_host.h 100 virtual void UpdateDragCursor(WebKit::WebDragOperation operation) {}
  /external/chromium/chrome/browser/sync/glue/
bookmark_change_processor.h 131 // position is to be fixed. If |operation| is CREATE, treat |dst| as an
136 static bool PlaceSyncNode(MoveOrCreate operation,
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_view_gtk.h 80 virtual void UpdateDragCursor(WebKit::WebDragOperation operation);
tab_contents_view_touch.h 80 virtual void UpdateDragCursor(WebKit::WebDragOperation operation) OVERRIDE;
tab_contents_view_views.h 73 virtual void UpdateDragCursor(WebKit::WebDragOperation operation) OVERRIDE;
123 // Set to true if we want to close the tab after the system drag operation
  /external/chromium/net/disk_cache/
disk_format.h 75 CacheAddr transaction; // In-flight operation target.
76 int32 operation; // Actual in-flight operation. member in struct:disk_cache::LruData
77 int32 operation_list; // In-flight operation list.
  /external/openssl/crypto/asn1/
x_crl.c 94 static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
100 switch(operation) {
208 static int crl_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
216 switch(operation)
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebframe.h 150 GtkPrintOperation *operation,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_slice_header.h 65 /* structure to store data of one reference picture list reordering operation */
80 /* structure to store data of one DPB memory management control operation */
104 memoryManagementOperation_t operation[MAX_NUM_MMC_OPERATIONS]; member in struct:__anon16733
  /frameworks/av/media/mtp/
MtpServer.h 140 MtpResponseCode doGetPartialObject(MtpOperationCode operation);

Completed in 1333 milliseconds

1 2 3 4 5 6 78 91011>>