Home
last modified time | relevance | path

Searched refs:page (Results 201 - 225 of 488) sorted by relevance

12345678910>>...20

/third_party/cups-filters/filter/pdftopdf/
H A Dqpdf_pdftopdf.h13 Rotation getRotate(QPDFObjectHandle page);
16 double getUserUnit(QPDFObjectHandle page);
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_log.h37 * take out the current page using \ref u_log_new_page and dump it to a file.
99 u_log_page_destroy(struct u_log_page *page);
102 u_log_page_print(struct u_log_page *page, FILE *stream);
/third_party/skia/third_party/externals/piex/src/binary_parse/
H A Dcached_paged_byte_array.h46 PagedByteArray::PagePtr* page) const;
51 PagedByteArray::PagePtr page; member
60 // Gets the index of the page if it is in the cache and returns true, else
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/
H A Dfrontend_delegate_impl.h365 void OnPageReady(const RefPtr<Framework::JsAcePage>& page, const std::string& url, bool isMainPage);
366 void FlushPageCommand(const RefPtr<Framework::JsAcePage>& page, const std::string& url, bool isMainPage);
367 void AddPageLocked(const RefPtr<JsAcePage>& page);
369 void SetCurrentReadyPage(const WeakPtr<JsAcePage>& page) in SetCurrentReadyPage() argument
371 currentReadyPage_ = page; in SetCurrentReadyPage()
374 void OnPushPageSuccess(const RefPtr<JsAcePage>& page, const std::string& url);
380 void PushPageTransitionListener(const TransitionEvent& event, const RefPtr<JsAcePage>& page);
389 void OnReplacePageSuccess(const RefPtr<JsAcePage>& page, const std::string& url);
390 void ReplacePage(const RefPtr<JsAcePage>& page, const std::string& url);
/third_party/python/Lib/idlelib/
H A Dconfig.py783 page -- one of the 4 top-level dicts representing a
785 config_type -- name of a page.
786 section -- a section within a page/file.
796 clear: Clear all changes by clearing each page.
799 "Create a page for each configuration file"
807 page = self[config_type]
809 if section not in page:
810 page[section] = {}
811 page[section][item] = value
837 page
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H A Djsi_animation_bridge.h80 void JsCreateAnimation(const RefPtr<JsAcePage>& page, const std::string& param);
98 void AnimationBridgeTaskFunc(const RefPtr<JsAcePage>& page, NodeId nodeId) override;
111 void AnimationBridgeTaskFunc(const RefPtr<JsAcePage>& page, NodeId nodeId) override;
122 void AnimationBridgeTaskFunc(const RefPtr<JsAcePage>& page, NodeId nodeId) override;
H A Djsi_animator_bridge.h90 void AnimatorBridgeTaskFunc(const RefPtr<JsAcePage>& page, int32_t bridgeId) override;
103 void AnimatorBridgeTaskFunc(const RefPtr<JsAcePage>& page, int32_t bridgeId) override;
115 void AnimatorBridgeTaskFunc(const RefPtr<JsAcePage>& page, int32_t bridgeId) override;
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/input/
H A Ddom_radio_util.cpp33 auto page = frontend->GetPage(node.GetPageId()); in GetRadioGroups() local
34 if (!page) { in GetRadioGroups()
39 page = jsFrontend->GetCurrentReadyPage().Upgrade(); in GetRadioGroups()
41 auto jsPage = AceType::DynamicCast<JsAcePage>(page); in GetRadioGroups()
/third_party/backends/backend/
H A Dkvs1025_low.c542 CMD_read_pic_elements (PKV_DEV dev, int page, int side, in CMD_read_pic_elements() argument
557 hdr.cdb[4] = page; in CMD_read_pic_elements()
577 page, side == SIDE_FRONT ? "F" : "B", *width, *height); in CMD_read_pic_elements()
600 CMD_read_image (PKV_DEV dev, int page, int side, in CMD_read_image() argument
614 hdr.cdb[4] = page; in CMD_read_image()
739 /* Allocate image buffer for one page (1 or 2 sides) */
786 for the simplex page */
788 ReadImageDataSimplex (PKV_DEV dev, int page) in ReadImageDataSimplex() argument
804 status = CMD_read_image (dev, page, SIDE_FRONT, buffer, &size, &rs); in ReadImageDataSimplex()
849 for the duplex page */
851 ReadImageDataDuplex(PKV_DEV dev, int page) ReadImageDataDuplex() argument
948 ReadImageData(PKV_DEV dev, int page) ReadImageData() argument
[all...]
/third_party/nghttp2/src/
H A Dshrpx_http.cc42 for (const auto &page : error_pages) { in create_error_html()
43 if (page.http_status == 0 || page.http_status == http_status) { in create_error_html()
44 return StringRef{std::begin(page.content), std::end(page.content)}; in create_error_html()
/third_party/ltp/testcases/kernel/mce-test/kvm/host/
H A Dhost_run.sh223 gcc -o page-types ../../tools/page-types.c
225 cp page-types $mnt/$GUEST_DIR
308 ./page-types -p $QEMU_PID -LN -b anon | grep $HOST_VIRT > $host_tmp
376 rm -f ./simple_process ./page-types
/third_party/node/deps/v8/src/heap/
H A Dnew-spaces.h33 // A SemiSpace is a contiguous chunk of memory holding page-like memory chunks.
34 // The mark-compact collector uses the memory of the first page in the from
75 // Returns the start address of the first page of the space.
83 // Returns the start address of the current page of the space.
86 // Returns one past the end address of the current page of the space.
92 // that we need to account for the next page already for this check as we in AdvancePage()
93 // could potentially fill the whole page after advancing. in AdvancePage()
102 // Resets the space to using the first page.
105 void RemovePage(Page* page);
106 void PrependPage(Page* page);
358 MovePageFromSpaceToSpace(Page* page) MovePageFromSpaceToSpace() argument
[all...]
H A Dmark-compact.cc136 void VerifyMarkingOnPage(const Page* page, Address start, Address end);
149 void MarkingVerifier::VerifyMarkingOnPage(const Page* page, Address start, in VerifyMarkingOnPage() argument
154 LiveObjectRange<kAllLiveObjects>(page, bitmap(page))) { in VerifyMarkingOnPage()
166 CHECK(bitmap(page)->AllBitsSetInRange( in VerifyMarkingOnPage()
167 page->AddressToMarkbitIndex(current), in VerifyMarkingOnPage()
168 page->AddressToMarkbitIndex(next_object_must_be_here_or_later)) || in VerifyMarkingOnPage()
169 bitmap(page)->AllBitsClearInRange( in VerifyMarkingOnPage()
170 page->AddressToMarkbitIndex(current + kTaggedSize * 2), in VerifyMarkingOnPage()
171 page in VerifyMarkingOnPage()
186 Page* page = *(it++); VerifyMarking() local
374 Page* page = *(it++); VerifyEvacuation() local
736 EnsurePageIsSwept(Page* page) EnsurePageIsSwept() argument
1716 Page* page = Page::FromHeapObject(object); AbortCompactionForTesting() local
1857 Move(Page* page) Move() argument
4012 RecordLiveSlotsOnPage(Page* page) RecordLiveSlotsOnPage() argument
4706 ReportAbortedEvacuationCandidateDueToOOM( Address failed_start, Page* page) ReportAbortedEvacuationCandidateDueToOOM() argument
4713 ReportAbortedEvacuationCandidateDueToFlags( Address failed_start, Page* page) ReportAbortedEvacuationCandidateDueToFlags() argument
4722 ReRecordPage( Heap* heap, v8::internal::MarkCompactCollector::NonAtomicMarkingState* marking_state, Address failed_start, Page* page) ReRecordPage() argument
[all...]
H A Dheap-layout-tracer.cc69 for (ReadOnlyPage* page : heap->read_only_space()->pages()) { in PrintHeapLayout()
70 PrintBasicMemoryChunk(os, page, "ro_space"); in PrintHeapLayout()
/third_party/skia/experimental/tools/
H A Dmskp_parser.py32 print('page count: ', page_count)
38 for page in range(page_count):
39 print('page %3d\t' % page, end='')
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/
H A Dfrontend_delegate_declarative.h339 // Get the currently running JS page information in NG structure.
342 // Get the currently running JS page information in NG structure.
380 void OnPageReady(const RefPtr<Framework::JsAcePage>& page, const std::string& url, bool isMainPage, bool isRestore);
382 const RefPtr<Framework::JsAcePage>& page, const std::string& url, bool isMainPage, bool isRestore);
383 void AddPageLocked(const RefPtr<JsAcePage>& page);
384 void OnPrePageChange(const RefPtr<JsAcePage>& page);
387 void OnPushPageSuccess(const RefPtr<JsAcePage>& page, const std::string& url);
392 void RestorePopPage(const RefPtr<JsAcePage>& page, const std::string& url);
394 void PushPageTransitionListener(const TransitionEvent& event, const RefPtr<JsAcePage>& page);
401 const TransitionEvent& event, const std::string& url, const RefPtr<JsAcePage>& page);
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A DPoolAlloc.cpp74 // Don't allow page sizes we know are smaller than all common in TPoolAllocator()
75 // OS page sizes. in TPoolAllocator()
81 // A large currentPageOffset indicates a new page needs to in TPoolAllocator()
167 // Indicate there is no current page to allocate from. in push()
184 tHeader* page = stack.back().page; in pop()
187 while (inUseList != page) { in pop()
249 // Do a multi-page allocation. Don't mix these with the others. in allocate()
261 currentPageOffset = pageSize; // make next allocation come from a new page in allocate()
263 // No guard blocks for multi-page allocation in allocate()
[all...]
/third_party/skia/third_party/externals/microhttpd/doc/examples/
H A Dlargepost.c57 send_page (struct MHD_Connection *connection, const char *page, in send_page() argument
64 MHD_create_response_from_buffer (strlen (page), (void *) page, in send_page()
/third_party/cups-filters/filter/
H A Dimagetopdf.c53 XPosition = 0, /* Horizontal position on page */
54 YPosition = 0, /* Vertical position on page */
119 xpage, /* Current x page */
120 ypage, /* Current y page */
121 page; /* Current page number */ variable
122 static int xc0, yc0, /* Corners of the page in image coords */
419 /* empty page */ in outPageObject()
679 cups_page_header2_t h; /* CUPS Raster page header, to */ in main()
836 /* adjust to even page whe in main()
[all...]
/third_party/FreeBSD/stand/usb/
H A Dusb_busdma_loader.c69 struct usb_page *page; in usbd_get_page() local
81 /* compute destination page */ in usbd_get_page()
83 page = pc->page_start; in usbd_get_page()
87 page += (offset / USB_PAGE_SIZE); in usbd_get_page()
92 res->physaddr = page->physaddr + offset; in usbd_get_page()
95 res->physaddr = page->physaddr + offset; in usbd_get_page()
101 res->buffer = USB_ADD_BYTES(page->buffer, offset); in usbd_get_page()
283 /* setup page cache */ in usb_pc_alloc_mem()
299 /* reset most of the page cache */ in usb_pc_alloc_mem()
333 /* setup page cach in usb_pc_load_mem()
[all...]
/third_party/node/deps/v8/include/v8-include/cppgc/internal/
H A Dwrite-barrier.h15 #include "cppgc/internal/base-page-handle.h"
201 // We know that |value| points either within the normal page or to the in GetNoSlot()
202 // beginning of large-page, so extract the page header by bitmasking. in GetNoSlot()
203 BasePageHandle* page = in GetNoSlot()
206 HeapHandle& heap_handle = page->heap_handle(); in GetNoSlot()
248 // We know that |value| points either within the normal page or to the in BarrierEnabledGet()
249 // beginning of large-page, so extract the page header by bitmasking. in BarrierEnabledGet()
250 BasePageHandle* page in BarrierEnabledGet()
358 BasePageHandle* page = Get() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
H A Ddriver_roboswitch.c23 #define ROBO_MII_PAGE 0x10 /* MII page register */
27 #define ROBO_MII_PAGE_ENABLE 0x01 /* MII page op code */
34 #define ROBO_ARLCTRL_PAGE 0x04 /* ARL control page */
35 #define ROBO_VLAN_PAGE 0x34 /* VLAN page */
37 /* ARL control page registers */
44 /* VLAN page registers */
119 u8 page, u8 reg, u8 op) in wpa_driver_roboswitch_reg()
123 /* set page number */ in wpa_driver_roboswitch_reg()
125 (page << 8) | ROBO_MII_PAGE_ENABLE); in wpa_driver_roboswitch_reg()
141 u8 page, u in wpa_driver_roboswitch_read()
118 wpa_driver_roboswitch_reg(struct wpa_driver_roboswitch_data *drv, u8 page, u8 reg, u8 op) wpa_driver_roboswitch_reg() argument
140 wpa_driver_roboswitch_read(struct wpa_driver_roboswitch_data *drv, u8 page, u8 reg, u16 *val, int len) wpa_driver_roboswitch_read() argument
158 wpa_driver_roboswitch_write(struct wpa_driver_roboswitch_data *drv, u8 page, u8 reg, u16 *val, int len) wpa_driver_roboswitch_write() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
H A Ddriver_roboswitch.c23 #define ROBO_MII_PAGE 0x10 /* MII page register */
27 #define ROBO_MII_PAGE_ENABLE 0x01 /* MII page op code */
34 #define ROBO_ARLCTRL_PAGE 0x04 /* ARL control page */
35 #define ROBO_VLAN_PAGE 0x34 /* VLAN page */
37 /* ARL control page registers */
44 /* VLAN page registers */
119 u8 page, u8 reg, u8 op) in wpa_driver_roboswitch_reg()
123 /* set page number */ in wpa_driver_roboswitch_reg()
125 (page << 8) | ROBO_MII_PAGE_ENABLE); in wpa_driver_roboswitch_reg()
141 u8 page, u in wpa_driver_roboswitch_read()
118 wpa_driver_roboswitch_reg(struct wpa_driver_roboswitch_data *drv, u8 page, u8 reg, u8 op) wpa_driver_roboswitch_reg() argument
140 wpa_driver_roboswitch_read(struct wpa_driver_roboswitch_data *drv, u8 page, u8 reg, u16 *val, int len) wpa_driver_roboswitch_read() argument
158 wpa_driver_roboswitch_write(struct wpa_driver_roboswitch_data *drv, u8 page, u8 reg, u16 *val, int len) wpa_driver_roboswitch_write() argument
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/
H A Djsi_view_register_impl.cpp363 // update page life cycle function. in UpdateRootComponent()
397 auto page = weakPage.Upgrade(); in UpdateRootComponent()
398 if (custom && page) { in UpdateRootComponent()
400 NG::ViewStackProcessor::GetInstance()->SetPageNode(page); in UpdateRootComponent()
416 auto page = JsiDeclarativeEngineInstance::GetStagingPage(Container::CurrentId()); in UpdateRootComponent() local
420 LOGI("Loading page[%{public}d] root component: Setting pipeline to use %{public}s.", page->GetPageId(), in UpdateRootComponent()
430 page->SetRootComponent(rootComposed); in UpdateRootComponent()
433 page->SetPageTransition(pageTransitionComponent); in UpdateRootComponent()
436 page in UpdateRootComponent()
[all...]
/third_party/skia/src/pdf/
H A DSkPDFDocument.cpp252 // if this is the first page if the document. in onBeginPage()
270 // By scaling the page at the device level, we will create bitmap layer in onBeginPage()
358 auto page = SkPDFMakeDict("Page"); in onEndPage() local
366 page->insertObject("Resources", std::move(resourceDict)); in onEndPage()
367 page->insertObject("MediaBox", SkPDFUtils::RectToArray(SkRect::MakeSize(mediaSize))); in onEndPage()
370 page->insertObject("Annots", std::move(annotations)); in onEndPage()
374 page->insertRef("Contents", SkPDFStreamOut(nullptr, std::move(pageContent), this)); in onEndPage()
375 // The StructParents unique identifier for each page is just its in onEndPage()
376 // 0-based page index. in onEndPage()
377 page in onEndPage()
[all...]

Completed in 19 milliseconds

12345678910>>...20