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

1 2 3 4

  /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 234 OpType Operation;
241 : Operation(Op), Label(L) {
245 : Operation(Op), Label(L), Destination(Register) {
250 : Operation(Move), Label(L), Destination(D), Source(S) {
254 : Operation(Op), Label(L), Destination(D), Source(S) {
257 OpType getOperation() const { return Operation; }
  /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...]
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...]
  /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...]
  /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) {
Operation.java 42 * The <code>Operation</code> interface provides ways to manipulate a single
43 * OBEX PUT or GET operation. The implementation of this interface sends OBEX
44 * packets as they are built. If during the operation the peer in the operation
45 * ends the operation, an <code>IOException</code> is thrown on the next read
62 * operation, the new headers will be sent during the next packet exchange.
71 * Operation op = conn.put(head);
87 * Operation op = conn.get(head);
102 * <H3>Client PUT Operation Flow</H3> For PUT operations, a call to
110 * <H3>Client GET Operation Flow</H3> For GET operation, a call t
    [all...]
  /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.
Quo.java 27 * The 'quo' operation expression executer. (no longer supported by XPath).
30 public class Quo extends Operation
37 * Apply the operation to two operands, and return the result.
43 * @return non-null reference to the XObject that represents the result of the operation.
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.
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.
Operation.java 19 * $Id: Operation.java 468655 2006-10-28 07:12:06Z minchau $
30 * The baseclass for a binary operation.
32 public class Operation extends Expression implements ExpressionOwner
80 * Set the left and right operand expressions for this operation.
95 * Execute a binary operation by calling execute on each of the operands,
101 * @return The XObject result of the operation.
119 * Apply the operation to two operands, and return the result.
125 * @return non-null reference to the XObject that represents the result of the operation.
135 /** @return the left operand of binary operation, as an Expression.
141 /** @return the right operand of binary operation, as an Expression
    [all...]
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.
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 150 * Operation is our binder-safe ContentProviderOperation (CPO) construct; an Operation can
162 protected static class Operation {
167 // Is this Operation a separator? (a good place to break up a large transaction)
173 Operation(ContentProviderOperation.Builder builder, String columnName, int offset) {
180 Operation(ContentProviderOperation.Builder builder) {
187 Operation(ContentProviderOperation op) {
231 * Convert an Operation to a CPO; if the Operation has a back reference, apply it with the
235 static ContentProviderOperation operationToContentProviderOperation(Operation op, int offset)
    [all...]
  /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...]

Completed in 327 milliseconds

1 2 3 4