HomeSort by relevance Sort by last modified time
    Searched refs:Operation (Results 51 - 75 of 146) sorted by null

1 23 4 5 6

  /external/openfst/src/script/
reverse.cc 29 Apply<Operation<ReverseArgs> >("Reverse", fst1.ArcType(), &args);
reweight.cc 28 Apply<Operation<ReweightArgs> >("Reweight", fst->ArcType(), &args);
synchronize.cc 28 Apply<Operation<SynchronizeArgs> >("Synchronize", ifst.ArcType(), &args);
union.cc 29 Apply<Operation<UnionArgs> >("Union", fst1->ArcType(), &args);
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);
  /frameworks/base/obex/javax/obex/
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/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/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/llvm/tools/llvm-ar/
llvm-ar.cpp 36 // llvm-ar operation code and modifier flags. This must come first.
38 Options(cl::Positional, cl::Required, cl::desc("{operation}[modifiers]..."));
57 "\nMODIFIERS (operation specific):\n"
79 NoOperation, ///< An operation hasn't been specified
89 // Modifiers to follow operation to vary behavior
191 // operation specified. Process all modifiers and check to make sure that
192 // constraints on modifier/operation pairs have not been violated.
203 // Keep track of which operation was requested
204 ArchiveOperation Operation = NoOperation;
208 case 'd': ++NumOperations; Operation = Delete; break
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/context/
RTree.h 41 RecordingData(GraphicsOperation::Operation* ops, size_t orderBy)
46 m_operation->~Operation();
50 GraphicsOperation::Operation* m_operation;
  /external/webkit/Source/WebKit2/Platform/
Region.cpp 234 template<typename Operation>
237 COMPILE_ASSERT(!(!Operation::shouldAddRemainingSegmentsFromSpan1 && Operation::shouldAddRemainingSegmentsFromSpan2), invalid_segment_combination);
238 COMPILE_ASSERT(!(!Operation::shouldAddRemainingSpansFromShape1 && Operation::shouldAddRemainingSpansFromShape2), invalid_span_combination);
241 if (Operation::trySimpleOperation(shape1, shape2, result))
300 if (flag == Operation::opCode || oldFlag == Operation::opCode)
307 if (Operation::shouldAddRemainingSegmentsFromSpan1 && s1 != segments1End)
309 else if (Operation::shouldAddRemainingSegmentsFromSpan2 && s2 != segments2End
    [all...]
  /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/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 {

Completed in 1282 milliseconds

1 23 4 5 6