HomeSort by relevance Sort by last modified time
    Searched refs:description (Results 226 - 250 of 2197) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleContribution.java 27 public RefactoringDescriptor createDescriptor(String id, String project, String description,
29 return new ExtractStyleRefactoring.Descriptor(project, description, comment, arguments);
UnwrapContribution.java 27 public RefactoringDescriptor createDescriptor(String id, String project, String description,
29 return new UnwrapRefactoring.Descriptor(project, description, comment, arguments);
WrapInContribution.java 27 public RefactoringDescriptor createDescriptor(String id, String project, String description,
29 return new WrapInRefactoring.Descriptor(project, description, comment, arguments);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringContribution.java 37 String description,
42 return new ExtractStringDescriptor(project, description, comment, arguments);
  /external/junit/src/org/junit/rules/
ExpectedException.java 6 import org.hamcrest.Description;
60 org.junit.runner.Description description) {
125 public void describeTo(Description description) {
126 description.appendText("exception with message ");
127 description.appendDescriptionOf(matcher);
ExternalResource.java 3 import org.junit.runner.Description;
36 public Statement apply(Statement base, Description description) {
Timeout.java 7 import org.junit.runner.Description;
46 public Statement apply(Statement base, Description description) {
  /external/tcpdump/missing/
dlnames.c 52 const char *description; member in struct:dlt_choice
56 #define DLT_CHOICE(code, description) { #code, description, code }
172 return (dlt_choices[i].description);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.4-6.js 25 Description:
71 testcases[0].description += ( INPUT +"" );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.6.2-9-n.js 59 testcases[0].description +" = "+ testcases[0].actual );
  /frameworks/base/core/java/android/webkit/
Plugin.java 65 String description) {
69 mDescription = description;
159 public void setDescription(String description) {
160 mDescription = description;
200 // Show a simple popup dialog containing the description
  /sdk/avdlauncher/
avdlauncher.c 46 void display_error(LPSTR description) {
50 fprintf(stderr, "%s, error %ld\n", description, err);
62 s2 = (LPSTR) malloc(strlen(description) + strlen(s) + 5);
63 sprintf(s2, "%s\r\n%s", description, s);
  /sdk/sdklauncher/
sdklauncher.c 46 void display_error(LPSTR description) {
50 fprintf(stderr, "%s, error %ld\n", description, err);
62 s2 = (LPSTR) malloc(strlen(description) + strlen(s) + 5);
63 sprintf(s2, "%s\r\n%s", description, s);
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DriverPropertyInfoTest.java 66 static String updateDescription = "update description";
79 assertEquals(testDescription, aDriverPropertyInfo.description);
85 aDriverPropertyInfo.description = updateDescription;
91 assertEquals(updateDescription, aDriverPropertyInfo.description);
  /external/junit/src/org/junit/runner/
Result.java 69 public void testRunStarted(Description description) throws Exception {
80 public void testFinished(Description description) throws Exception {
90 public void testIgnored(Description description) throws Exception {
  /external/smack/src/org/jivesoftware/smackx/muc/
RoomInfo.java 43 * Description of the room.
45 private String description = ""; field in class:RoomInfo
93 this.description = ( descField == null || !(descField.getValues().hasNext()) )? "" : descField.getValues().next();
114 * Returns the discovered description of the room.
116 * @return the discovered description of the room.
119 return description;
  /external/smack/src/org/xbill/DNS/utils/
hexdump.java 17 * @param description If not null, a description of the data.
23 dump(String description, byte [] b, int offset, int length) {
27 if (description != null)
28 sb.append(" (" + description + ")");
  /external/webkit/Source/WebCore/platform/graphics/pango/
FontPlatformDataPango.cpp 81 PangoFontDescription* description = pango_font_description_new(); local
82 pango_font_description_set_absolute_size(description, fontDescription.computedSize() * PANGO_SCALE);
86 pango_font_description_set_weight(description, PANGO_WEIGHT_BOLD);
88 pango_font_description_set_style(description, PANGO_STYLE_ITALIC);
96 pango_font_description_set_family(description, families[i]);
97 pango_context_set_font_description(m_context, description);
98 m_font = pango_font_map_load_font(m_fontMap, m_context, description);
126 pango_font_description_free(description);
210 PangoFontDescription* description = pango_font_describe_with_absolute_size(m_font); local
211 PangoFontFamily* family = reinterpret_cast<PangoFontFamily*>(g_hash_table_lookup(m_hashTable, pango_font_description_get_family(description)));
271 String FontPlatformData::description() const function in class:WebCore::FontPlatformData
    [all...]
  /external/webkit/Source/WebCore/platform/wx/wxcode/gtk/
non-kerned-drawing.cpp 92 PangoFontDescription* description = pango_font_description_new(); local
93 pango_font_description_set_absolute_size(description, wxfont->GetPointSize() * PANGO_SCALE);
100 pango_font_description_set_weight(description, PANGO_WEIGHT_LIGHT);
103 pango_font_description_set_weight(description, PANGO_WEIGHT_NORMAL);
106 pango_font_description_set_weight(description, PANGO_WEIGHT_BOLD);
112 pango_font_description_set_style(description, PANGO_STYLE_NORMAL);
115 pango_font_description_set_style(description, PANGO_STYLE_ITALIC);
118 pango_font_description_set_style(description, PANGO_STYLE_OBLIQUE);
126 pango_font_description_set_family(description, families[i]);
127 pango_context_set_font_description(pangoContext, description);
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
StorageInfoChromium.cpp 55 ExceptionCodeDescription description; local
56 getExceptionCodeDescription(ec, description);
57 errorCallback->handleEvent(DOMCoreException::create(description).get());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
TaskDescription.java 30 final CharSequence description; field in class:TaskDescription
45 description = _description;
55 description = null;
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
AlertProtocol.java 39 * Defines the description code of the close_notify alert
43 * Defines the description code of the unexpected_message alert
47 * Defines the description code of the bad_record_mac alert
51 * Defines the description code of the decryption_failed alert
55 * Defines the description code of the record_overflow alert
59 * Defines the description code of the decompression_failure alert
63 * Defines the description code of the handshake_failure alert
67 * Defines the description code of the bad_certificate alert
71 * Defines the description code of the unsupported_certificate alert
75 * Defines the description code of the certificate_revoked aler
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldDriverPropertyInfoTest.java 63 String description = info[0].description; local
64 assertNull(description);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
NotificationImportExportListener.java 105 final String description = mContext.getString(R.string.importing_vcard_description, local
109 mContext.getApplicationContext(), VCardService.TYPE_IMPORT, description, tickerText,
116 final String description = mContext.getString(R.string.importing_vcard_finished_title, local
130 description, null, intent);
145 final String description = mContext.getString(R.string.importing_vcard_canceled_title, local
148 NotificationImportExportListener.constructCancelNotification(mContext, description);
174 final String description = type == VCardService.TYPE_IMPORT ? local
177 final Notification notification = constructCancelNotification(mContext, description);
187 * @param description Content of the Notification.
197 Context context, int type, String description, String tickerText
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAState.java 88 protected String description; field in class:NFAState
227 return description;
230 public void setDescription(String description) {
231 this.description = description;

Completed in 245 milliseconds

1 2 3 4 5 6 7 8 91011>>