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

1 2 3 4 5 6

  /libcore/luni/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 30 import org.apache.xpath.operations.Div;
31 import org.apache.xpath.operations.Minus;
32 import org.apache.xpath.operations.Mod;
33 import org.apache.xpath.operations.Mult;
34 import org.apache.xpath.operations.Plus;
35 import org.apache.xpath.operations.Quo;
36 import org.apache.xpath.operations.Variable;
109 (pred instanceof org.apache.xpath.operations.Number) ||
  /libcore/luni/src/main/java/org/apache/harmony/nio/internal/
SelectionKeyImpl.java 44 public SelectionKeyImpl(AbstractSelectableChannel channel, int operations,
47 interestOps = operations;
72 public SelectionKey interestOps(int operations) {
74 if ((operations & ~(channel().validOps())) != 0) {
78 interestOps = operations;
  /libcore/luni/src/main/java/java/nio/channels/
SelectableChannel.java 112 * {@link SelectionKey interest set} is updated to {@code operations}. The
123 * {@code register(selector, operations, null)}.
127 * @param operations
142 public final SelectionKey register(Selector selector, int operations)
144 return register(selector, operations, null);
184 * Gets the set of valid {@link SelectionKey operations} of this channel.
187 * @return the set of operations that this channel supports.
SelectionKey.java 24 * set represent categories of operations for a key's channel: Accepting socket
28 * The interest set is an operation set that defines the operations that a
31 * The ready set is an operation set that shows the operations that a
37 * Interest set mask bit for socket-accept operations.
42 * Interest set mask bit for socket-connect operations.
47 * Interesting operation mask bit for read operations.
52 * Interest set mask bit for write operations.
126 * @param operations
130 * if a bit in {@code operations} is not in the set of
131 * {@link SelectableChannel#validOps() valid operations} of thi
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/operations/
String.java 21 package org.apache.xpath.operations;
Gt.java 21 package org.apache.xpath.operations;
Gte.java 21 package org.apache.xpath.operations;
Lt.java 21 package org.apache.xpath.operations;
Lte.java 21 package org.apache.xpath.operations;
NotEquals.java 21 package org.apache.xpath.operations;
Quo.java 21 package org.apache.xpath.operations;
Bool.java 21 package org.apache.xpath.operations;
Div.java 21 package org.apache.xpath.operations;
Minus.java 21 package org.apache.xpath.operations;
Mod.java 21 package org.apache.xpath.operations;
Mult.java 21 package org.apache.xpath.operations;
Neg.java 21 package org.apache.xpath.operations;
Number.java 21 package org.apache.xpath.operations;
  /system/core/include/cutils/
atomic-inline.h 22 * operations. These are intended for rare circumstances where a
49 #error atomic operations are unsupported
  /external/webkit/WebCore/platform/graphics/transforms/
TransformOperations.h 60 Vector<RefPtr<TransformOperation> >& operations() { return m_operations; } function in class:WebCore::TransformOperations
61 const Vector<RefPtr<TransformOperation> >& operations() const { return m_operations; } function in class:WebCore::TransformOperations
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/test_utils/
ImportTestResolver.java 36 ArrayList<ContentProviderOperation> operations) {
38 return mProvider.applyBatch(operations);
  /libcore/luni/src/main/java/org/apache/xpath/
XPathVisitor.java 28 import org.apache.xpath.operations.Operation;
29 import org.apache.xpath.operations.UnaryOperation;
30 import org.apache.xpath.operations.Variable;
  /external/webkit/WebCore/css/
WebKitCSSMatrix.cpp 74 TransformOperations operations; local
75 if (!CSSStyleSelector::createTransformOperations(val.get(), 0, 0, operations)) {
80 // Convert transform operations to a TransformationMatrix. This can fail
83 for (unsigned i = 0; i < operations.operations().size(); ++i) {
84 if (operations.operations()[i].get()->apply(t, IntSize(0, 0))) {
  /frameworks/base/tools/preload/
LoadedClass.java 30 /** Load operations. */
33 /** Static initialization operations. */
83 /** Calculates the median duration for a list of operations. */
84 private static int calculateMedian(List<Operation> operations) {
85 int size = operations.size();
92 times[i] = operations.get(i).exclusiveTimeMicros();
  /libcore/luni/src/main/java/org/apache/xalan/templates/
VarNameCollector.java 28 import org.apache.xpath.operations.Variable;

Completed in 286 milliseconds

1 2 3 4 5 6