/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_channel_expressions.cpp | 31 * ALU operation operates on one of those channel registers. As a 180 /* OK, time to break down this vector operation. */ 181 switch (expr->operation) { 222 assign(ir, i, new(mem_ctx) ir_expression(expr->operation, 252 assign(ir, i, new(mem_ctx) ir_expression(expr->operation, 316 if (expr->operation == ir_binop_all_equal) 321 temp = new(mem_ctx) ir_expression(expr->operation,
|
/external/chromium_org/ash/drag_drop/ |
drag_image_view.cc | 84 void DragImageView::SetTouchDragOperation(int operation) { 85 if (touch_drag_operation_ == operation) 87 touch_drag_operation_ = operation;
|
/external/chromium_org/chrome/browser/ui/webui/local_discovery/ |
local_discovery_ui_handler.h | 59 PrivetRegisterOperation* operation, 63 PrivetRegisterOperation* operation, 69 PrivetRegisterOperation* operation, 135 // For when the confirm operation on the cloudprint server has finished 199 // The current HTTP client (used for the current operation). 202 // The current register operation. Only one allowed at any time. 205 // The current Privet v3 setup operation. Only one allowed at any time.
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
lower_vector.cpp | 64 assert(ir->operation == ir_quadop_vector); 95 if (ex->operation != ir_unop_neg) 122 if ((expr == NULL) || (expr->operation != ir_quadop_vector))
|
/external/mesa3d/src/glsl/ |
lower_vector.cpp | 64 assert(ir->operation == ir_quadop_vector); 95 if (ex->operation != ir_unop_neg) 122 if ((expr == NULL) || (expr->operation != ir_quadop_vector))
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
drive_internals.js | 127 if (node.className == 'in-flight-operation') 133 var operation = inFlightOperations[i]; 135 tr.className = 'in-flight-operation'; 136 tr.appendChild(createElementFromText('td', operation.id)); 137 tr.appendChild(createElementFromText('td', operation.type)); 138 tr.appendChild(createElementFromText('td', operation.file_path)); 139 tr.appendChild(createElementFromText('td', operation.state)); 140 var progress = operation.progress_current + '/' + operation.progress_total; 141 if (operation.progress_total > 0) [all...] |
/external/chromium_org/content/browser/download/ |
base_file.cc | 320 const char* operation, 324 base::Bind(&FileErrorNetLogCallback, operation, error)); 329 const char* operation, 334 operation, os_error, 339 const char* operation, 344 base::Bind(&FileInterruptedNetLogCallback, operation, os_error, reason));
|
download_net_log_parameters.cc | 183 base::Value* FileErrorNetLogCallback(const char* operation, 188 dict->SetString("operation", operation); 194 base::Value* FileInterruptedNetLogCallback(const char* operation, 200 dict->SetString("operation", operation);
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
genk-timing.py | 122 operation = random.choice(possibleOperations) 123 if operation == "-": 127 self.writeln(" %s = %s %s %s" % (LValue, LHS, operation, RHS)) 129 self.writeln(" %s = %s %s %s" % (LValue, LHS, operation, RHS)) 131 self.writeln(" %s = %s %s %f :" % (LValue, LHS, operation, random.uniform(1, 100))) 133 self.writeln(" %s = %s %s %s :" % (LValue, LHS, operation, RHS))
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
genk-timing.py | 127 operation = random.choice(possibleOperations) 128 if operation == "-": 132 self.writeln(" %s = %s %s %s" % (LValue, LHS, operation, RHS)) 134 self.writeln(" %s = %s %s %s" % (LValue, LHS, operation, RHS)) 136 self.writeln(" %s = %s %s %f :" % (LValue, LHS, operation, random.uniform(1, 100))) 138 self.writeln(" %s = %s %s %s :" % (LValue, LHS, operation, RHS))
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
genk-timing.py | 122 operation = random.choice(possibleOperations) 123 if operation == "-": 127 self.writeln(" %s = %s %s %s" % (LValue, LHS, operation, RHS)) 129 self.writeln(" %s = %s %s %s" % (LValue, LHS, operation, RHS)) 131 self.writeln(" %s = %s %s %f :" % (LValue, LHS, operation, random.uniform(1, 100))) 133 self.writeln(" %s = %s %s %s :" % (LValue, LHS, operation, RHS))
|
/cts/tests/tests/effect/src/android/effect/cts/ |
GLEnv.java | 101 public void checkForEGLErrors(String operation) { 105 throw new RuntimeException("Operation '" + operation + "' caused EGL error: " + error);
|
/external/chromium_org/chrome/browser/chromeos/settings/ |
device_settings_service.h | 122 // Returns the status generated by the last operation. 133 // operation is reported through |callback|. If successful, the updated device 147 // Stores a policy blob to session_manager. The result of the operation is 184 // Enqueues a new operation. Takes ownership of |operation| and starts it 185 // right away if there is no active operation currently. 186 void Enqueue(SessionManagerOperation* operation); 188 // Enqueues a load operation. 191 // Makes sure there's a reload operation so changes to the settings (and key, 195 // Runs the next pending operation [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_button.h | 33 // Returns YES if a drag operation should lock the fullscreen overlay bar 53 operation:(NSDragOperation)operation; 82 // Returns YES if a drag operation should lock the fullscreen overlay bar 196 // end of a drag operation (or, in fact, can be dragged to a completely
|
/external/chromium_org/content/browser/browser_plugin/ |
browser_plugin_embedder.cc | 111 int screen_x, int screen_y, blink::WebDragOperation operation) { 116 client_y - guest_offset.y(), screen_x, screen_y, operation); 122 // When the embedder's drag/drop operation ends, we need to pass the message 123 // to the guest that initiated the drag/drop operation. This will ensure that
|
browser_plugin_embedder.h | 56 int screen_y, blink::WebDragOperation operation); 67 // operation, if there's any.
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
interface_dependency_resolver.py | 218 for operation in dependency_interface.operations: 219 operation.extended_attributes.update(merged_extended_attributes)
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
CryptoKey.cpp | 99 WebCryptoKeyUsageMask toKeyUsage(WebCryptoOperation operation) 101 switch (operation) { 167 result->completeWithError(WebCryptoErrorTypeInvalidAccess, "key.usages does not permit this operation"); 172 result->completeWithError(WebCryptoErrorTypeInvalidAccess, "key.algorithm does not match that of operation");
|
/external/openssl/crypto/asn1/ |
p8_pkey.c | 64 /* Minor tweak to operation: zero private key data */ 65 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, 69 if(operation == ASN1_OP_FREE_PRE) {
|
/external/google-diff-match-patch/name/fraser/neil/plaintext/ |
diff_match_patch.java | 61 * Cost of an empty edit operation in terms of edit characters. 119 * {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye"), 120 * Diff(Operation.EQUAL, " world.")} 123 public enum Operation { 162 diffs.add(new Diff(Operation.EQUAL, text1)); 183 diffs.addFirst(new Diff(Operation.EQUAL, commonprefix)); 186 diffs.addLast(new Diff(Operation.EQUAL, commonsuffix)); 210 diffs.add(new Diff(Operation.INSERT, text2)); 216 diffs.add(new Diff(Operation.DELETE, text1)) 2293 public Operation operation; field in class:Diff [all...] |
/external/chromium_org/chrome/browser/chromeos/ownership/ |
owner_settings_service_chromeos.h | 88 // Performs next operation in the queue. 91 // Called when sign-and-store operation completes it's work. 93 SessionManagerOperation* operation, 108 // The queue of pending sign-and-store operations. The first operation on the
|
/external/chromium_org/chrome/browser/ui/webui/extensions/ |
pack_extension_handler.cc | 157 std::string operation; local 158 if (!args->GetString(1, &operation)) 171 if (operation == "load") { 173 } else if (operation == "pem") {
|
/external/chromium_org/content/browser/renderer_host/ |
render_view_host_delegate_view.h | 56 // The page wants to update the mouse cursor during a drag & drop operation. 57 // |operation| describes the current operation (none, move, copy, link.) 58 virtual void UpdateDragCursor(blink::WebDragOperation operation) {}
|
/external/chromium_org/content/browser/web_contents/ |
web_drag_dest_mac.h | 57 // Sets the current operation negotiated by the source and destination, 60 - (void)setCurrentOperation:(NSDragOperation)operation;
|
/external/chromium_org/media/audio/pulse/ |
pulse_util.cc | 100 pa_operation* operation) { 101 if (!operation) { 102 DLOG(WARNING) << "Operation is NULL"; 106 while (pa_operation_get_state(operation) == PA_OPERATION_RUNNING) 109 pa_operation_unref(operation);
|