/platform_testing/libraries/base-app-helpers/src/android/platform/test/helpers/ |
AbstractGoogleDocsHelper.java | 41 * @param title The title (case sensitive) of the document as is displayed in the app. 43 public abstract void openDoc(String title);
|
/prebuilts/go/darwin-x86/doc/articles/wiki/ |
final-noerror.go | 14 Title string 19 filename := p.Title + ".txt" 23 func loadPage(title string) (*Page, error) { 24 filename := title + ".txt" 29 return &Page{Title: title, Body: body}, nil 33 title := r.URL.Path[len("/edit/"):] 34 p, err := loadPage(title) 36 p = &Page{Title: title} [all...] |
notemplate.go | 14 Title string 19 filename := p.Title + ".txt" 23 func loadPage(title string) (*Page, error) { 24 filename := title + ".txt" 29 return &Page{Title: title, Body: body}, nil 33 title := r.URL.Path[len("/view/"):] 34 p, _ := loadPage(title) 35 fmt.Fprintf(w, "<h1>%s</h1><div>%s</div>", p.Title, p.Body) 39 title := r.URL.Path[len("/edit/"): [all...] |
part3.go | 14 Title string 19 filename := p.Title + ".txt" 23 func loadPage(title string) (*Page, error) { 24 filename := title + ".txt" 29 return &Page{Title: title, Body: body}, nil 38 title := r.URL.Path[len("/view/"):] 39 p, _ := loadPage(title) 44 title := r.URL.Path[len("/edit/"):] 45 p, err := loadPage(title) [all...] |
final-parsetemplate.go | 15 Title string 20 filename := p.Title + ".txt" 24 func loadPage(title string) (*Page, error) { 25 filename := title + ".txt" 30 return &Page{Title: title, Body: body}, nil 33 func viewHandler(w http.ResponseWriter, r *http.Request, title string) { 34 p, err := loadPage(title) 36 http.Redirect(w, r, "/edit/"+title, http.StatusFound) 42 func editHandler(w http.ResponseWriter, r *http.Request, title string) [all...] |
final.go | 15 Title string 20 filename := p.Title + ".txt" 24 func loadPage(title string) (*Page, error) { 25 filename := title + ".txt" 30 return &Page{Title: title, Body: body}, nil 33 func viewHandler(w http.ResponseWriter, r *http.Request, title string) { 34 p, err := loadPage(title) 36 http.Redirect(w, r, "/edit/"+title, http.StatusFound) 42 func editHandler(w http.ResponseWriter, r *http.Request, title string) [all...] |
part3-errorhandling.go | 14 Title string 19 filename := p.Title + ".txt" 23 func loadPage(title string) (*Page, error) { 24 filename := title + ".txt" 29 return &Page{Title: title, Body: body}, nil 38 title := r.URL.Path[len("/view/"):] 39 p, err := loadPage(title) 41 http.Redirect(w, r, "/edit/"+title, http.StatusFound) 48 title := r.URL.Path[len("/edit/"): [all...] |
part2.go | 14 Title string 19 filename := p.Title + ".txt" 23 func loadPage(title string) (*Page, error) { 24 filename := title + ".txt" 29 return &Page{Title: title, Body: body}, nil 33 title := r.URL.Path[len("/view/"):] 34 p, _ := loadPage(title) 35 fmt.Fprintf(w, "<h1>%s</h1><div>%s</div>", p.Title, p.Body)
|
final-template.go | 14 Title string 19 filename := p.Title + ".txt" 23 func loadPage(title string) (*Page, error) { 24 filename := title + ".txt" 29 return &Page{Title: title, Body: body}, nil 33 title := r.URL.Path[len("/edit/"):] 34 p, err := loadPage(title) 36 p = &Page{Title: title} [all...] |
/prebuilts/go/linux-x86/doc/articles/wiki/ |
final-noerror.go | 14 Title string 19 filename := p.Title + ".txt" 23 func loadPage(title string) (*Page, error) { 24 filename := title + ".txt" 29 return &Page{Title: title, Body: body}, nil 33 title := r.URL.Path[len("/edit/"):] 34 p, err := loadPage(title) 36 p = &Page{Title: title} [all...] |
notemplate.go | 14 Title string 19 filename := p.Title + ".txt" 23 func loadPage(title string) (*Page, error) { 24 filename := title + ".txt" 29 return &Page{Title: title, Body: body}, nil 33 title := r.URL.Path[len("/view/"):] 34 p, _ := loadPage(title) 35 fmt.Fprintf(w, "<h1>%s</h1><div>%s</div>", p.Title, p.Body) 39 title := r.URL.Path[len("/edit/"): [all...] |
part3.go | 14 Title string 19 filename := p.Title + ".txt" 23 func loadPage(title string) (*Page, error) { 24 filename := title + ".txt" 29 return &Page{Title: title, Body: body}, nil 38 title := r.URL.Path[len("/view/"):] 39 p, _ := loadPage(title) 44 title := r.URL.Path[len("/edit/"):] 45 p, err := loadPage(title) [all...] |
final-parsetemplate.go | 15 Title string 20 filename := p.Title + ".txt" 24 func loadPage(title string) (*Page, error) { 25 filename := title + ".txt" 30 return &Page{Title: title, Body: body}, nil 33 func viewHandler(w http.ResponseWriter, r *http.Request, title string) { 34 p, err := loadPage(title) 36 http.Redirect(w, r, "/edit/"+title, http.StatusFound) 42 func editHandler(w http.ResponseWriter, r *http.Request, title string) [all...] |
final.go | 15 Title string 20 filename := p.Title + ".txt" 24 func loadPage(title string) (*Page, error) { 25 filename := title + ".txt" 30 return &Page{Title: title, Body: body}, nil 33 func viewHandler(w http.ResponseWriter, r *http.Request, title string) { 34 p, err := loadPage(title) 36 http.Redirect(w, r, "/edit/"+title, http.StatusFound) 42 func editHandler(w http.ResponseWriter, r *http.Request, title string) [all...] |
part3-errorhandling.go | 14 Title string 19 filename := p.Title + ".txt" 23 func loadPage(title string) (*Page, error) { 24 filename := title + ".txt" 29 return &Page{Title: title, Body: body}, nil 38 title := r.URL.Path[len("/view/"):] 39 p, err := loadPage(title) 41 http.Redirect(w, r, "/edit/"+title, http.StatusFound) 48 title := r.URL.Path[len("/edit/"): [all...] |
part2.go | 14 Title string 19 filename := p.Title + ".txt" 23 func loadPage(title string) (*Page, error) { 24 filename := title + ".txt" 29 return &Page{Title: title, Body: body}, nil 33 title := r.URL.Path[len("/view/"):] 34 p, _ := loadPage(title) 35 fmt.Fprintf(w, "<h1>%s</h1><div>%s</div>", p.Title, p.Body)
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
TimeLineGraphItem.java | 22 String title; field in class:TimeLineGraphItem 33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) { 34 this(title, description, value, color,display, timestamp,isSpecial); 38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) { 39 this(title, description, value, color,display, timestamp); 43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) { 44 this(title, description, value, color,timestamp); 48 TimeLineGraphItem(String title, String description, double value, Color color,long timestamp) { 49 this.title= title; [all...] |
/packages/apps/Settings/src/com/android/settings/location/ |
InjectedSetting.java | 50 public final String title; field in class:InjectedSetting 69 String title, int iconId, UserHandle userHandle, String settingsActivity) { 72 this.title = Preconditions.checkNotNull(title, "title"); 82 String title, int iconId, UserHandle userHandle, String settingsActivity) { 84 TextUtils.isEmpty(title) || TextUtils.isEmpty(settingsActivity)) { 88 + ", title=" + title + ", settingsActivity=" + settingsActivity); 92 return new InjectedSetting(packageName, className, title, iconId, userHandle [all...] |
/external/lzma/CPP/7zip/UI/FileManager/ |
BrowseDialog.h | 8 bool MyBrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR path, UString &resultPath);
9 bool MyBrowseForFile(HWND owner, LPCWSTR title, LPCWSTR path, LPCWSTR filterDescription, LPCWSTR filter, UString &resultPath);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowProgressDialog.java | 18 public static ProgressDialog show(Context context, CharSequence title, CharSequence message) { 19 return show(context, title, message, false); 23 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate) { 24 return show(context, title, message, indeterminate, false, null); 28 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable) { 29 return show(context, title, message, indeterminate, cancelable, null); 33 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable, ProgressDialog.OnCancelListener onCancelListener) { 35 progressDialog.setTitle(title);
|
/frameworks/base/tools/preload2/src/com/android/preload/actions/ |
AbstractThreadedDeviceSpecificAction.java | 28 protected AbstractThreadedDeviceSpecificAction(String title, IDevice device) { 29 super(title);
|
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/test/ |
LoggingUtil.java | 70 String title = getClassName(testCase) + "." + testCase.getName();
local 71 return new LoggingUtil(title, TEST_CASE_SEPARATOR);
82 String title = "SUITE " + getClassName(testCase);
local 83 return new LoggingUtil(title, TEST_SUITE_SEPARATOR);
90 private LoggingUtil(String title, String separator) {
92 this.testTitle = title;
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/test/ |
LoggingUtil.java | 70 String title = getClassName(testCase) + "." + testCase.getName();
local 71 return new LoggingUtil(title, TEST_CASE_SEPARATOR);
82 String title = "SUITE " + getClassName(testCase);
local 83 return new LoggingUtil(title, TEST_SUITE_SEPARATOR);
90 private LoggingUtil(String title, String separator) {
92 this.testTitle = title;
|
/external/skia/experimental/iOSSampleApp/Shared/ |
SkOptionsTableViewController.h | 35 - (UITableViewCell*)createAction:(NSString*)title; 36 - (UITableViewCell*)createSlider:(NSString*)title min:(float)min max:(float)max default:(float)value; 37 - (UITableViewCell*)createSwitch:(NSString*)title default:(BOOL)state; 38 - (UITableViewCell*)createTriState:(NSString*)title default:(int)index; 39 - (UITableViewCell*)createTextField:(NSString*)title default:(NSString*)value; 40 - (UITableViewCell*)createList:(NSString*)title default:(NSString*)value;
|
/packages/apps/TV/src/com/android/tv/ui/sidepanel/ |
CheckBoxItem.java | 31 public CheckBoxItem(String title) { 32 this(title, null); 35 public CheckBoxItem(String title, String description) { 36 this(title, description, false); 39 public CheckBoxItem(String title, String description, boolean layoutForLargeDescription) { 40 super(title, description);
|