HomeSort by relevance Sort by last modified time
    Searched refs:description (Results 226 - 250 of 2547) 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/
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/chromium_org/net/android/tools/
proxy_test_cases.py 23 "description" : "Test direct mapping when no proxy defined.",
34 "description" : "Test http.proxyHost and http.proxyPort works.",
47 "description" : "We should get the default port (80) for proxied hosts.",
59 "description" :
72 "description" : "Test that HTTP non proxy hosts are mapped correctly",
85 "description" : "Test that | pattern works.",
99 "description" : "Test that * pattern works.",
113 "description" : "Test that FTP non proxy hosts are mapped correctly",
126 "description" : "Test ftp.proxyHost and ftp.proxyPort works.",
139 "description" : "Test ftp.proxyHost and default port."
    [all...]
  /external/chromium_org/ppapi/thunk/
ppb_browser_font_trusted_thunk.cc 26 const PP_BrowserFont_Trusted_Description* description) {
30 return enter.functions()->CreateBrowserFont(instance, description);
39 PP_BrowserFont_Trusted_Description* description,
44 return enter.object()->Describe(description, metrics);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontData.h 63 virtual String description() const = 0;
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
address_problem.h 68 // The human readable description of the problem.
69 std::string description; member in struct:i18n::addressinput::AddressProblem
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prvrsion.h 78 char * description; /* description of this component */ member in struct:__anon13503
  /external/chromium_org/third_party/tlslite/
setup.py 22 description="tlslite implements SSL and TLS with SRP, shared-keys, cryptoID, or X.509 authentication.", variable
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
yasm-options.h 47 /* description to use in help_msg() */
48 /*@observer@*/ const char *description; member in struct:opt_option_s
50 /* optional description for the param taken (NULL if not present) */
  /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/libexif/libexif/fuji/
mnote-fuji-tag.c 33 const char *description; member in struct:__anon20354
99 if (!table[i].description || !*table[i].description)
102 return _(table[i].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);
  /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/chromium_org/chrome/test/nacl_test_injection/
find_chrome.py 68 description = __doc__
69 parser = optparse.OptionParser(usage, description=description)
  /external/chromium_org/chromeos/network/
network_event_log.h 70 const std::string& description);
81 // "desc" - Include the description.
87 // level, file, event, and description.
114 #define NET_LOG_LEVEL(log_level, event, description) \
116 __FILE__, __LINE__, log_level, event, description)
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
TestWebContentsObserver.java 62 int errorCode, String description, String failingUrl) {
63 super.didFailLoad(isProvisionalLoad, isMainFrame, errorCode, description, failingUrl);
64 mOnReceivedErrorHelper.notifyCalled(errorCode, description, failingUrl);
  /external/chromium_org/ppapi/proxy/
net_address_resource.cc 54 std::string description = NetAddressPrivateImpl::DescribeNetAddress( local
57 if (description.empty())
59 return StringVar::StringToPPVar(description);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
jsepsessiondescription.h 54 // Takes ownership of |description|.
55 bool Initialize(cricket::SessionDescription* description,
59 virtual cricket::SessionDescription* description() { function in class:webrtc::JsepSessionDescription
62 virtual const cricket::SessionDescription* description() const { function in class:webrtc::JsepSessionDescription
  /external/chromium_org/tools/cr/cr/commands/
command.py 38 self.description = None
58 description=self.description or self.help,
  /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 {

Completed in 1020 milliseconds

1 2 3 4 5 6 7 8 91011>>