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

<<21222324252627282930>>

  /external/webkit/WebKitTools/DumpRenderTree/gtk/
AccessibilityUIElementGtk.cpp 185 JSStringRef AccessibilityUIElement::description() function in class:AccessibilityUIElement
187 const gchar* description = atk_object_get_description(ATK_OBJECT(m_element)); local
189 if (!description)
192 return JSStringCreateWithUTF8CString(description);
  /external/webkit/WebKitTools/Scripts/
test-webkit-scripts 33 # The docstring above is passed as the "description" to the OptionParser
66 parser = OptionParser(description=__doc__)
  /frameworks/base/core/java/android/webkit/
WebViewClient.java 136 * @param description A String describing the error.
140 String description, String failingUrl) {
192 * @param realm A description to help store user credentials for future
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapAuthenticator.java 91 public PasswordAuthentication onAuthenticationChallenge(final String description,
  /packages/apps/Settings/src/com/android/settings/
DeviceAdminSettings.java 121 TextView description; field in class:DeviceAdminSettings.ViewHolder
172 h.description = (TextView)v.findViewById(R.id.description);
184 vh.description.setText(item.loadDescription(getPackageManager()));
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ClientData.java 156 // client's self-description
421 * Returns the client description.
425 * @return the client description or <code>null</code> if not the description was not yet
433 * Sets client description.
439 void setClientDescription(String description) {
440 if (mClientDescription == null && description.length() > 0) {
448 if (PRE_INITIALIZED.equals(description) == false) {
449 mClientDescription = description;
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
AddOnTarget.java 43 OptionalLibrary(String jarName, String jarPath, String name, String description) {
47 mDescription = description;
84 * @param description the add-on description
86 * library name. The value is a 2 string array with the .jar filename, and the description.
89 AddOnTarget(String location, String name, String vendor, int revision, String description,
99 mDescription = description;
  /cts/tools/utils/
DescriptionGenerator.java 54 * Output: Generate file description.xml, which defines the TestPackage
75 static final String TAG_DESCRIPTION = "Description";
85 static final String XML_OUTPUT_PATH = "./description.xml";
239 * This document is used to represent the description XML file.
553 * Get annotation description.
561 String description = av.toString(); local
563 description = description.substring(1, description.length() -1);
564 return description;
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventLogParser.java 168 String description = m.group(3); local
169 if (description != null && description.length() > 0) {
171 processDescription(description);
194 private EventValueDescription[] processDescription(String description) {
195 String[] descriptions = description.split("\\s*,\\s*"); //$NON-NLS-1$
209 // just ignore this description if the value is not recognized.
226 // just ignore this description if one number is malformed.
229 // just ignore this description if data type and data unit don't match
234 String.format("Can't parse %1$s", description)); //$NON-NLS-1
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplayLog.java 105 // get the value description
109 EventValueDescription description = valueDescription[i]; local
113 logValue(date, pidName, eventName, description.getName(), value,
114 description.getEventValueType(), description.getValueType());
116 logValue(date, pidName, eventName, description.getName(), e.getMessage(),
117 description.getEventValueType(), description.getValueType());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ProjectHelper.java 450 IProjectDescription description = project.getDescription(); local
451 String[] natures = description.getNatureIds();
466 description = project.getDescription();
467 natures = description.getNatureIds();
478 description.setNatureIds(newNatures);
479 project.setDescription(description, null);
496 IProjectDescription description = project.getDescription(); local
497 String[] natures = description.getNatureIds();
507 description.setNatureIds(newNatures);
508 project.setDescription(description, null)
    [all...]
  /build/core/tasks/
cts.mk 69 # $1 : The output file where the description should be written (without the '.xml' extension)
73 define generate-core-test-description
74 @echo "Generate core-test description ("$(notdir $(1))")"
100 $(call generate-core-test-description,$(cts_dir)/$(cts_name)/repository/testcases/android.core.tests.dom,\
103 $(call generate-core-test-description,$(cts_dir)/$(cts_name)/repository/testcases/android.core.tests.luni.io,\
106 $(call generate-core-test-description,$(cts_dir)/$(cts_name)/repository/testcases/android.core.tests.luni.lang,\
109 $(call generate-core-test-description,$(cts_dir)/$(cts_name)/repository/testcases/android.core.tests.luni.net,\
112 $(call generate-core-test-description,$(cts_dir)/$(cts_name)/repository/testcases/android.core.tests.luni.util,\
115 $(call generate-core-test-description,$(cts_dir)/$(cts_name)/repository/testcases/android.core.tests.xml,\
140 $(call generate-core-test-description,$(CORE_VM_TEST_DESC),
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_6/
shell.js 124 * type) report a failure. If description is provided, include it in the
127 function reportCompare (expected, actual, description)
133 if ((VERBOSE) && (typeof description != "undefined"))
134 printStatus ("Comparing '" + description + "'");
152 if (typeof description != "undefined")
153 reportFailure (description);
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /packages/apps/Settings/src/com/android/settings/applications/
RunningServiceDetails.java 237 TextView description = (TextView)root.findViewById(R.id.comp_description); local
239 description.setText(getPackageManager().getText(
244 description.setText(R.string.background_process_stop_description);
250 description.setText(getString(R.string.service_manage_description,
255 description.setText(getText(si != null
300 TextView description = (TextView)root.findViewById(R.id.comp_description); local
302 description.setText(R.string.main_running_process_description);
337 description.setText(getString(textid, label));
398 mSnippetActiveItem.mHolder.description.setText(R.string.no_services);
  /external/webkit/LayoutTests/fast/js/resources/
js-test-pre.js 4 function description(msg)
9 var description = document.getElementById("description"); variable
10 if (description.firstChild)
11 description.replaceChild(span, description.firstChild);
13 description.appendChild(span);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/
jsref.js 44 testcases[tc].description +" = "+
56 function AddTestCase( description, expect, actual ) {
57 testcases[tc++] = new TestCase( SECTION, description, expect, actual );
62 this.description = d;
71 writeLineToLog( "added " + this.description );
114 testcases[tc].description +" = "+ testcases[tc].actual );
206 print(beginTag + 'DESCRIPTION' + endTag);
207 print(testcases[tc].description);
220 print( testcases[i].description +" = " +testcases[i].actual +" expected: "+ testcases[i].expect );
229 testcases[tc].description +" = "+ testcases[tc].actual
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
TutorialJAJP.java 97 int backgroundResource, int bx, int by, int description, int guide) {
99 CharSequence text = context.getResources().getText(description);
104 CharSequence description, int guide, boolean leftAlign) {
105 init(context, inputView, backgroundResource, bx, by, description, guide, leftAlign);
109 int bx, int by, CharSequence description, int guide, boolean leftAlign) {
116 .append(description)
  /device/samsung/crespo/alsa-lib/src/conf/pcm/
dmix.conf 112 description "Direct sample mixing device"
dsnoop.conf 112 description "Direct sample snooping device"
  /external/chromium/base/
time_win_unittest.cc 174 char *description; member in struct:TestCase
200 printf("%s: %1.2fus per call\n", cases[test_case].description,
  /external/libpcap/
pcap-septel.c 266 const char description[512]= "Intel/Septel device"; local
269 pcap_add_if(devlistp,name,0,description,errbuf);
  /external/quake/quake/src/QW/
qwcl.spec.sh 24 %description
qwsv.spec.sh 24 %description
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
callback-exception.js 0 description("Tests that when an exception is thrown in the success callback, the error callback is not invoked. Note that this test throws an exception which is not caught.");

Completed in 1297 milliseconds

<<21222324252627282930>>