HomeSort by relevance Sort by last modified time
    Searched refs:Operation (Results 1 - 25 of 199) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/ui/views/examples/
examples_window.h 13 enum Operation {
19 VIEWS_EXAMPLES_EXPORT void ShowExamplesWindow(Operation operation);
examples_window_with_content.h 17 enum Operation {
24 Operation operation,
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
inserter.hpp 22 , typename Operation
27 typedef Operation operation; typedef in struct:boost::mpl::inserter
  /external/chromium_org/content/browser/indexed_db/
indexed_db_transaction.h 35 class Operation {
37 Operation() {}
38 virtual ~Operation() {}
46 void ScheduleTask(Operation* task) {
49 void ScheduleTask(Operation* task, Operation* abort_task) {
52 void ScheduleTask(IndexedDBDatabase::TaskType task_type, Operation* task) {
56 Operation* task,
57 Operation* abort_task);
109 void push(Operation* task) { queue_.push(task);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderOperations.java 43 private final Map<String, Operation> mOperations;
61 * Adds an operation to the list of folder operations to be applied. The last
62 * operation for a folder will be retained in the list of operations.
67 Operation operation = new Operation(folder, add); local
69 mOperations.put(folder.name, operation);
73 * Returns true if there is an operation for the specified folder
75 * @return Returns true if there is a add or remove operation for
83 * Returns true if there is an operation for the specified folde
108 Operation operation = mOperations.get(canonicalName); local
130 Operation operation = mOperations.get(canonicalName); local
    [all...]
  /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/tools/preload/
Proc.java 46 /** Maps thread ID to operation stack. */
47 transient final Map<Integer, LinkedList<Operation>> stacks
48 = new HashMap<Integer, LinkedList<Operation>>();
54 final List<Operation> operations = new ArrayList<Operation>();
84 * Starts an operation.
86 * @param threadId thread the operation started in
87 * @param loadedClass class operation happened to
88 * @param time the operation started
91 Operation.Type type)
    [all...]
LoadedClass.java 31 final List<Operation> loads = new ArrayList<Operation>();
34 final List<Operation> initializations = new ArrayList<Operation>();
84 private static int calculateMedian(List<Operation> operations) {
114 private void addProcessNames(List<Operation> ops, Set<String> names) {
115 for (Operation operation : ops) {
116 if (operation.process.fromZygote()) {
117 names.add(operation.process.name)
    [all...]
Operation.java 22 * An operation with a duration. Could represent a class load or initialization.
24 class Operation implements Serializable {
29 * Type of operation.
35 /** Process this operation occurred in. */
38 /** Start time for this operation. */
41 /** Index of this operation relative to its process. */
44 /** Type of operation. */
47 /** End time for this operation. */
50 /** The class that this operation loaded or initialized. */
54 final List<Operation> subops = new ArrayList<Operation>()
    [all...]
Android.mk 9 Operation.java \
  /external/llvm/include/llvm/MC/
MCWin64EH.h 31 OpType Operation;
37 : Operation(Op), Label(L), Offset(0), Register(Reg) {
41 : Operation(Size>128 ? Win64EH::UOP_AllocLarge : Win64EH::UOP_AllocSmall),
44 : Operation(Op), Label(L), Offset(Off), Register(Reg) {
52 : Operation(Op), Label(L), Offset(Code ? 1 : 0) {
55 OpType getOperation() const { return Operation; }
MCDwarf.h 284 OpType Operation;
294 Operation(Op), Label(L), Register(R), Offset(O),
300 Operation(Op), Label(L), Register(R1), Register2(R2) {
363 OpType getOperation() const { return Operation; }
367 assert(Operation == OpDefCfa || Operation == OpOffset ||
368 Operation == OpRestore || Operation == OpUndefined ||
369 Operation == OpSameValue || Operation == OpDefCfaRegister |
    [all...]
  /art/test/ThreadStress/
ThreadStress.java 31 enum Operation {
43 Operation(int frequency) {
54 // Lock used to notify threads performing Operation.WAIT
59 // the Operation.frequency values. We fill out an Operation[]
61 // Operation[] is shuffled so that there is more random
64 // The simple-minded filling in of Operation[] based on
65 // Operation.frequency below won't have even have close to a
66 // reasonable distribution if the count of Operation
71 for (Operation op : Operation.values())
192 Operation operation = operations[nextOperation]; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryService.java 57 * Data class which holds into info of the queued operation
59 public static class Operation {
72 * One of the EVENT_ARG_ constants in the class describing the operation
83 case Operation.EVENT_ARG_QUERY:
85 case Operation.EVENT_ARG_INSERT:
87 case Operation.EVENT_ARG_UPDATE:
89 case Operation.EVENT_ARG_DELETE:
91 case Operation.EVENT_ARG_BATCH:
101 builder.append("Operation [op=");
124 * Gets the last delayed operation. It is typically used for canceling
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
errorcode.h 78 enum Operation {
137 Operation op() const { return op_; }
159 ErrorCode(int argno, ArgType width, Operation op, uint64_t value,
177 Operation op_; // Comparison operation.
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.h 90 enum Operation {
109 void doOperation(Operation);
120 Operation m_operationInProgress;
121 Operation m_queuedOperation;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 115 * Operation is our binder-safe ContentProviderOperation (CPO) construct; an Operation can
127 protected static class Operation {
132 // Is this Operation a separator? (a good place to break up a large transaction)
138 Operation(ContentProviderOperation.Builder builder, String columnName, int offset) {
145 Operation(ContentProviderOperation.Builder builder) {
152 Operation(ContentProviderOperation op) {
193 * Convert an Operation to a CPO; if the Operation has a back reference, apply it with the
197 static ContentProviderOperation operationToContentProviderOperation(Operation op, int offset)
    [all...]
  /external/stlport/test/eh/
LeakCheck.h 18 be written so that each operation that could cause an exception causes
58 EFFECTS: Given a value and an operation, repeatedly applies the operation to a
62 value type whether the operation succeeds or fails.
64 template <class Value, class Operation>
65 void WeakCheck(const Value& v, const Operation& op, long max_iters = 2000000) {
99 their arguments. The operation is performed on the value itself, and no
102 template <class Value, class Operation>
103 void ConstCheck(const Value& v, const Operation& op, long max_iters = 2000000) {
135 the "strong guarantee": if the operation fails due to an exception, th
    [all...]
  /external/openfst/src/script/
concat.cc 29 Apply<Operation<ConcatArgs1> >("Concat", ofst->ArcType(), &args);
37 Apply<Operation<ConcatArgs2> >("Concat", ofst->ArcType(), &args);
  /frameworks/base/obex/javax/obex/
ServerRequestHandler.java 54 * an OBEX operation and a Connection ID was specified, no Connection ID will be
63 * <code>InputStream</code> from the <code>Operation</code> object passed to the
215 * @param operation contains the headers sent by the client and allows new
223 public int onPut(Operation operation) {
236 * @param operation contains the headers sent by the client and allows new
244 public int onGet(Operation operation) {
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Gt.java 27 * The '>' operation expression executer.
29 public class Gt extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.
Gte.java 27 * The '>=' operation expression executer.
29 public class Gte extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.
Lt.java 27 * The '<' operation expression executer.
29 public class Lt extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.
Lte.java 27 * The '<=' operation expression executer.
29 public class Lte extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.
NotEquals.java 27 * The '!=' operation expression executer.
29 public class NotEquals extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.

Completed in 1045 milliseconds

1 2 3 4 5 6 7 8