/external/mdnsresponder/Clients/ |
dns-sd.c | 29 * PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN 210 static int operation; variable 314 // Sample callback functions for each of the operation types 354 if (num_printed++ == 0) printf("Timestamp Recommended %s domain\n", operation == 'E' ? "Registration" : "Browsing"); 509 // cancel the current operation when we've got a multiple of five results 510 //if (operation == 'S' && num_printed % 5 == 0) DNSServiceRefDeallocate(sdref); 577 switch (operation) 648 if (operation == 'A' || operation == 'U' || operation == 'N' [all...] |
/external/mesa3d/src/glsl/ |
loop_analysis.cpp | 449 || ((rhs->operation != ir_binop_add) 450 && (rhs->operation != ir_binop_sub))) 454 * If the operation is subtraction, the variable in question must be the 463 || ((op1 == var) && (rhs->operation == ir_binop_sub))) 480 if ((inc != NULL) && (rhs->operation == ir_binop_sub)) {
|
lower_mat_op_to_vec.cpp | 27 * Breaks matrix operation expressions down to a series of vector operations. 351 /* OK, time to break down this matrix operation. */ 352 switch (orig_expr->operation) { 354 /* Apply the operation to each column.*/ 359 column_expr = new(mem_ctx) ir_expression(orig_expr->operation, 374 * column-wise through and applying the operation to each column 381 column_expr = new(mem_ctx) ir_expression(orig_expr->operation, 416 (orig_expr->operation == ir_binop_all_equal)); 420 printf("FINISHME: Handle matrix operation for %s\n",
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/ |
TestSensorOperation.java | 145 TestSensorOperation operation = new TestSensorOperation(mEnvironment, mExecutor); local 147 operation.addVerification(verification.clone()); 149 return operation; 203 * Creates an operation that will wait for a given amount of events to arrive. 227 * Creates an operation that will wait for a given amount of time to collect events. 253 * Creates an operation that will wait for a given amount of time before calling
|
/external/chromium_org/base/win/ |
shortcut.cc | 47 ShortcutOperation operation) { 50 // A target is required unless |operation| is SHORTCUT_UPDATE_EXISTING. 51 if (operation != SHORTCUT_UPDATE_EXISTING && 66 switch (operation) {
|
/external/chromium_org/net/disk_cache/simple/ |
simple_backend_impl.cc | 174 // after running an operation asynchronously. 176 const Callback<int(const net::CompletionCallback&)>& operation, 178 const int operation_result = operation.Run(operation_callback); 380 Callback<int(const net::CompletionCallback&)> operation = local 384 operation, callback)); 408 Callback<int(const net::CompletionCallback&)> operation = local 412 operation, callback)); 427 Callback<int(const net::CompletionCallback&)> operation = local 430 operation, callback)); 620 Callback<int(const net::CompletionCallback&)> operation local 649 Callback<int(const net::CompletionCallback&)> operation = local [all...] |
/cts/tests/tests/hardware/src/android/hardware/cts/ |
SensorTest.java | 436 TestSensorOperation operation = local 438 operation.addVerification(EventGapVerification.getDefault(environment)); 439 operation.addVerification(EventOrderingVerification.getDefault(environment)); 440 operation.addVerification( 444 operation.execute(getCurrentTestNode()); 476 TestSensorOperation operation = new TestSensorOperation(environment, executor, handler); local 479 operation.execute(getCurrentTestNode());
|
/external/chromium_org/chrome/installer/setup/ |
install_worker_unittest.cc | 149 void set_operation(Operation operation) { operation_ = operation; } 297 InstallerState::Operation operation) { 303 installer_state->set_operation(operation); 387 InstallerState::Operation operation) { 390 operation)); 397 if (operation != InstallerState::UNINSTALL || !machine_has_other_products [all...] |
install_worker.cc | 220 if (installer_state.operation() == InstallerState::UNINSTALL) { 242 // These failures are ignored because this is a clean-up operation that 298 // Returns the basic CommandLine to setup.exe for a quick-enable operation on 302 // the operation is an uninstall. 311 DCHECK(installer_state.operation() != InstallerState::UNINSTALL || 314 DCHECK(installer_state.operation() == InstallerState::UNINSTALL || 320 if (installer_state.operation() == InstallerState::UNINSTALL) { 345 // multi-installer binaries' version key on the basis of the current operation 616 // registered. Remove these since this operation may be updating a machine [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLConstructionSite.cpp | 115 ASSERT(task.operation == HTMLConstructionSiteTask::Insert); 129 ASSERT(task.operation == HTMLConstructionSiteTask::InsertText); 150 ASSERT(task.operation == HTMLConstructionSiteTask::Reparent); 160 ASSERT(task.operation == HTMLConstructionSiteTask::InsertAlreadyParsedChild); 167 ASSERT(task.operation == HTMLConstructionSiteTask::TakeAllChildren); 175 if (task.operation == HTMLConstructionSiteTask::Insert) 178 if (task.operation == HTMLConstructionSiteTask::InsertText) 183 if (task.operation == HTMLConstructionSiteTask::InsertAlreadyParsedChild) 186 if (task.operation == HTMLConstructionSiteTask::Reparent) 189 if (task.operation == HTMLConstructionSiteTask::TakeAllChildren [all...] |
/external/chromium_org/ui/file_manager/file_manager/background/js/ |
file_operation_handler.js | 21 * File operation manager. 35 * Pending items of delete operation. 39 * If the operation takes more than FileOperationHandler.PENDING_TIME_MS_, 147 * operation type. 156 console.error('Unknown operation type.');
|
/external/chromium_org/content/browser/dom_storage/ |
session_storage_database.cc | 113 DBOperation operation(this); 118 // operation, create a snapshot and read from it. 139 DBOperation operation(this); 201 DBOperation operation(this); 230 DBOperation operation(this); 243 DBOperation operation(this); 264 DBOperation operation(this); 267 // CommitAreaChanges. To protect the reading operation, create a snapshot and 401 // copies). Make further operations fail. The next operation that finishes 411 // Make further operations fail. The next operation that finishe [all...] |
/external/chromium_org/content/renderer/service_worker/ |
service_worker_cache_storage_dispatcher.cc | 143 ServiceWorkerBatchOperation operation; local 144 operation.operation_type = 146 operation.request = FetchRequestFromWebRequest(web_operation.request); 147 operation.response = ResponseFromWebResponse(web_operation.response); 148 operation.match_params = 150 return operation;
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/ |
expr.pxi | 32 for ops, operation in [ 52 __op[op] = operation 54 del operator, op, ops, operation
|
/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/bluetooth/bluedroid/stack/gatt/ |
gatt_auth.c | 141 else if (p_clcb->operation == GATTC_OPTYPE_WRITE) 145 else if (p_clcb->operation == GATTC_OPTYPE_READ) 194 /* start all other pending operation in queue */ 209 GATT_TRACE_ERROR("Unknown operation encryption completed"); 370 (p_clcb->operation == GATTC_OPTYPE_WRITE) &&
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
neteq_impl.h | 226 // do is written to |operation|. Packets to decode are written to 230 int GetDecision(Operations* operation, 242 Operations* operation, 249 Operations* operation, 255 // Sub-method which calls the Normal class to perform the normal operation. 261 // Sub-method which calls the Merge class to perform the merge operation. 267 // Sub-method which calls the Expand class to perform the expand operation. 271 // operation. 278 // preemtive expand operation.
|
/external/chromium_org/tools/stats_viewer/ |
stats_table.cs | 342 throw new Exception("The method or operation is not implemented.");
353 throw new Exception("The method or operation is not implemented.");
359 throw new Exception("The method or operation is not implemented.");
494 throw new Exception("The method or operation is not implemented.");
505 throw new Exception("The method or operation is not implemented.");
511 throw new Exception("The method or operation is not implemented.");
|
/external/bison/lib/ |
signal.in.h | 270 combining it with *SET as indicated in OPERATION. 278 (int operation, const sigset_t *set, sigset_t *old_set)); 281 (int operation, const sigset_t *set, sigset_t *old_set));
|
/external/chromium_org/ash/drag_drop/ |
drag_drop_controller.h | 51 int operation,
|
/external/chromium_org/chromeos/dbus/ |
shill_device_client.h | 161 const std::string& operation,
|
/external/chromium_org/content/browser/web_contents/ |
web_contents_view_mac.h | 112 virtual void UpdateDragCursor(blink::WebDragOperation operation) OVERRIDE;
|
/external/chromium_org/content/public/browser/ |
render_view_host.h | 110 // Notifies the renderer that a a drag operation that it started has ended, 114 blink::WebDragOperation operation) = 0; 116 // Notifies the renderer that we're done with the drag and drop operation.
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
jspipe_test.cc | 53 const char* operation, PP_Var payload) { 62 PP_Var operation_var = VarFromCStr(var_iface, operation); 65 PP_Var operation_key = VarFromCStr(var_iface, "operation"); 161 // "operation": '<command_name>', 166 const char* operation, 184 PP_Var key2 = VarFromCStr(var_iface, "operation"); 187 // Verify pipe name and operation values 194 ASSERT_STREQ(operation, VarToString(var_iface, value2).c_str());
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
DragController.cpp | 298 dragSession.operation = operationForLoad(dragData); 344 isHandlingDrag = tryDHTMLDrag(dragData, dragSession.operation); 382 dragSession.operation = dragIsMove(innerFrame->selection(), dragData) ? DragOperationMove : DragOperationCopy; 398 dragSession.operation = DragOperationNone; 572 // This is designed to match IE's operation fallback for the case where 589 bool DragController::tryDHTMLDrag(DragData* dragData, DragOperation& operation) 609 operation = dataTransfer->destinationOperation(); 611 operation = defaultOperationForDrag(srcOpMask); 612 else if (!(srcOpMask & operation)) { 613 // The element picked an operation which is not supported by the sourc [all...] |