HomeSort by relevance Sort by last modified time
    Searched defs:title (Results 1 - 25 of 270) sorted by null

1 2 3 4 5 6 7 8 91011

  /packages/apps/Launcher2/src/com/android/launcher2/
FolderInfo.java 33 CharSequence title; field in class:FolderInfo
  /external/srec/tools/grxmlcompile/
grph.h 29 title= new char [count+1];
30 strcpy (title, name);
40 delete [] title;
70 char *title; member in class:Graph
  /external/webkit/WebCore/bindings/v8/
ScriptProfile.h 40 static PassRefPtr<ScriptProfile> create(const String& title, unsigned uid)
42 return adoptRef(new ScriptProfile(title, uid));
46 String title() const { return m_title; } function in class:WebCore::ScriptProfile
50 ScriptProfile(const String& title, unsigned uid)
51 : m_title(title)
  /external/webkit/WebCore/notifications/
NotificationContents.h 41 NotificationContents(const String& iconUrl, const String& title, const String& body)
43 , m_title(title)
47 String title() const { return m_title; } function in class:WebCore::NotificationContents
  /external/webkit/WebCore/wml/
WMLFieldSetElement.cpp 50 String title = parseValueSubstitutingVariableReferences(getAttribute(HTMLNames::titleAttr)); local
51 if (title.isEmpty())
62 // Create text node holding the 'title' attribute value
63 m_insertedLegendElement->appendChild(document()->createTextNode(title), ec);
WMLElement.cpp 85 String WMLElement::title() const function in class:WebCore::WMLElement
  /external/webkit/WebKit/chromium/public/
WebFileChooserParams.h 43 // |title| is a title of a file chooser dialog. It can be an empty string.
44 WebString title; member in struct:WebKit::WebFileChooserParams
  /packages/apps/Camera/src/com/android/camera/ui/
RestoreSettingsItem.java 53 public RestoreSettingsItem(Context context, String title) {
55 mText = StringTexture.newInstance(title, sFontSize, FONT_COLOR);
71 StringTexture title = mText; local
73 title.draw(root, p.left, p.top + (height - title.getHeight()) / 2);
  /development/samples/Home/src/com/example/android/home/
ApplicationInfo.java 24 * Represents a launchable application. An application is made of a name (or title), an intent
31 CharSequence title; field in class:ApplicationInfo
71 return title.equals(that.title) &&
79 result = (title != null ? title.hashCode() : 0);
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssItem.java 24 public String title; field in class:RssItem
29 public RssItem(String url, String title){
31 this.title = title;
35 return title;
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NoteEdit.java 38 mTitleText = (EditText) findViewById(R.id.title);
46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); local
50 if (title != null) {
51 mTitleText.setText(title);
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NoteEdit.java 38 mTitleText = (EditText) findViewById(R.id.title);
46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); local
50 if (title != null) {
51 mTitleText.setText(title);
  /external/proguard/src/proguard/gui/
MessageDialogRunnable.java 37 private final String title; field in class:MessageDialogRunnable
47 String title,
54 title,
70 String title,
75 this.title = title;
87 title,
  /external/webkit/JavaScriptCore/profiler/
Profile.h 38 static PassRefPtr<Profile> create(const UString& title, unsigned uid);
41 const UString& title() const { return m_title; } function in class:JSC::Profile
59 Profile(const UString& title, unsigned uid);
ProfileGenerator.cpp 43 PassRefPtr<ProfileGenerator> ProfileGenerator::create(const UString& title, ExecState* originatingExec, unsigned uid)
45 return adoptRef(new ProfileGenerator(title, originatingExec, uid));
48 ProfileGenerator::ProfileGenerator(const UString& title, ExecState* originatingExec, unsigned uid)
52 m_profile = Profile::create(title, uid);
70 const UString& ProfileGenerator::title() const function in class:JSC::ProfileGenerator
72 return m_profile->title();
  /external/webkit/WebCore/bindings/v8/custom/
V8HistoryCustom.cpp 49 String title = toWebCoreStringWithNullOrUndefinedCheck(args[1]); local
61 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectPush, ec);
70 String title = toWebCoreStringWithNullOrUndefinedCheck(args[1]); local
82 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectReplace, ec);
  /external/webkit/WebCore/platform/qt/
ContextMenuItemQt.cpp 42 const String& title, ContextMenu* subMenu)
46 m_platformDescription.title = title;
80 String ContextMenuItem::title() const function in class:WebCore::ContextMenuItem
82 return m_platformDescription.title;
85 void ContextMenuItem::setTitle(const String& title)
87 m_platformDescription.title = title;
  /external/webkit/WebCore/platform/wx/
ContextMenuItemWx.cpp 45 const String& title, ContextMenu* subMenu)
49 m_platformDescription.title = title;
85 String ContextMenuItem::title() const function in class:ContextMenuItem
87 return m_platformDescription.title;
90 void ContextMenuItem::setTitle(const String& title)
92 m_platformDescription.title = title;
  /external/webkit/WebCore/svg/
SVGStyleElement.cpp 70 String SVGStyleElement::title() const function in class:WebCore::SVGStyleElement
75 void SVGStyleElement::setTitle(const AtomicString& title, ExceptionCode& ec)
77 setAttribute(SVGNames::titleAttr, title, ec);
  /external/webkit/WebKit/win/
WebNavigationData.cpp 64 WebNavigationData::WebNavigationData(const String& url, const String& title, IWebURLRequest* request, IWebURLResponse* response, bool hasSubstituteData, const String& clientRedirectSource)
67 , m_title(title)
84 WebNavigationData* WebNavigationData::createInstance(const String& url, const String& title, IWebURLRequest* request, IWebURLResponse* response, bool hasSubstituteData, const String& clientRedirectSource)
86 WebNavigationData* instance = new WebNavigationData(url, title, request, response, hasSubstituteData, clientRedirectSource);
101 HRESULT WebNavigationData::title(BSTR* title) function in class:WebNavigationData
103 if (!title)
105 *title = BString(m_title).release();
  /frameworks/base/core/java/com/android/internal/app/
ChooserActivity.java 36 CharSequence title = intent.getCharSequenceExtra(Intent.EXTRA_TITLE); local
37 if (title == null) {
38 title = getResources().getText(com.android.internal.R.string.chooseActivity);
54 super.onCreate(savedInstanceState, target, title, initialIntents, null, false);
  /packages/apps/Nfc/src/com/android/nfc/
TechListChooserActivity.java 43 CharSequence title = getResources().getText(com.android.internal.R.string.chooseActivity); local
44 super.onCreate(savedInstanceState, target, title, null, rList, false);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
Window.java 22 private String title; field in class:Window
25 public Window(String title, int hashCode) {
26 this.title = title;
31 return title;
43 return title;
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscosvideo.h 51 char title[256]; member in struct:SDL_PrivateVideoData
  /external/webkit/WebCore/accessibility/
AccessibilityImageMapLink.cpp 113 String AccessibilityImageMapLink::title() const function in class:WebCore::AccessibilityImageMapLink
118 const AtomicString& title = m_areaElement->getAttribute(titleAttr); local
119 if (!title.isEmpty())
120 return title;

Completed in 1506 milliseconds

1 2 3 4 5 6 7 8 91011