HomeSort by relevance Sort by last modified time
    Searched defs:page (Results 101 - 125 of 381) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/renderer_host/
render_process_host_chrome_browsertest.cc 69 base::ProcessHandle ShowSingletonTab(const GURL& page) {
70 chrome::ShowSingletonTab(browser(), page); local
72 CHECK(wc->GetURL() == page);
96 // Change the first tab to be the omnibox page (TYPE_WEBUI).
189 // Change the first tab to be the new tab page (TYPE_WEBUI).
246 // Change the first tab to be the omnibox page (TYPE_WEBUI).
263 // Navigate back to first page. It should be foreground again, and the second
  /external/chromium_org/chrome/browser/ui/app_list/
extension_app_item.cc 150 syncer::StringOrdinal page; local
154 page = sorting->GetPageOrdinal(next_id);
157 page = sorting->GetPageOrdinal(prev_id);
160 page = sorting->GetPageOrdinal(prev_id);
161 // Only set |next_id| if on the same page, otherwise just insert after prev.
162 if (page.Equals(sorting->GetPageOrdinal(next->extension_id())))
166 sorting->SetPageOrdinal(extension_id_, page);
282 const syncer::StringOrdinal& page = local
287 page.ToInternalValue() + launch.ToInternalValue()));
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControls.cpp 82 Page* page = document().page(); local
83 if (!page)
124 Page* page = document().page(); local
125 if (!page)
322 Page* page = document().page()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.h 57 class Page;
78 static PassOwnPtr<InspectorPageAgent> create(InstrumentingAgents*, Page*, InspectorCompositeState*, InjectedScriptManager*, InspectorClient*, InspectorOverlay*);
85 static TypeBuilder::Page::ResourceType::Enum resourceTypeJson(ResourceType);
87 static TypeBuilder::Page::ResourceType::Enum cachedResourceTypeJson(const Resource&);
89 // Page API for InspectorFrontend
96 virtual void getNavigationHistory(ErrorString*, int*, RefPtr<TypeBuilder::Array<TypeBuilder::Page::NavigationEntry> >&);
98 virtual void getCookies(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> >& cookies);
100 virtual void getResourceTree(ErrorString*, RefPtr<TypeBuilder::Page::FrameResourceTree>&);
102 virtual void searchInResource(ErrorString*, const String& frameId, const String& url, const String& query, const bool* optionalCaseSensitive, const bool* optionalIsRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> >&);
118 virtual void captureScreenshot(ErrorString*, const String* format, const int* quality, const int* maxWidth, const int* maxHeight, String* data, RefPtr<TypeBuilder::Page::ScreencastFrameMetadata>& out_metadata)
165 Page* page() { return m_page; } function in class:WebCore::InspectorPageAgent
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextRunRenderingContext.cpp 227 GlyphPage* page = pair.second; local
228 ASSERT(page);
233 page->setGlyphDataForCharacter(character, 0, 0);
241 page->setGlyphDataForCharacter(character, glyphData.glyph, originalFontData);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
InternalSettings.h 42 class Page;
74 static PassRefPtr<InternalSettings> create(Page* page)
76 return adoptRef(new InternalSettings(page));
78 static InternalSettings* from(Page*);
123 explicit InternalSettings(Page*);
126 Page* page() const { return m_page; } function in class:WebCore::InternalSettings
129 Page* m_page;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
user.py 147 def page(self, message): member in class:User
  /external/chromium_org/third_party/skia/src/utils/mac/
