HomeSort by relevance Sort by last modified time
    Searched refs:operation (Results 126 - 150 of 572) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/tools/common/eclipse/
org.eclipse.core.commands_3.4.0.I20080509-2000.jar 
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-core-commands/3.6.0/
org-eclipse-core-commands-3.6.0.jar 
  /external/webkit/LayoutTests/storage/
test-authorizer.js 34 function executeStatement(tx, statement, operation)
37 function(result) { statementSuccessCallback(operation); },
38 function(tx, error) { return statementErrorCallback(operation, error); });
50 // Even though the following query should trigger a SQLITE_CREATE_TEMP_INDEX operation
52 // of any other way to trigger this operation. So we'll skip it for now.
84 // so we cannot test this operation
124 // Test the 'CREATE TABLE' operation; it should be disallowed
  /hardware/qcom/display/liboverlay/
overlayMdp.cpp 219 if (data.operation & PP_PARAM_HSIC) {
259 mParams.operation |= PP_OP_PA;
263 if (data.operation & PP_PARAM_SHARP2) {
287 mParams.operation |= PP_OP_SHARP;
291 if (data.operation & PP_PARAM_IGC) {
313 mParams.operation |= PP_OP_IGC;
317 if (data.operation & PP_PARAM_VID_INTFC) {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_slice_header.c 580 u32 operation; local
628 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &operation);
631 if (operation > 6)
637 pDecRefPicMarking->operation[i].
638 memoryManagementControlOperation = operation;
639 if ((operation == 1) || (operation == 3))
644 pDecRefPicMarking->operation[i].differenceOfPicNums =
647 if (operation == 2)
652 pDecRefPicMarking->operation[i].longTermPicNum = value
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 123 * @param operation the operation type to use when notifying user data
129 private NodeImpl shallowCopy(short operation, Node node) {
170 AttrImpl elementAttrCopy = (AttrImpl) shallowCopy(operation, elementAttr);
171 notifyUserDataHandlers(operation, elementAttr, elementAttrCopy);
213 * @param operation either {@link UserDataHandler#NODE_CLONED} or
219 Node cloneOrImportNode(short operation, Node node, boolean deep) {
220 NodeImpl copy = shallowCopy(operation, node);
225 copy.appendChild(cloneOrImportNode(operation, list.item(i), deep));
229 notifyUserDataHandlers(operation, node, copy)
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGJITCodeGenerator.h 380 // to describe the result of an operation.
581 void callOperation(J_DFGOperation_EJP operation, GPRReg result, GPRReg arg1, void* pointer)
589 appendCallWithExceptionCheck(operation);
592 void callOperation(J_DFGOperation_EJI operation, GPRReg result, GPRReg arg1, Identifier* identifier)
594 callOperation((J_DFGOperation_EJP)operation, result, arg1, identifier);
596 void callOperation(J_DFGOperation_EJ operation, GPRReg result, GPRReg arg1)
603 appendCallWithExceptionCheck(operation);
606 void callOperation(Z_DFGOperation_EJ operation, GPRReg result, GPRReg arg1)
613 appendCallWithExceptionCheck(operation);
616 void callOperation(Z_DFGOperation_EJJ operation, GPRReg result, GPRReg arg1, GPRReg arg2
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.cpp 166 ALOGV("Applying operation[%d] %p->%s()", i, data->m_operation,
377 GraphicsOperation::Operation* op = node->m_operation;
399 GraphicsOperation::Operation* op = recordingData->m_operation;
465 GraphicsOperation::Operation* op = nodes[i]->m_operation;
755 GraphicsOperation::ClipPath* operation = NEW_OP(ClipPath)(pathToClip); local
756 operation->setWindRule(clipRule);
757 appendStateOperation(operation);
883 GraphicsOperation::FillRect* operation = NEW_OP(FillRect)(rect); local
884 operation->setColor(color);
885 appendDrawingOperation(operation, rect)
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebDragClient.cpp 157 DragOperation operation = DragOperationNone; local
160 operation = DragOperationCopy;
162 operation = DragOperationLink;
164 operation = DragOperationMove;
166 frame->eventHandler()->dragSourceEndedAt(generateMouseEvent(m_webView, false), operation); local
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ImportTestProvider.java 62 TestCase.fail("There is no operation.");
73 ContentProviderOperation operation = operations.get(i); local
74 ContentValues contentValues = operation.resolveValueBackReferences(
78 ContentProviderOperation operation = operations.get(i); local
79 ContentValues actualContentValues = operation.resolveValueBackReferences(
81 final Uri uri = operation.getUri();
  /frameworks/native/libs/ui/
Region.cpp 303 return operation(rhs, op_or);
306 return operation(rhs, op_xor);
309 return operation(rhs, op_and);
312 return operation(rhs, op_nand);
314 const Region Region::operation(const Rect& rhs, int op) const { function in class:android::Region
323 return operation(rhs, op_or);
326 return operation(rhs, op_xor);
329 return operation(rhs, op_and);
332 return operation(rhs, op_nand);
334 const Region Region::operation(const Region& rhs, int op) const function in class:android::Region
380 const Region Region::operation(const Region& rhs, int dx, int dy, int op) const { function in class:android::Region
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceWizard.java 110 * Show a refactoring dialog for the given resource refactoring operation
136 RefactoringWizardOpenOperation operation = new RefactoringWizardOpenOperation(wizard); local
138 int result = operation.run(parent, dialogTitle == null ? "" : dialogTitle);
139 RefactoringStatus status = operation.getInitialConditionCheckingStatus();
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 101 public void checkForEGLErrors(String operation) {
105 throw new RuntimeException("Operation '" + operation + "' caused EGL error: " + error);
  /external/openssl/crypto/asn1/
p8_pkey.c 64 /* Minor tweak to operation: zero private key data */
65 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
69 if(operation == ASN1_OP_FREE_PRE) {
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
userdatahandler01.js 99 var operation;
133 operation = notification.operation;
134 assertEquals("operationIsRename",4,operation);
userdatahandler02.js 99 var operation;
133 operation = notification.operation;
134 assertEquals("operationIsClone",1,operation);
  /external/webkit/Source/WebCore/platform/graphics/mac/
IconMac.mm 87 operation:NSCompositeSourceOver fraction:1.0f];
  /external/webkit/Source/WebKit/chromium/public/
WebView.h 220 WebDragOperation operation) = 0;
225 WebDragOperation operation) = 0;
227 // Notfies the WebView that the system drag and drop operation has ended.
230 // Callback methods when a drag-and-drop operation is trying to drop
  /libcore/luni/src/test/java/libcore/xml/
XsltXPathConformanceTestSuite.java 195 * <scenario operation="standard">
216 String operation = scenarioElement.getAttribute("operation"); local
251 if (!operation.equals("execution-error")) {
264 principalStylesheet, principal, operation, compareAs);
321 private final String operation; field in class:XsltXPathConformanceTestSuite.XsltTest
331 String operation, String compareAs) {
340 this.operation = operation;
381 if (operation.equals("standard"))
    [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/chrome/browser/ui/cocoa/tab_contents/
web_drop_target.h 40 // Sets the current operation negotiated by the source and destination,
43 - (void)setCurrentOperation: (NSDragOperation)operation;
  /external/e2fsprogs/intl/
plural-exp.h 47 module, /* Modulo operation. */
60 } operation; member in struct:expression
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
VisualDiffUtils.java 54 newDiffs.add(new diff_match_patch.Diff(diff.operation, parts[i] + "\n"));
57 newDiffs.add(new diff_match_patch.Diff(diff.operation, parts[lengthMinusOne]));
77 switch (diff.operation) {
118 switch (diff.operation) {
  /frameworks/native/include/ui/
FramebufferNativeWindow.h 72 static int perform(ANativeWindow* window, int operation, ...);

Completed in 2354 milliseconds

1 2 3 4 56 7 8 91011>>