Searched refs:operation (Results 101 - 125 of 531) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/web_contents/
H A Dweb_drag_source_mac.h82 // -draggedImage:endedAt:operation:.
84 operation:(NSDragOperation)operation;
/external/chromium_org/remoting/host/
H A Dhost_change_notification_listener.cc61 const std::string& operation = local
62 host_changed_element->Attr(QName(kChromotingXmlNamespace, "operation"));
63 if (operation == "delete") {
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_target_nvc0.h47 virtual bool isOpSupported(operation, DataType) const;
51 virtual bool isPostMultiplySupported(operation, float, int& e) const;
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_target_nvc0.h47 virtual bool isOpSupported(operation, DataType) const;
51 virtual bool isPostMultiplySupported(operation, float, int& e) const;
/external/chromium_org/chrome/installer/mini_installer/
H A Dconfiguration_test.cc23 // Test that the operation type is CLEANUP iff --cleanup is on the cmdline.
26 TestConfiguration(L"spam.exe").operation());
28 TestConfiguration(L"spam.exe --clean").operation());
30 TestConfiguration(L"spam.exe --cleanupthis").operation());
33 TestConfiguration(L"spam.exe --cleanup").operation());
35 TestConfiguration(L"spam.exe --cleanup now").operation());
H A Dconfiguration.h25 // Returns the desired operation dictated by the command line options.
26 Operation operation() const { return operation_; } function in class:mini_installer::Configuration
/external/chromium_org/cloud_print/service/win/
H A Dinstaller.cc37 base::win::ShortcutOperation operation) {
50 CreateOrUpdateShortcutLink(path, properties, operation);
55 base::win::ShortcutOperation operation = local
58 CreateShortcut(base::DIR_COMMON_START_MENU, true, operation);
59 CreateShortcut(base::DIR_COMMON_DESKTOP, false, operation);
36 CreateShortcut(int dir_key, bool with_subdir, base::win::ShortcutOperation operation) argument
/external/fio/
H A Dprinting.c15 static void begin_print(GtkPrintOperation *operation, argument
26 gtk_print_operation_set_n_pages(operation, 1);
29 static void results_draw_page(GtkPrintOperation *operation, argument
86 static void results_print_done(GtkPrintOperation *operation, argument
95 gtk_print_operation_get_error(operation, &print_error);
/external/openssl/crypto/dsa/
H A Ddsa_asn1.c67 static int sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
70 if(operation == ASN1_OP_NEW_PRE) {
94 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
97 if(operation == ASN1_OP_NEW_PRE) {
101 } else if(operation == ASN1_OP_FREE_PRE) {
/external/openssl/crypto/
H A Do_time.c182 long operation; local
190 operation = LIB$K_DELTA_SECONDS;
191 status = lib$cvt_to_internal_time(&operation,
209 operation = LIB$K_DAY_OF_WEEK;
210 status = lib$cvt_from_internal_time(&operation,
214 operation = LIB$K_DAY_OF_YEAR;
215 status = lib$cvt_from_internal_time(&operation,
/external/chromium_org/chrome/browser/component_updater/
H A Dcomponent_patcher_operation_out_of_process.cc91 const std::string& operation,
99 if (operation == kBsdiff) {
102 } else if (operation == kCourgette) {
90 Patch( const std::string& operation, scoped_refptr<base::SequencedTaskRunner> task_runner, const base::FilePath& input_abs_path, const base::FilePath& patch_abs_path, const base::FilePath& output_abs_path, base::Callback<void(int result)> callback) argument
/external/chromium_org/chrome/renderer/extensions/
H A Denterprise_platform_keys_natives.cc90 blink::WebCryptoOperation operation; local
92 &operation)) {
101 operation,
/external/chromium_org/components/component_updater/
H A Dcomponent_patcher.cc88 std::string operation; local
89 if (command_args->GetString(kOp, &operation)) {
91 CreateDeltaUpdateOp(operation, out_of_process_patcher_);
/external/chromium_org/content/child/webcrypto/nss/
H A Daes_cbc_nss.cc39 CK_ATTRIBUTE_TYPE operation = (mode == ENCRYPT) ? CKA_ENCRYPT : CKA_DECRYPT; local
48 CKM_AES_CBC_PAD, operation, sym_key, param.get()));
67 if (operation == CKA_DECRYPT &&
/external/chromium_org/ash/drag_drop/
H A Ddrag_image_view.h25 // |source| is the event source that started this drag drop operation (touch
27 // whether to show drag operation hint on top of the image.
47 // For touch drag drop, we show a hint corresponding to the drag operation
52 // |operation| is a bit field indicating allowable drag operations from
54 void SetTouchDragOperation(int operation);
/external/chromium_org/chrome/browser/resources/extensions/
H A Dpack_extension_overlay.js57 * |selectType| can be either 'file' or 'folder'. |operation| can be 'load'
58 * or 'pem' which are signals to the C++ to do some operation-specific
62 showFileDialog_: function(selectType, operation, callback) {
68 chrome.send('packExtensionSelectFilePath', [selectType, operation]);
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_drag_drop_views.cc42 int operation = ui::DragDropTypes::DRAG_COPY | ui::DragDropTypes::DRAG_LINK; local
45 operation |= ui::DragDropTypes::DRAG_MOVE;
50 widget->RunShellDrag(NULL, data, gfx::Point(), operation, source);
54 views::RunShellDrag(view, data, gfx::Point(), operation, source);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPrintContextTest.cpp48 Operation operation = { DrawRect, rect }; variable
49 m_recordedOperations.append(operation);
56 Operation operation = { DrawPoint, SkRect::MakeXYWH(pts[0].x(), pts[0].y(), 0, 0) }; variable
57 m_recordedOperations.append(operation);
/external/chromium_org/ui/wm/public/
H A Ddrag_drop_client.h30 // Initiates a drag and drop session. Returns the drag operation that was
37 int operation,
/external/chromium_org/chrome/browser/extensions/api/copresence/
H A Dcopresence_api_unittest.cc121 bool ExecuteOperation(scoped_ptr<Operation> operation) { argument
123 operation_list->Append(operation->ToValue().release());
152 scoped_ptr<Operation> operation(new Operation);
153 operation->publish = publish.Pass();
156 EXPECT_TRUE(ExecuteOperation(operation.Pass()));
179 scoped_ptr<Operation> operation(new Operation);
180 operation->subscribe = subscribe.Pass();
183 EXPECT_TRUE(ExecuteOperation(operation.Pass()));
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Dinterface_dependency_resolver.py218 for operation in dependency_interface.operations:
219 operation.extended_attributes.update(merged_extended_attributes)
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DContentProviderOperationBuilderTest.java67 ContentProviderOperation operation = builder.build();
68 assertThat(operation, notNullValue());
/external/chromium_org/media/audio/pulse/
H A Daudio_manager_pulse.cc103 pa_operation* operation = NULL; local
105 operation = pa_context_get_source_info_list(
108 operation = pa_context_get_sink_info_list(
111 WaitForOperationCompletion(input_mainloop_, operation);
214 pa_operation* operation = pa_context_get_server_info( local
216 WaitForOperationCompletion(input_mainloop_, operation);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriter.cpp250 Operation operation = m_queuedOperation; local
252 doOperation(operation);
255 void FileWriter::doOperation(Operation operation) argument
258 switch (operation) {
282 operation = OperationNone;
289 m_operationInProgress = operation;
/external/openssl/crypto/pkcs7/
H A Dpk7_asn1.c81 static int pk7_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
87 switch(operation)
129 /* Minor tweak to operation: free up EVP_PKEY */
130 static int si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
133 if(operation == ASN1_OP_FREE_POST) {
172 /* Minor tweak to operation: free up X509 */
173 static int ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
176 if(operation == ASN1_OP_FREE_POST) {

Completed in 3739 milliseconds

1234567891011>>