SkCreateCGImageRef.cpp 201 CGPDFPageRef page = CGPDFDocumentGetPage(pdf, 1); local
202 if (NULL == page) {
206 CGRect bounds = CGPDFPageGetBoxRect(page, kCGPDFMediaBox);
227 CGContextDrawPDFPage(ctx, page);
  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.h 263 int * page = &bins[keybit*pagesize]; local
277 int * b = &page[(out1*hashbits+out2)*4];
296 int * page = &bins[keybit*pagesize]; local
297 int * bins = &page[(out1*hashbits+out2)*4];
  /external/oprofile/module/
op_dname.c 94 ulong page, pos; local
102 page = kvirt_to_pa(pos);
103 if (remap_page_range(start, page, PAGE_SIZE, PAGE_SHARED))
  /external/skia/src/utils/mac/
SkCreateCGImageRef.cpp 201 CGPDFPageRef page = CGPDFDocumentGetPage(pdf, 1); local
202 if (NULL == page) {
206 CGRect bounds = CGPDFPageGetBoxRect(page, kCGPDFMediaBox);
227 CGContextDrawPDFPage(ctx, page);
  /frameworks/base/core/jni/android/graphics/pdf/
PdfDocument.cpp 61 PageRecord* page = new PageRecord(width, height, contentRect); local
62 mPages.push_back(page);
63 mCurrentPage = page;
65 SkCanvas* canvas = page->mPicture->beginRecording(
85 PageRecord* page = mPages[i]; local
87 SkCanvas* canvas = document->beginPage(page->mWidth, page->mHeight,
88 &(page->mContentRect));
90 canvas->clipRect(page->mContentRect);
91 canvas->translate(page->mContentRect.left(), page->mContentRect.top())
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
dynamic_loader.h 348 u16 page; /* memory page or view */ member in struct:LDR_SECTION_INFO
351 uint16_t page; /* memory page or view */ member in struct:LDR_SECTION_INFO
357 /* u16 page;*/ /* memory page or view */
360 /* uint16_t page;*//* memory page or view */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringAction.java 62 * actual resource file. By looking at the Active Window > Active Page > Active Editor we
145 IWorkbenchPage page = wwin.getActivePage(); local
146 if (page != null) {
147 return page.getActiveEditor();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlCharacterMatcherTest.java 107 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); local
108 assertNotNull(page);
109 IEditorPart editor = IDE.openEditor(page, file);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RefactoringAssistantTest.java 75 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); local
76 assertNotNull(page);
77 IEditorPart editor = IDE.openEditor(page, file);
  /external/chromium/chrome/browser/extensions/
extension_web_ui.cc 246 std::string page = url->host(); local
248 if (!overrides || !overrides->GetList(page, &url_list))
263 UnregisterChromeURLOverride(page, profile, val);
269 UnregisterChromeURLOverride(page, profile, val);
280 UnregisterChromeURLOverride(page, profile, val);
344 void ExtensionWebUI::UnregisterAndReplaceOverride(const std::string& page,
356 if (!url.SchemeIs(chrome::kChromeUIScheme) || url.host() != page)
367 void ExtensionWebUI::UnregisterChromeURLOverride(const std::string& page,
375 if (!all_overrides->GetList(page, &page_overrides)) {
380 UnregisterAndReplaceOverride(page, profile, page_overrides, override)
394 const std::string& page = iter->first; local
    [all...]
  /external/chromium/chrome/browser/ui/webui/
history2_ui.cc 252 history::URLResult const &page = (*results)[i]; member in class:history
254 SetURLAndTitle(page_value, page.title(), page.url());
258 static_cast<int>(page.visit_time().ToTimeT()));
268 string16 date_str = TimeFormat::RelativeDate(page.visit_time(),
271 date_str = base::TimeFormatFriendlyDate(page.visit_time());
276 base::TimeFormatFriendlyDate(page.visit_time()));
280 base::TimeFormatTimeOfDay(page.visit_time()));
283 base::TimeFormatShortDate(page.visit_time()));
284 page_value->SetString("snippet", page.snippet().text())
    [all...]
history_ui.cc 252 history::URLResult const &page = (*results)[i]; member in class:history
254 SetURLAndTitle(page_value, page.title(), page.url());
258 static_cast<int>(page.visit_time().ToTimeT()));
268 string16 date_str = TimeFormat::RelativeDate(page.visit_time(),
271 date_str = base::TimeFormatFriendlyDate(page.visit_time());
276 base::TimeFormatFriendlyDate(page.visit_time()));
280 base::TimeFormatTimeOfDay(page.visit_time()));
283 base::TimeFormatShortDate(page.visit_time()));
284 page_value->SetString("snippet", page.snippet().text())
    [all...]
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwViewportTest.java 66 final String page = "<html><head>" + local
75 loadDataSync(awContents, onPageFinishedHelper, page, "text/html", false);
92 final String page = "<html><head>" + local
101 loadDataSync(awContents, onPageFinishedHelper, page, "text/html", false);
108 loadDataSync(awContents, onPageFinishedHelper, page, "text/html", false);
181 final String page = String.format("<html><head>" + local
193 loadDataSync(awContents, onPageFinishedHelper, page, "text/html", false);
212 final String page = String.format("<html><head>" + local
221 loadDataSync(awContents, onPageFinishedHelper, page, "text/html", false);
242 final String page = String.format(pageTemplate, 1) local
274 final String page = "<html><head>" + local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_web_ui.cc 67 // Reloads the page in |web_contents| if it uses the same profile as |profile|
70 const std::string& page, Profile* profile, WebContents* web_contents) {
75 if (!url.SchemeIs(chrome::kChromeUIScheme) || url.host() != page)
184 std::string page = url->host(); local
186 if (!overrides || !overrides->GetList(page, &url_list))
201 UnregisterChromeURLOverride(page, profile, val);
212 UnregisterChromeURLOverride(page, profile, val);
224 UnregisterChromeURLOverride(page, profile, val);
324 void ExtensionWebUI::UnregisterAndReplaceOverride(const std::string& page,
334 base::Bind(&UnregisterAndReplaceOverrideForWebContents, page, profile)
368 const std::string& page = iter->first; local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
sync_setup_handler_unittest.cc 309 // Setup the expectations for calls made when displaying the config page.
344 std::string page; local
345 ASSERT_TRUE(data.arg1->GetAsString(&page));
346 EXPECT_EQ(page, "configure");
353 std::string page; local
354 ASSERT_TRUE(data.arg1->GetAsString(&page));
355 EXPECT_EQ(page, "done");
364 std::string page; local
365 ASSERT_TRUE(data.arg1->GetAsString(&page));
366 EXPECT_EQ(page, "spinner")
491 std::string page; local
569 std::string page; local
    [all...]
  /external/chromium_org/chrome/common/extensions/
manifest_url_handler.cc 242 // Validate path to the options page. Don't check the URL for hosted apps,
283 std::string page = iter.key(); local
286 bool is_override = (page != chrome::kChromeUINewTabHost &&
287 page != chrome::kChromeUIBookmarksHost &&
288 page != chrome::kChromeUIHistoryHost);
291 page != chrome::kChromeUIActivationMessageHost);
294 is_override = (is_override && page != keyboard::kKeyboardWebUIHost);
299 page == chrome::kChromeUIEnhancedBookmarksHost));
307 url_overrides->chrome_url_overrides_[page] = extension->GetResourceURL(val);
314 page.c_str())
    [all...]
  /external/chromium_org/components/dom_distiller/core/
dom_distiller_store_unittest.cc 87 ArticleEntryPage* page = entry.add_pages(); local
88 page->set_url(page_url1);
91 ArticleEntryPage* page = entry.add_pages(); local
92 page->set_url(page_url2);
95 ArticleEntryPage* page = entry.add_pages(); local
96 page->set_url(page_url3);
  /external/chromium_org/printing/android/java/src/org/chromium/printing/
PrintingControllerImpl.java 215 // onLayout going on. Use the last known valid page count.
230 // This method might be called even after onFinish, e.g. as a result of a long page
350 int page = pagesArray[i]; local
351 pageRanges[i] = new PageRange(page, page);
361 * Gets an array of page ranges and returns an array of integers with all ranges expanded.

Completed in 307 milliseconds

1 2 3 45 6 7 8 91011>>