Searched refs:immediate (Results 1 - 25 of 93) sorted by relevance

1234

/external/v8/src/
H A Dcode.h38 // either registers or immediate values. Used to make sure that the
45 explicit ParameterCount(int immediate) argument
46 : reg_(no_reg), immediate_(immediate) { }
55 int immediate() const { function in class:v8::internal::BASE_EMBEDDED
/external/webkit/Source/WebCore/platform/
H A DHostWindow.h41 // Requests the host invalidate the window, not the contents. If immediate is true do so synchronously, otherwise async.
42 virtual void invalidateWindow(const IntRect& updateRect, bool immediate) = 0;
44 // Requests the host invalidate the contents and the window. If immediate is true do so synchronously, otherwise async.
45 virtual void invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) = 0;
51 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) = 0;
/external/skia/legacy/src/animator/
H A DSkAnimateActive.h27 bool draw() { return immediate(false); }
28 bool enable() { return immediate(true); }
41 bool immediate(bool enable);
72 SkMSec fMaxTime; // greatest of all animation durations; only used by immediate mode
/external/skia/src/animator/
H A DSkAnimateActive.h27 bool draw() { return immediate(false); }
28 bool enable() { return immediate(true); }
41 bool immediate(bool enable);
72 SkMSec fMaxTime; // greatest of all animation durations; only used by immediate mode
/external/llvm/test/MC/ARM/
H A Ddiagnostics.s12 @ Out of range shift immediate values.
23 @ CHECK-ERRORS: error: invalid immediate shift value
26 @ CHECK-ERRORS: error: immediate shift value out of range
29 @ CHECK-ERRORS: error: immediate shift value out of range
32 @ CHECK-ERRORS: error: immediate shift value out of range
35 @ CHECK-ERRORS: error: immediate shift value out of range
38 @ CHECK-ERRORS: error: immediate shift value out of range
41 @ CHECK-ERRORS: error: immediate shift value out of range
44 @ CHECK-ERRORS: error: immediate shift value out of range
47 @ CHECK-ERRORS: error: immediate shif
[all...]
H A Darm-memory-instructions.s12 @ LDR (immediate)
59 @ LDRB (immediate)
113 @ LDRD (immediate)
156 @ LDRH (immediate)
205 @ LDRSB (immediate)
255 @ LDRSH (immediate)
304 @ STR (immediate)
346 @ STRB (immediate)
402 @ STRD (immediate)
440 @ STRH (immediate)
[all...]
H A Dthumb2-diagnostics.s43 @ CHECK-ERRORS: error: immediate operand must be in the range [0,15]
44 @ CHECK-ERRORS: error: immediate operand must be in the range [0,15]
H A Dbasic-thumb-instructions.s31 @ ADD (immediate)
55 @ ADD (SP plus immediate)
95 @ ASR (immediate)
167 @ BL/BLX (immediate)
235 @ LDR (immediate)
274 @ LDRB (immediate)
294 @ LDRH (immediate)
324 @ LSL (immediate)
348 @ LSR (immediate)
372 @ MOV (immediate)
[all...]
H A Dthumb-diagnostics.s108 @ Out of range immediate for SVC instruction.
119 @ Out of range immediate for ADD SP instructions
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DChromeClientWx.cpp348 void ChromeClientWx::invalidateWindow(const IntRect& rect, bool immediate) argument
350 if (immediate)
354 void ChromeClientWx::invalidateContentsForSlowScroll(const IntRect& rect, bool immediate) argument
356 invalidateContentsAndWindow(rect, immediate);
359 void ChromeClientWx::invalidateContentsAndWindow(const IntRect& rect, bool immediate) argument
366 if (immediate) {
/external/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp171 /// immediate Value in the MCInst.
173 /// @param Value - The immediate Value, has had any PC adjustment made by
177 /// @param Offset - The byte offset to this immediate in the instruction
178 /// @param Width - The byte width of this immediate in the instruction
182 /// immediate in the instruction using the Address, Offset and Width. If that
185 /// returns zero and isBranch is true then a symbol look up for immediate Value
187 /// an MCExpr with the immediate Value is created. This function returns true
286 /// instruction and its immediate Value are used to determine the address
304 /// translateImmediate - Appends an immediate operand to an MCInst.
307 /// @param immediate
310 translateImmediate(MCInst &mcInst, uint64_t immediate, const OperandSpecifier &operand, InternalInstruction &insn, const MCDisassembler *Dis) argument
[all...]
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp585 // Operand 1 (optional) is an address or immediate.
586 // Operand 2 (optional) is an immediate.
590 HANDLE_OPTIONAL(immediate)
604 // Operand 3 (optional) is an immediate.
620 HANDLE_OPTIONAL(immediate)
626 // Operand 3 (optional) is an immediate.
641 HANDLE_OPTIONAL(immediate)
647 // Operand 3 (optional) is an immediate.
648 // Operand 4 (optional) is an immediate.
665 HANDLE_OPERAND(immediate)
[all...]
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DChromeClientWinCE.cpp238 void ChromeClientWinCE::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) argument
243 if (immediate)
247 void ChromeClientWinCE::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) argument
249 invalidateContentsAndWindow(updateRect, immediate);
/external/webkit/Source/WebCore/page/
H A DChrome.cpp70 void Chrome::invalidateWindow(const IntRect& updateRect, bool immediate) argument
72 m_client->invalidateWindow(updateRect, immediate);
75 void Chrome::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) argument
77 m_client->invalidateContentsAndWindow(updateRect, immediate);
80 void Chrome::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) argument
82 m_client->invalidateContentsForSlowScroll(updateRect, immediate);
/external/llvm/test/MC/Mips/
H A Dmips-expansions.s6 # Load immediate instructions
/external/replicaisland/src/com/replica/replicaisland/
H A DLevelSystem.java80 public void sendGameEvent(int type, int index, boolean immediate) { argument
81 if (immediate) {
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DChromeClientEfl.cpp486 void ChromeClientEfl::invalidateContents(const IntRect& updateRect, bool immediate) argument
491 void ChromeClientEfl::invalidateWindow(const IntRect& updateRect, bool immediate) argument
496 void ChromeClientEfl::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) argument
507 void ChromeClientEfl::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) argument
509 invalidateContentsAndWindow(updateRect, immediate);
/external/webkit/Source/WebCore/rendering/
H A DRenderView.h67 virtual void repaintViewRectangle(const IntRect&, bool immediate = false);
70 virtual void repaintRectangleInViewAndCompositedLayers(const IntRect&, bool immediate = false);
H A DRenderView.cpp267 void RenderView::repaintViewRectangle(const IntRect& ur, bool immediate) argument
276 m_frameView->repaintContentRectangle(ur, immediate);
288 obj->repaintRectangle(r, immediate);
292 void RenderView::repaintRectangleInViewAndCompositedLayers(const IntRect& ur, bool immediate) argument
297 repaintViewRectangle(ur, immediate);
/external/webkit/Source/WebKit/chromium/src/
H A DWebPopupMenuImpl.cpp283 void WebPopupMenuImpl::invalidateContentsAndWindow(const IntRect& paintRect, bool /*immediate*/)
291 void WebPopupMenuImpl::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) argument
293 invalidateContentsAndWindow(updateRect, immediate);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DChromeClientGtk.cpp376 void ChromeClient::invalidateWindow(const IntRect&, bool immediate) argument
381 if (immediate && m_pendingScrollInvalidations) {
388 void ChromeClient::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) argument
395 // We don't currently do immediate updates since they delay other UI elements.
396 //if (immediate)
401 void ChromeClient::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) argument
403 invalidateContentsAndWindow(updateRect, immediate);
/external/llvm/test/MC/MBlaze/
H A Dmblaze_imm.s4 # signed immediate value requiring more than 16-bits must be prefixed
7 # instruction to form a 32-bit immediate value.
/external/v8/src/arm/
H A Dassembler-arm-inl.h278 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) { argument
280 imm32_ = immediate;
/external/v8/src/mips/
H A Dassembler-mips-inl.h51 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) { argument
53 imm32_ = immediate;
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebChromeClient.cpp466 void WebChromeClient::invalidateWindow(const IntRect& windowRect, bool immediate) argument
469 m_webView->repaint(windowRect, false /*contentChanged*/, immediate, false /*repaintContentOnly*/);
472 void WebChromeClient::invalidateContentsAndWindow(const IntRect& windowRect, bool immediate) argument
475 m_webView->repaint(windowRect, true /*contentChanged*/, immediate /*immediate*/, false /*repaintContentOnly*/);
478 void WebChromeClient::invalidateContentsForSlowScroll(const IntRect& windowRect, bool immediate) argument
481 m_webView->repaint(windowRect, true /*contentChanged*/, immediate, true /*repaintContentOnly*/);

Completed in 861 milliseconds

1234