/dalvik/libcore/xml/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) ||
|
/dalvik/libcore/nio/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;
|
/dalvik/libcore/nio/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 | 26 * set represent categories of operations for a key's channel: Accepting socket 30 * The interest set is an operation set that defines the operations that a 33 * The ready set is an operation set that shows the operations that a 39 * Interest set mask bit for socket-accept operations. 44 * Interest set mask bit for socket-connect operations. 49 * Interesting operation mask bit for read operations. 54 * Interest set mask bit for write operations. 128 * @param operations 132 * if a bit in {@code operations} is not in the set of 133 * {@link SelectableChannel#validOps() valid operations} of thi [all...] |
/dalvik/libcore/xml/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;
|
Plus.java | 21 package org.apache.xpath.operations;
|
/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
|
/dalvik/libcore/xml/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();
|
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/ |
VarNameCollector.java | 28 import org.apache.xpath.operations.Variable;
|
/external/webkit/WebCore/page/animation/ |
ImplicitAnimation.cpp | 241 if (val->operations().isEmpty()) 244 if (val->operations().isEmpty()) 250 if (!toVal->operations().isEmpty()) { 252 if (val->operations().size() != toVal->operations().size()) 256 for (size_t j = 0; j < val->operations().size(); ++j) { 257 if (!val->operations()[j]->isSameType(*toVal->operations()[j]))
|