HomeSort by relevance Sort by last modified time
    Searched full:operation (Results 76 - 100 of 9314) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/installer/mini_installer/
configuration.h 14 enum Operation {
25 // Returns the desired operation dictated by the command line options.
26 Operation operation() const { return operation_; } function in class:mini_installer::Configuration
66 Operation operation_;
  /frameworks/base/core/java/android/app/backup/
IFullBackupRestoreObserver.aidl 28 * Notification: a full backup operation has begun.
42 * Notification: the full backup operation has ended.
47 * Notification: a restore-from-full-backup operation has begun.
61 * Notification: the restore-from-full-backup operation has ended.
66 * The user's window of opportunity for confirming the operation has timed out.
  /libcore/luni/src/main/java/java/net/
CacheRequest.java 27 * current store operation by calling the method {@code abort}. If an {@code
29 * the current cache store operation is abandoned.
42 * Aborts the current cache operation. If an {@code IOException} occurs
44 * current cache store operation is aborted.
54 * operation.
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
SimpleMenu.java 144 throw new UnsupportedOperationException("This operation is not supported for SimpleMenu");
148 throw new UnsupportedOperationException("This operation is not supported for SimpleMenu");
152 throw new UnsupportedOperationException("This operation is not supported for SimpleMenu");
156 throw new UnsupportedOperationException("This operation is not supported for SimpleMenu");
161 throw new UnsupportedOperationException("This operation is not supported for SimpleMenu");
165 throw new UnsupportedOperationException("This operation is not supported for SimpleMenu");
169 throw new UnsupportedOperationException("This operation is not supported for SimpleMenu");
173 throw new UnsupportedOperationException("This operation is not supported for SimpleMenu");
177 throw new UnsupportedOperationException("This operation is not supported for SimpleMenu");
181 throw new UnsupportedOperationException("This operation is not supported for SimpleMenu")
    [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
session_manager_operation.h 34 // Creates a new load operation.
38 // Starts the operation.
43 // Restarts a load operation (if that part is already in progress).
60 // Whether the load operation is underway.
70 // Runs the operation. The result is reported through |callback_|.
76 // Starts a load operation.
79 // Reports the result status of the operation. Once this gets called, the
80 // operation should not perform further processing or trigger callbacks.
123 // This operation loads the public owner key from disk if appropriate, fetches
127 // Creates a new load operation
    [all...]
  /external/openfst/src/include/fst/script/
script-impl.h 32 // If you have a custom operation you'd like to define, you need four
33 // components. In the following, assume you want to create a new operation
40 // 1) A way to bundle the args that your new Foo operation will take, as
61 // 3) a client-facing function for your operation. This would look like
69 // // Finally, call the operation
70 // Apply<Operation<FooArgs> >("Foo", ifst->ArcType(), &args);
76 // 4) A registration for your new operation, on the arc types you care about.
115 // The pair<string, string> is understood to be the operation name and arc
116 // type; subclasses (or typedefs) need only provide the operation signature.
148 // Operation package - everything you need to register a new type of operatio
    [all...]
  /frameworks/base/core/java/android/app/
AppOpsManager.java 36 * API for interacting with "application operation" tracking.
53 * <li> Monitor for changes in whether an operation is allowed.</li>
56 * <p>Each operation is identified by a single integer; these integers are a fixed set of
60 * setting for the operation under that caller: MODE_ALLOWED, MODE_IGNORED (don't execute
61 * the operation but fake its behavior enough so that the caller doesn't crash),
62 * MODE_ERRORED (throw a SecurityException back to the caller; the normal operation calls
75 * allowed to perform the given operation.
81 * not allowed to perform the given operation, and this attempt should
88 * given caller is not allowed to perform the given operation, and this attempt should
99 /** @hide No operation specified. *
    [all...]
  /frameworks/base/docs/html/training/notify-user/
display-progress.jd 46 of an ongoing operation. If you can estimate how long the operation takes and how much of it
48 (a progress bar). If you can't estimate the length of the operation, use the
68 As your operation proceeds,
69 increment <code>progress</code>, and update the notification. At the end of the operation,
73 "percent complete" value for the operation.
76 You can either leave the progress bar showing when the operation is done, or remove it. In
77 either case, remember to update the notification text to show that the operation is complete.
90 // Start a lengthy operation in a background thread
96 // Do the "lengthy" operation 20 time
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
UnaryOperation.java 30 * The unary operation base class.
36 /** The operand for the operation.
71 * Set the expression operand for the operation.
74 * @param r The expression operand to which the unary operation will be
84 * Execute the operand and apply the unary operation to the result.
90 * operation to the evaluated operand.
101 * Apply the operation to two operands, and return the result.
106 * @return non-null reference to the XObject that represents the result of the operation.
113 /** @return the operand of unary operation, as an Expression.
Div.java 28 * The 'div' operation expression executer.
30 public class Div extends Operation
35 * Apply the operation to two operands, and return the result.
41 * @return non-null reference to the XObject that represents the result of the operation.
52 * Evaluate this operation directly to a double.
56 * @return The result of the operation as a double.
Equals.java 28 * The '=' operation expression executer.
30 public class Equals extends Operation
35 * Apply the operation to two operands, and return the result.
41 * @return non-null reference to the XObject that represents the result of the operation.
52 * Execute a binary operation by calling execute on each of the operands,
58 * @return The XObject result of the operation.
Minus.java 28 * The binary '-' operation expression executer.
30 public class Minus extends Operation
35 * Apply the operation to two operands, and return the result.
42 * result of the operation.
53 * Evaluate this operation directly to a double.
57 * @return The result of the operation as a double.
Mod.java 28 * The 'mod' operation expression executer.
30 public class Mod extends Operation
35 * Apply the operation to two operands, and return the result.
41 * @return non-null reference to the XObject that represents the result of the operation.
52 * Evaluate this operation directly to a double.
56 * @return The result of the operation as a double.
Mult.java 28 * The '*' operation expression executer.
30 public class Mult extends Operation
35 * Apply the operation to two operands, and return the result.
41 * @return non-null reference to the XObject that represents the result of the operation.
52 * Evaluate this operation directly to a double.
56 * @return The result of the operation as a double.
Plus.java 28 * The '+' operation expression executer.
30 public class Plus extends Operation
35 * Apply the operation to two operands, and return the result.
41 * @return non-null reference to the XObject that represents the result of the operation.
52 * Evaluate this operation directly to a double.
56 * @return The result of the operation as a double.
  /external/chromium_org/webkit/browser/fileapi/
file_stream_writer.h 33 // Closes the file. If there's an in-flight operation, it is canceled (i.e.,
34 // the callback function associated with the operation is not called).
41 // the number of bytes written. If the operation could not be performed, it
53 // It is invalid to call Write while there is an in-flight async operation.
57 // Cancels an in-flight async operation.
61 // there is no in-flight operation, net::ERR_UNEXPECTED is returned.
64 // invalid to call Cancel() more than once on the same async operation.
67 // operation is dismissed immediately when Cancel() is called, and thus
78 // It is invalid to call Flush while there is an in-flight async operation.
  /external/iptables/extensions/
libipt_ecn.c 46 einfo->operation |= IPT_ECN_OP_MATCH_CWR;
51 einfo->operation |= IPT_ECN_OP_MATCH_ECE;
58 einfo->operation |= IPT_ECN_OP_MATCH_IP;
79 if (einfo->operation & IPT_ECN_OP_MATCH_ECE) {
84 if (einfo->operation & IPT_ECN_OP_MATCH_CWR) {
89 if (einfo->operation & IPT_ECN_OP_MATCH_IP) {
101 if (einfo->operation & IPT_ECN_OP_MATCH_ECE) {
107 if (einfo->operation & IPT_ECN_OP_MATCH_CWR) {
113 if (einfo->operation & IPT_ECN_OP_MATCH_IP) {
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation_linux.cc 9 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
21 void Operation::WriteStart() {
59 base::Bind(&Operation::WriteChunk,
66 void Operation::WriteChunk(
91 base::Bind(&Operation::WriteChunk,
106 base::Bind(&Operation::WriteComplete,
119 bool Operation::WriteCleanUp(
136 void Operation::WriteComplete() {
144 base::Bind(&Operation::VerifyWriteStart,
148 void Operation::VerifyWriteStart()
    [all...]
operation_manager.cc 9 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
53 base::Bind(&Operation::Abort,
65 const Operation::StartWriteCallback& callback) {
73 scoped_refptr<Operation> operation(
82 operations_[extension_id] = operation;
86 base::Bind(&Operation::Start,
87 operation.get()));
96 const Operation::StartWriteCallback& callback) {
103 scoped_refptr<Operation> operation
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_LlcpTransport.h 388 * \retval NFCSTATUS_SUCCESS Operation successful.
392 * a valid type to perform the requsted operation.
395 * \retval NFCSTATUS_FAILED Operation failed.
412 * \retval NFCSTATUS_SUCCESS Operation successful.
416 * a valid type to perform the requsted operation.
419 * \retval NFCSTATUS_FAILED Operation failed.
448 * \retval NFCSTATUS_SUCCESS Operation successful.
454 * \retval NFCSTATUS_FAILED Operation failed.
473 * \retval NFCSTATUS_SUCCESS Operation successful.
476 * \retval NFCSTATUS_FAILED Operation failed
    [all...]
  /frameworks/base/packages/BackupRestoreConfirmation/res/values/
strings.xml 23 <string name="backup_confirm_text">A full backup of all data to a connected desktop computer has been requested. Do you want to allow this to happen\?\n\nIf you did not request the backup yourself, do not allow the operation to proceed.</string>
30 <string name="restore_confirm_text">A full restore of all data from a connected desktop computer has been requested. Do you want to allow this to happen\?\n\nIf you did not request the restore yourself, do not allow the operation to proceed. This will replace any data currently on the device!</string>
36 <!-- Text for message to user that they must enter their predefined backup password in order to perform this operation. -->
38 <!-- Text for message to user that they must enter their device encryption password in order to perform this restore operation. -->
40 <!-- Text for message to user that they must enter their device encryption password in order to perform this backup operation. -->
43 <!-- Text for message to user that they must enter an encryption password to use for the full backup operation. -->
45 <!-- Text for message to user that they may optionally supply an encryption password to use for a full backup operation. -->
48 <!-- Text for message to user when performing a full restore operation, explaining that they must enter the password originally used to encrypt the full backup data. -->
51 <!-- Text of a toast telling the user that a full backup operation has begun -->
53 <!-- Text of a toast telling the user that a full backup operation has ended --
    [all...]
  /external/e2fsprogs/intl/
eval-plural.h 32 switch (pexp->operation)
45 /* pexp->operation must be lnot. */
52 if (pexp->operation == lor)
54 else if (pexp->operation == land)
60 switch (pexp->operation)
101 /* pexp->operation must be qmop. */
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
SyncEvent.h 50 ** Description: Start a synchronization operation.
112 ** Description: End a synchronization operation.
146 ** Description: Start a synchronization operation.
154 event.start (); //automatically start operation
162 ** Description: End a synchronization operation.
169 mEvent.end (); //automatically end operation
  /frameworks/base/obex/javax/obex/
BaseStream.java 52 * operation is not done.
53 * @throws IOException if the operation is completed
58 * Continues the operation since there is no data to read.
59 * @param sendEmpty <code>true</code> if the operation should send an empty
63 * @return <code>true</code> if the operation was completed;
64 * <code>false</code> if no operation took place
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java 19 import com.android.calendar.AsyncQueryService.Operation;
108 builder.append(Operation.opToChar(op));
142 * Compares an user-visible operation to this private OperationInfo
145 * @param o operation to be compared
148 public boolean equivalent(Operation o) {
154 * Queues the operation for execution
157 * @param args OperationInfo object describing the operation
172 * Gets the last delayed operation. It is typically used for canceling.
174 * @return Operation object which contains of the last cancelable operation
    [all...]

Completed in 651 milliseconds

1 2 34 5 6 7 8 91011>>