HomeSort by relevance Sort by last modified time
    Searched refs:Operation (Results 76 - 100 of 207) sorted by null

1 2 34 5 6 7 8 9

  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 71 // llvm-ar operation code and modifier flags. This must come first.
73 Options(cl::Positional, cl::Required, cl::desc("{operation}[modifiers]..."));
92 "\nMODIFIERS (operation specific):\n"
119 // Modifiers to follow operation to vary behavior
175 // operation specified. Process all modifiers and check to make sure that
176 // constraints on modifier/operation pairs have not been violated.
187 // Keep track of which operation was requested
188 ArchiveOperation Operation;
194 case 'd': ++NumOperations; Operation = Delete; break;
195 case 'm': ++NumOperations; Operation = Move ; break
    [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...]
  /external/chromium_org/chrome/browser/profile_resetter/
jtl_interpreter.cc 21 // An operation in an interpreted program.
22 class Operation {
24 virtual ~Operation() {}
25 // Executes the operation on the specified context and instructs the context
38 const std::vector<Operation*>& sentence,
59 Operation* op = sentence_[next_instruction_index_];
96 const std::vector<Operation*> sentence_;
110 class NavigateOperation : public Operation {
119 // If this NavigateOperation occurred after a NavigateAny operation, those
141 class NavigateAnyOperation : public Operation {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathVisitor.java 28 import org.apache.xpath.operations.Operation;
105 * Visit a binary operation.
108 * @param op The operation object.
111 public boolean visitBinaryOperation(ExpressionOwner owner, Operation op)
117 * Visit a unary operation.
120 * @param op The operation object.
  /external/chromium/chrome/browser/sync/engine/
change_reorder_buffer.h 97 enum Operation {
103 typedef std::map<int64, Operation> OperationMap;
108 // operation that was associated with them.
  /external/chromium_org/content/browser/indexed_db/
indexed_db_transaction.cc 31 IndexedDBTransaction::Operation IndexedDBTransaction::TaskQueue::pop() {
33 Operation task(queue_.front());
46 IndexedDBTransaction::Operation IndexedDBTransaction::TaskStack::pop() {
48 Operation task(stack_.top());
88 void IndexedDBTransaction::ScheduleTask(Operation task, Operation abort_task) {
101 Operation task) {
300 Operation task(task_queue->pop());
  /external/openfst/src/script/
compose.cc 31 Apply<Operation<ComposeArgs1> >("Compose", ifst1.ArcType(), &args);
40 Apply<Operation<ComposeArgs2> >("Compose", ifst1.ArcType(), &args);
difference.cc 30 Apply<Operation<DifferenceArgs1> >("Difference", ifst1.ArcType(), &args);
39 Apply<Operation<DifferenceArgs2> >("Difference", ifst1.ArcType(), &args);
intersect.cc 30 Apply<Operation<IntersectArgs1> >("Intersect", ifst1.ArcType(), &args);
39 Apply<Operation<IntersectArgs2> >("Intersect", ifst1.ArcType(), &args);
push.cc 28 Apply<Operation<PushArgs1> >("Push", ofst->ArcType(), &args);
37 Apply<Operation<PushArgs2> >("Push", ifst.ArcType(), &args);
randequivalent.cc 33 Apply<Operation<RandEquivalentArgs1> >("RandEquivalent", fst1.ArcType(),
47 Apply<Operation<RandEquivalentArgs2> >(
shortest-path.cc 30 Apply<Operation<ShortestPathArgs1> >("ShortestPath", ifst.ArcType(), &args);
40 Apply<Operation<ShortestPathArgs2> >("ShortestPath", ifst.ArcType(), &args);
compile.cc 35 Apply<Operation<FstCompileArgs> >("CompileFst", arc_type, &args);
draw.cc 47 Apply<Operation<FstDrawerArgs> >("DrawFst", fst.ArcType(), &args);
print.cc 33 Apply<Operation<FstPrinterArgs> >("PrintFst", fst.ArcType(), &args);
replace.cc 37 Apply<Operation<ReplaceArgs> >("Replace", ofst->ArcType(), &args);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
And.java 28 * The 'and' operation expression executer.
30 public class And extends Operation
61 * Evaluate this operation directly to a boolean.
65 * @return The result of the operation as a boolean.
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.
Or.java 28 * The 'or' operation expression executer.
30 public class Or extends Operation
61 * Evaluate this operation directly to a boolean.
65 * @return The result of the operation as a boolean.
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
write_from_url_operation.h 9 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
26 class WriteFromUrlOperation : public Operation,
  /external/guava/guava-tests/test/com/google/common/collect/
ConcurrentHashMultisetBasherTest.java 116 Operation[] operations = Operation.values();
120 Operation op = operations[random.nextInt(operations.length)];
160 private enum Operation {
  /external/protobuf/src/google/protobuf/
wire_format.h 224 enum Operation {
230 static void VerifyUTF8String(const char* data, int size, Operation op);
237 Operation op);
293 WireFormat::Operation op) {
  /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...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
CalendarSyncParser.java 28 import com.android.exchange.adapter.AbstractSyncAdapter.Operation;
85 private static final Operation PLACEHOLDER_OPERATION =
86 new Operation(ContentProviderOperation.newInsert(Uri.EMPTY));
122 protected static class CalendarOperations extends ArrayList<Operation> {
143 public boolean add(Operation op) {
149 public int newEvent(Operation op) {
166 add(new Operation(ContentProviderOperation.newInsert(mAsSyncAdapterAttendees)
174 add(new Operation(ContentProviderOperation.newInsert(mAsSyncAdapterAttendees)
179 add(new Operation(ContentProviderOperation.newInsert(mAsSyncAdapterEvents)
184 add(new Operation(ContentProviderOperation.newInsert(mAsSyncAdapterExtendedProperties
    [all...]
  /external/chromium_org/net/disk_cache/
tracing_cache_backend.cc 40 typedef TracingCacheBackend::Operation Operation;
50 void RecordEvent(base::TimeTicks start_time, Operation op, RwOpExtra extra,
52 void EntryOpComplete(base::TimeTicks start_time, Operation op,
159 void EntryProxy::RecordEvent(base::TimeTicks start_time, Operation op,
164 void EntryProxy::EntryOpComplete(base::TimeTicks start_time, Operation op,
194 void TracingCacheBackend::RecordEvent(base::TimeTicks start_time, Operation op,
221 Operation op,
236 Operation op, base::TimeTicks start_time, const std::string& key,

Completed in 2988 milliseconds

1 2 34 5 6 7 8 9