Searched defs:title (Results 126 - 150 of 413) sorted by relevance

1234567891011>>

/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
H A DAbstractReportMojo.java46 String title; field in class:AbstractReportMojo
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
H A DHTMLElement.java91 * Creates a 'title' element.
93 * @return 'title' element
97 public HTMLElement title() throws IOException { method in class:HTMLElement
98 return element("title");
361 * value of the title and alt attribute
371 img.attr("title", titleattr);
/external/jdiff/src/jdiff/
H A DDiff.java23 String id, String title) {
32 generateDiffs(pkgName, className, oldDoc, newDoc, id, title);
44 String id, String title) {
51 String text = "<A NAME=\"" + id + "\"></A>" + title + "<br><br>";
57 docDiffs.add(new DiffOutput(pkgName, className, id, title, text));
354 // The right hand side title
486 // The right hand side title
21 saveDocDiffs(String pkgName, String className, String oldDoc, String newDoc, String id, String title) argument
42 generateDiffs(String pkgName, String className, String oldDoc, String newDoc, String id, String title) argument
/external/libcups/cups/
H A Dtestipp.c229 void hex_dump(const char *title, ipp_uchar_t *buffer, size_t bytes);
751 hex_dump(const char *title, /* I - Title */ argument
763 printf(" %s:\n", title);
/external/libnl/python/netlink/
H A Dutil.py69 def title(t): function
96 title_ = d.get('title', None)
111 # title mode ("TITLE ATTR")
125 title_ = key # fall back to key as title
/external/llvm/docs/
H A Dconf.py108 # A shorter title for the navigation bar. Default is the same as html_title.
184 # (source start file, target name, title, author, documentclass [howto/manual]).
191 # the title page.
231 title = f.readline().rstrip('\n') variable
234 if len(header) != len(title):
236 "error: invalid header in %r (does not match title)" % (
238 if ' - ' not in title:
240 ("error: invalid title in %r "
244 # Split the name out of the title.
245 name,description = title
[all...]
/external/lzma/CPP/7zip/Bundles/SFXSetup/
H A DExtractEngine.cpp121 UString title; local
122 LangString(IDS_PROGRESS_EXTRACTING, title);
123 t.ExtractCallbackSpec->StartProgressDialog(title, thread);
/external/lzma/CPP/7zip/UI/FileManager/
H A DProgressDialog.cpp122 UString title = s; local
123 title += L"% ";
124 SetText(title + _title);
126 AddToTitle(title + MainAddTitle);
/external/lzma/CPP/7zip/UI/GUI/
H A DExtractGUI.cpp248 UString title = LangString(options.TestMode ? IDS_PROGRESS_TESTING : IDS_PROGRESS_EXTRACTING); local
250 extracter.Title = title;
268 RINOK(extracter.Create(title, hwndParent));
/external/lzma/CPP/Windows/
H A DShell.cpp145 bool BrowseForFolder(HWND /* owner */, LPCTSTR /* title */,
158 return MyGetOpenFileName(owner, title, initialFolder, s, resultPath, true);
206 bool BrowseForFolder(HWND owner, LPCTSTR title, UINT ulFlags, argument
218 browseInfo.lpszTitle = (LPCSTR)title;
222 browseInfo.lpszTitle = title;
230 bool BrowseForFolder(HWND owner, LPCTSTR title, argument
233 return BrowseForFolder(owner, title,
304 static bool BrowseForFolder(HWND owner, LPCWSTR title, UINT ulFlags, argument
312 browseInfo.lpszTitle = title;
319 bool BrowseForFolder(HWND owner, LPCWSTR title, LPCWST argument
[all...]
/external/pdfium/fpdfsdk/
H A Dfpdfdoc_embeddertest.cpp168 // The non-existent top-level bookmark has no title.
180 // The existent top-level bookmark has no title.
203 // Find the first one, based on its known title.
204 std::unique_ptr<unsigned short, pdfium::FreeDeleter> title = local
206 FPDF_BOOKMARK child = FPDFBookmark_Find(document(), title.get());
217 // Try to find one using a non-existent title.
228 // Try to find a title.
229 std::unique_ptr<unsigned short, pdfium::FreeDeleter> title = local
231 EXPECT_EQ(nullptr, FPDFBookmark_Find(document(), title.get()));
/external/python/cpython2/Lib/distutils/command/
H A Dbdist_msi.py28 """Dialog(database, name, x, y, w, h, attributes, title, first,
36 def title(self, title): member in class:PyDialog
37 "Set the title text of the dialog at the top."
41 r"{\VerdanaBold10}%s" % title)
43 def back(self, title, next, name = "Back", active = 1):
44 """Add a back button with a given title, the tab-next button,
52 return self.pushbutton(name, 180, self.h-27 , 56, 17, flags, title, next)
54 def cancel(self, title, next, name = "Cancel", active = 1):
55 """Add a cancel button with a given title, th
[all...]
/external/python/cpython2/Lib/idlelib/
H A DGrepDialog.py24 title = "Find in Files Dialog" variable in class:GrepDialog
137 root.title("Test GrepDialog")
/external/python/cpython2/Objects/
H A Dunicodectype.c28 const Py_UNICODE title; member in struct:__anon19603
60 int delta = ctype->title;
/external/python/cpython3/Lib/distutils/command/
H A Dbdist_msi.py26 """Dialog(database, name, x, y, w, h, attributes, title, first,
35 def title(self, title): member in class:PyDialog
36 "Set the title text of the dialog at the top."
40 r"{\VerdanaBold10}%s" % title)
42 def back(self, title, next, name = "Back", active = 1):
43 """Add a back button with a given title, the tab-next button,
51 return self.pushbutton(name, 180, self.h-27 , 56, 17, flags, title, next)
53 def cancel(self, title, next, name = "Cancel", active = 1):
54 """Add a cancel button with a given title, th
[all...]
/external/python/cpython3/Lib/idlelib/
H A Dgrep.py25 title = "Find in Files Dialog" variable in class:GrepDialog
137 top.title("Test GrepDialog")
H A Dreplace.py26 title = "Replace Dialog" variable in class:ReplaceDialog
211 box.title("Test ReplaceDialog")
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowDialog.java36 protected CharSequence title; field in class:ShadowDialog
/external/skia/gm/
H A Demptypath.cpp69 const char title[] = "Empty Paths Drawn Into Rectangle Clips With " local
71 canvas->drawString(title,
H A Dlinepaths.cpp85 const char* title = doClose ? titleClose : titleNoClose; local
86 canvas->drawString(title,
H A Dquadpaths.cpp91 const char title[] = "Quad Drawn Into Rectangle Clips With " variable
93 canvas->drawString(title,
232 const char title[] = "Quad Closed Drawn Into Rectangle Clips With " variable
234 canvas->drawString(title,
/external/skia/tools/sk_app/ios/
H A DWindow_ios.cpp253 void Window_ios::setTitle(const char* title) { argument
254 SDL_SetWindowTitle(fWindow, title);
/external/skia/tools/sk_app/mac/
H A DWindow_mac.cpp253 void Window_mac::setTitle(const char* title) { argument
254 SDL_SetWindowTitle(fWindow, title);
/external/skqp/gm/
H A Demptypath.cpp69 const char title[] = "Empty Paths Drawn Into Rectangle Clips With " local
71 canvas->drawString(title,
H A Dlinepaths.cpp85 const char* title = doClose ? titleClose : titleNoClose; local
86 canvas->drawString(title,

Completed in 556 milliseconds

1234567891011>>