HomeSort by relevance Sort by last modified time
    Searched refs:description (Results 76 - 100 of 1239) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.4-6.js 25 Description:
71 testcases[0].description += ( INPUT +"" );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Statements/
12.6.2-9-n.js 59 testcases[0].description +" = "+ testcases[0].actual );
  /external/webkit/WebCore/platform/graphics/
FontData.h 56 virtual String description() const = 0;
  /external/webkit/WebCore/storage/
IndexedDatabaseRequest.h 52 void open(const String& name, const String& description, bool modifyDatabase, ExceptionCode&);
  /frameworks/base/core/java/android/webkit/
Plugin.java 53 String description) {
57 mDescription = description;
138 public void setDescription(String description) {
139 mDescription = description;
176 // Show a simple popup dialog containing the description
  /external/webkit/WebCore/platform/graphics/gtk/
FontPlatformDataPango.cpp 82 PangoFontDescription* description = pango_font_description_new(); local
83 pango_font_description_set_absolute_size(description, fontDescription.computedSize() * PANGO_SCALE);
87 pango_font_description_set_weight(description, PANGO_WEIGHT_BOLD);
89 pango_font_description_set_style(description, PANGO_STYLE_ITALIC);
97 pango_font_description_set_family(description, families[i]);
98 pango_context_set_font_description(m_context, description);
99 m_font = pango_font_map_load_font(m_fontMap, m_context, description);
127 pango_font_description_free(description);
211 PangoFontDescription* description = pango_font_describe_with_absolute_size(m_font); local
212 PangoFontFamily* family = reinterpret_cast<PangoFontFamily*>(g_hash_table_lookup(m_hashTable, pango_font_description_get_family(description)));
272 String FontPlatformData::description() const function in class:WebCore::FontPlatformData
    [all...]
  /external/webkit/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/WebKitTools/BuildSlaveSupport/build.webkit.org-config/webkit/
steps.py 17 self.description = ["set configuration %s" % (configuration, )]
24 description = ["layout-tests running"] variable in class:LayoutTest
53 description = ["jscore-tests running"] variable in class:JavaScriptCoreTest
88 description = ["pixel-layout-tests running"] variable in class:PixelLayoutTest
122 description = ["uploading results"] variable in class:UploadLayoutResults
155 self.description = ["compiling " + configuration]
162 description = ['cleaning'] variable in class:CleanWebKit
173 description = ['cleaning'] variable in class:CleanWebKitGtk
181 description = ['cleaning'] variable in class:CleanWebKitWx
218 description = ["installing Windows dependencies" variable in class:InstallWin32Dependencies
235 description = ["generating coverage data"] variable in class:GenerateCoverageData
241 description = ["uploading coverage data"] variable in class:UploadCoverageData
    [all...]
  /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...]
  /external/webkit/JavaScriptCore/runtime/
ObjectConstructor.cpp 115 JSObject* description = constructEmptyObject(exec);
117 description->putDirect(exec->propertyNames().value, descriptor.value() ? descriptor.value() : jsUndefined(), 0);
118 description->putDirect(exec->propertyNames().writable, jsBoolean(descriptor.writable()), 0);
120 description->putDirect(exec->propertyNames().get, descriptor.getter() ? descriptor.getter() : jsUndefined(), 0);
121 description->putDirect(exec->propertyNames().set, descriptor.setter() ? descriptor.setter() : jsUndefined(), 0);
124 description->putDirect(exec->propertyNames().enumerable, jsBoolean(descriptor.enumerable()), 0);
125 description->putDirect(exec->propertyNames().configurable, jsBoolean(descriptor.configurable()), 0);
127 return description;
162 throwError(exec, TypeError, "Property description must be an object.");
165 JSObject* description = asObject(in) local
    [all...]
  /external/webkit/WebCore/platform/graphics/chromium/
FontCacheLinux.cpp 74 SimpleFontData* FontCache::getLastResortFallbackFont(const FontDescription& description)
81 switch (description.genericFamily()) {
83 fontPlatformData = getCachedFontPlatformData(description, serifStr);
86 fontPlatformData = getCachedFontPlatformData(description, monospaceStr);
90 fontPlatformData = getCachedFontPlatformData(description, sansStr);
  /frameworks/base/obex/javax/obex/
ObexSession.java 73 * 0x02 is the realm, which provides a description of which user name
78 byte[] description = ObexHelper.getTagValue((byte)0x02, header.mAuthChall);
81 if (description != null) {
82 byte[] realmString = new byte[description.length - 1];
83 System.arraycopy(description, 1, realmString, 0, realmString.length);
85 switch (description[0] & 0xFF) {
  /external/chromium/base/
dynamic_annotations.h 151 #define ANNOTATE_BENIGN_RACE(address, description) \
152 AnnotateBenignRace(__FILE__, __LINE__, address, description)
226 #define ANNOTATE_EXPECT_RACE(address, description) \
227 AnnotateExpectRace(__FILE__, __LINE__, address, description)
265 const char *description);
268 const char *description);
299 #define ANNOTATE_BENIGN_RACE_STATIC(static_var, description) \
305 # static_var ": " description); \
331 #define ANNOTATE_EXPECT_RACE(address, description) // empty
332 #define ANNOTATE_BENIGN_RACE(address, description) // empt
    [all...]
  /external/chromium/third_party/icu/source/i18n/
nfsubs.cpp 51 const UnicodeString& description,
74 const UnicodeString& description,
76 : NFSubstitution(_pos, _ruleSet, formatter, description, status), divisor(_divisor)
130 const UnicodeString& description,
177 const UnicodeString& description,
179 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {}
200 const UnicodeString& description,
231 const UnicodeString& description,
233 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {}
262 const UnicodeString& description,
    [all...]
  /external/icu4c/i18n/
nfsubs.cpp 51 const UnicodeString& description,
74 const UnicodeString& description,
76 : NFSubstitution(_pos, _ruleSet, formatter, description, status), divisor(_divisor)
130 const UnicodeString& description,
177 const UnicodeString& description,
179 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {}
200 const UnicodeString& description,
231 const UnicodeString& description,
233 : NFSubstitution(_pos, _ruleSet, formatter, description, status) {}
262 const UnicodeString& description,
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/
jsref.js 50 function AddTestCase( description, expect, actual ) {
51 testcases[tc++] = new TestCase( SECTION, description, expect, actual );
55 this.description = d;
84 testcases[tc].description +" = "+
174 print(beginTag + 'DESCRIPTION' + endTag);
175 print(testcases[tc].description);
188 print( testcases[i].description +" = " +testcases[i].actual +" expected: "+ testcases[i].expect );
197 testcases[tc].description +" = "+ testcases[tc].actual +
  /cts/tools/utils/
buildCts.py 76 print 'Generating test description for package %s' % name
79 """Generate a test package description by running the DescriptionGenerator doclet.
83 output_file: Name of the file where the description gets written.
93 # Annotation classes are also required, since test annotations go into the description.
122 """Generate the test description for the signature check."""
129 description = open(os.path.join(self.test_repository, 'SignatureTest.xml'), 'w')
130 package.WriteDescription(description)
131 description.close()
134 """Generate the test description for the reference app tests."""
143 description = open(os.path.join(self.test_repository, 'ApiDemosReferenceTest.xml'), 'w'
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LiveFolderAdapter.java 72 holder.description = (TextView) view.findViewById(R.id.description);
80 holder.descriptionIndex = cursor.getColumnIndex(LiveFolders.DESCRIPTION);
107 final String description = cursor.getString(holder.descriptionIndex); local
108 if (description != null) {
109 holder.description.setText(description);
110 holder.description.setVisibility(View.VISIBLE);
112 holder.description.setVisibility(View.GONE);
115 holder.description.setVisibility(View.GONE);
202 TextView description; field in class:LiveFolderAdapter.ViewHolder
    [all...]
  /build/tools/
merge-event-log-tags.py 67 # Tag names must be unique. (If the tag number and description are
88 description = t.description variable
100 t.description == orig.description):
101 # if the name and description are identical, issue a warning
176 if t.description:
177 buffer.write("%d %s %s\n" % (t.tagnum, t.tagname, t.description))
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
DriverPropertyInfoTest.java 83 static String updateDescription = "update description";
106 assertEquals(testDescription, aDriverPropertyInfo.description);
112 aDriverPropertyInfo.description = updateDescription;
118 assertEquals(updateDescription, aDriverPropertyInfo.description);
136 String description = info[0].description; local
137 assertNull(description);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchableItemsSettings.java 87 CharSequence description = corpus.getSettingsDescription(); local
88 sourcePref.setSummaryOn(description);
89 sourcePref.setSummaryOff(description);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.js 25 Description:
70 testcases[tc].description +" = "+
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.1.1-1.js 25 Description:
59 testcases[tc].description +" = "+
15.9.1.1-2.js 25 Description:
53 testcases[tc].description + " = " +
15.9.5.1.js 25 Description:
52 testcases[tc].description +" = "+

Completed in 374 milliseconds

1 2 34 5 6 7 8 91011>>