HomeSort by relevance Sort by last modified time
    Searched refs:description (Results 776 - 800 of 2414) sorted by null

<<31323334353637383940>>

  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContentsClient.java 80 boolean isMainFrame, int errorCode, String description, String failingUrl) {
95 ErrorCodeConversionHelper.convertErrorCode(errorCode), description, failingUrl); local
283 public abstract void onReceivedError(int errorCode, String description, String failingUrl);
  /external/chromium_org/android_webview/tools/
webview_licenses.py 260 def format_description(self, description):
261 paras = description.split('\n')
267 parser.description = (__doc__ +
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
WebsiteSettingsPopup.java 66 /** Adds a section, which contains an icon, a headline, and a description. */
68 private void addSection(int enumeratedIconId, String headline, String description) {
79 d.setText(description);
80 if (TextUtils.isEmpty(description)) d.setVisibility(View.GONE);
110 /** Adds a section containing a description and a hyperlink. */
  /external/chromium_org/chrome/browser/chromeos/input_method/
infolist_window_view.cc 37 // Sets title text and description text.
66 // The description label.
70 // The size of the area which contains the title and the description.
105 const string16 description = UTF8ToUTF16(entry.body); local
108 (description_label_->text() == description)) {
116 description_label_->SetText(description);
  /external/chromium_org/content/renderer/media/
rtc_peer_connection_handler_unittest.cc 341 WebKit::WebRTCSessionDescription description; local
342 description.initialize(kDummySdpType, kDummySdp);
347 TrackSetSessionDescription(pc_handler_.get(), Ref(description),
351 pc_handler_->setLocalDescription(request, description);
352 EXPECT_EQ(description.type(), pc_handler_->localDescription().type());
353 EXPECT_EQ(description.sdp(), pc_handler_->localDescription().sdp());
364 WebKit::WebRTCSessionDescription description; local
365 description.initialize(kDummySdpType, kDummySdp);
371 TrackSetSessionDescription(pc_handler_.get(), Ref(description),
375 pc_handler_->setRemoteDescription(request, description);
    [all...]
  /external/chromium_org/extensions/common/
user_script.h 123 const std::string& description() const { return description_; } function in class:extensions::UserScript
124 void set_description(const std::string& description) {
125 description_ = description;
217 // A longer description. Only used when parsing Greasemonkey-style scripts.
  /external/chromium_org/native_client_sdk/src/build_tools/
verify_ppapi.py 155 description = __doc__
156 parser = optparse.OptionParser(usage=usage, description=description)
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
FontComplexTextMac.cpp 45 const FontDescription& description = font->fontDescription(); local
46 return description.featureSettings() && description.featureSettings()->size() > 0;
  /external/chromium_org/third_party/icu/source/i18n/
numsys.cpp 11 * Date Name Description
149 const UChar* description = NULL; local
157 description = ures_getStringByKey(nsTop,gDesc,&len,&status);
167 nsd.setTo(description);
  /external/chromium_org/tools/gyp/
gyptest.py 246 def report(description, tests):
249 sys.stdout.write("\n%s the following test:\n" % description)
252 sys.stdout.write(fmt % (description, len(tests)))
  /external/chromium_org/tools/gyp/pylib/gyp/
ninja_syntax.py 41 def rule(self, name, command, description=None, depfile=None,
46 if description:
47 self.variable('description', description, indent=1)
  /external/chromium_org/ui/gfx/
font_list.cc 16 // Parses font description into |font_names|, |font_style| and |font_size|.
60 // Returns font description from |font_names|, |font_style|, and |font_size|.
64 std::string description = JoinString(font_names, ','); local
65 description += "," + FontStyleAndSizeToString(font_style, font_size);
66 return description;
88 // DCHECK description string ends with "px" for size in pixel.
157 // Otherwise, parse the font description string to derive from it.
  /external/chromium_org/webkit/browser/database/
database_tracker.h 205 const base::string16& description) {
206 database_info_[database_name].second = description;
249 const base::string16& description);
  /external/junit/src/org/junit/internal/runners/
JUnit38ClassRunner.java 12 import org.junit.runner.Description;
49 private Description asDescription(Test test) {
54 return Description.createTestDescription(getEffectiveClass(test), getName(test));
96 public Description getDescription() {
100 private static Description makeDescription(Test test) {
104 return Description.createTestDescription(tc.getClass(), tc.getName(),
109 Description description= Description.createSuiteDescription(name); local
112 Description made= makeDescription(ts.testAt(i))
    [all...]
  /external/valgrind/main/helgrind/
helgrind.h 407 These four allow description of user-level condition variables,
598 DESCRIPTION? When does the annotation stop having an effect?
600 #define ANNOTATE_BENIGN_RACE(pointer, description) \
603 /* Same as ANNOTATE_BENIGN_RACE(address, description), but applies to
605 #define ANNOTATE_BENIGN_RACE_SIZED(address, size, description) \
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
MediaRouteChooserDialog.java 221 CharSequence description = route.getDescription(); local
222 if (TextUtils.isEmpty(description)) {
227 text2.setText(description);
  /frameworks/base/libs/hwui/
PatchCache.cpp 228 const PatchDescription description(bitmapWidth, bitmapHeight, pixelWidth, pixelHeight, patch);
229 const Patch* mesh = mCache.get(description);
252 mCache.put(description, newMesh);
  /frameworks/base/media/jni/
android_mtp_MtpServer.cpp 129 jstring description = (jstring)env->GetObjectField(jstorage, field_MtpStorage_description); local
136 const char *descriptionStr = env->GetStringUTFChars(description, NULL);
142 env->ReleaseStringUTFChars(description, descriptionStr);
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteChooserDialog.java 205 String description = route.getDescription(); local
206 if (TextUtils.isEmpty(description)) {
211 text2.setText(description);
  /frameworks/uiautomator/tests/CtsUiAutomatorTest/src/com/android/uiautomator/tests/cts/
CtsUiAutomatorTest.java 117 * Select each of the buttons by using only the content description property
450 UiSelector mainLayout = new UiSelector().description("Widgets Collection");
491 UiSelector mainLayout = new UiSelector().description("Widgets Collection");
509 new UiSelector().description("Widgets Collection"));
525 new UiSelector().description("Widgets Collection"));
543 new UiSelector().description("Widgets Collection"));
554 * Verifies the UiCollection can find an object by description and returning
562 new UiSelector().description("Widgets Collection"));
567 "Description for Button");
569 assertTrue("Collection get child by description", "Button".equals(item.getText()))
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
SSLRecordProtocol.java 433 * @param description: byte
435 protected void alert(byte level, byte description) {
437 logger.println("SSLRecordProtocol.allert: "+level+" "+description);
439 alertProtocol.alert(level, description);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupNames.java 215 final String description = mDescription.getText().toString().trim(); local
216 if (!TextUtils.isEmpty(description)) {
217 account.setDisplayName(description);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyCodeDescriptionMapper.java 42 // Map of key labels to spoken description resource IDs
45 // Sparse array of spoken description resource IDs indexed by key codes
81 * Returns the localized description of the action performed by a specified
94 * @param key The key from which to obtain a description.
103 final String description = getDescriptionForSwitchAlphaSymbol(context, keyboard); local
104 if (description != null) {
105 return description;
114 // The following function returns the correct description in all action and
122 // First, attempt to map the label to a pre-defined description.
128 // Just attempt to speak the description
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
WordListPreference.java 77 final String description, final int status, final int filesize) {
86 mDescription = description;
90 setTitle(description);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dist.py 102 ('description', None,
103 "print the package description"),
104 ('long-description', None,
105 "print the long package description"),
708 description = klass.description
710 description = "(no description available)"
712 print(" %-*s %s" % (max_length, cmd, description))
716 description of each. The list is divided into "standard commands
    [all...]

Completed in 4592 milliseconds

<<31323334353637383940>>