HomeSort by relevance Sort by last modified time
    Searched refs:description (Results 101 - 125 of 2547) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/chrome/browser/
browsing_data_indexed_db_helper_browsertest.cc 31 const string16 description(ASCIIToUTF16("description"));
39 helper->AddIndexedDB(origin1, description);
40 helper->AddIndexedDB(origin2, description);
56 const string16 description(ASCIIToUTF16("description"));
62 helper->AddIndexedDB(origin, description);
63 helper->AddIndexedDB(origin, description);
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_indexed_db_helper_browsertest.cc 30 const base::string16 description(ASCIIToUTF16("description"));
34 helper->AddIndexedDB(origin1, description);
35 helper->AddIndexedDB(origin2, description);
55 const base::string16 description(ASCIIToUTF16("description"));
59 helper->AddIndexedDB(origin, description);
60 helper->AddIndexedDB(origin, description);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketChannelOpenFailure.java 21 public String description; field in class:PacketChannelOpenFailure
24 public PacketChannelOpenFailure(int recipientChannelID, int reasonCode, String description,
29 this.description = description;
49 description = tr.readString();
64 tw.writeString(description);
  /external/hamcrest/src/org/hamcrest/core/
DescribedAs.java 7 import org.hamcrest.Description;
13 * Provides a custom description to another matcher.
32 public void describeTo(Description description) {
37 description.appendText(descriptionTemplate.substring(textStart, arg.start()));
39 description.appendValue(values[argIndex]);
44 description.appendText(descriptionTemplate.substring(textStart));
49 * Wraps an existing matcher and overrides the description when it fails.
52 public static <T> Matcher<T> describedAs(String description, Matcher<T> matcher, Object... values) {
53 return new DescribedAs<T>(description, matcher, values);
    [all...]
  /external/junit/src/org/junit/experimental/results/
ResultMatchers.java 4 import org.hamcrest.Description;
29 public void describeTo(Description description) {
30 description.appendText("has " + count + " failures");
49 public void describeTo(Description description) {
50 description.appendText("has single failure containing " + string);
65 public void describeTo(Description description) {
66 description.appendText("has failure containing " + string)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
FontCacheSkia.cpp 66 FontDescription description(fontDescription);
67 if (family.isBold && description.weight() < FontWeightBold)
68 description.setWeight(FontWeightBold);
69 if (!family.isBold && description.weight() >= FontWeightBold) {
71 description.setWeight(FontWeightNormal);
73 if (family.isItalic && description.italic() == FontItalicOff)
74 description.setItalic(FontItalicOn);
75 if (!family.isItalic && description.italic() == FontItalicOn) {
77 description.setItalic(FontItalicOff);
80 FontPlatformData* substitutePlatformData = getFontPlatformData(description, atomicFamily)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRewriteRuleElementStream.h 51 description:(NSString *)anElementDescription;
53 description:(NSString *)anElementDescription
56 description:(NSString *)anElementDescription
59 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
60 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
61 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
80 - (void) setDescription:(NSString *)description;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
RenderTarget9.cpp 27 D3DSURFACE_DESC description; local
28 mRenderTarget->GetDesc(&description);
30 mWidth = description.Width;
31 mHeight = description.Height;
33 mInternalFormat = d3d9_gl::GetEquivalentFormat(description.Format);
34 mActualFormat = d3d9_gl::GetEquivalentFormat(description.Format);
35 mSamples = d3d9_gl::GetSamplesFromMultisampleType(description.MultiSampleType);
  /external/junit/src/org/junit/internal/runners/
ErrorReportingRunner.java 7 import org.junit.runner.Description;
24 public Description getDescription() {
25 Description description= Description.createSuiteDescription(fTestClass); local
27 description.addChild(describeCause(each));
28 return description;
49 private Description describeCause(Throwable child) {
50 return Description.createTestDescription(fTestClass,
55 Description description= describeCause(child) local
    [all...]
  /frameworks/testing/androidtestlib/src/com/android/test/runner/listener/
InstrumentationResultPrinter.java 21 import org.junit.runner.Description;
101 public void testRunStarted(Description description) throws Exception {
103 mResultTemplate.putInt(REPORT_KEY_NUM_TOTAL, description.testCount());
115 public void testStarted(Description description) throws Exception {
116 String testClass = description.getClassName();
117 String testName = description.getMethodName();
136 public void testFinished(Description description) throws Exception
    [all...]
SuiteAssignmentPrinter.java 21 import org.junit.runner.Description;
55 public void testStarted(Description description) throws Exception {
61 public void testFinished(Description description) throws Exception {
83 description.getClassName(), description.getMethodName(), assignmentSuite,
98 public void testIgnored(Description description) throws Exception {
  /external/chromium/chrome/browser/web_applications/
web_app_unittest.cc 44 const string16 description = ASCIIToUTF16("TEST_DESCRIPTION"); local
48 web_app_info.description = description;
57 EXPECT_EQ(description, info.description);
  /external/chromium_org/chrome/browser/web_applications/
web_app_unittest.cc 36 const base::string16 description = ASCIIToUTF16("TEST_DESCRIPTION"); local
40 web_app_info.description = description;
50 EXPECT_EQ(description, info.description);
  /frameworks/base/core/java/android/view/
InputDevice.java 839 StringBuilder description = new StringBuilder(); local
840 description.append("Input Device ").append(mId).append(": ").append(mName).append("\n");
841 description.append(" Descriptor: ").append(mDescriptor).append("\n");
842 description.append(" Generation: ").append(mGeneration).append("\n");
843 description.append(" Location: ").append(mIsExternal ? "external" : "built-in").append("\n");
845 description.append(" Keyboard Type: ");
848 description.append("none");
851 description.append("non-alphabetic");
854 description.append("alphabetic");
857 description.append("\n")
    [all...]
  /external/chromium_org/net/cert/
ct_log_verifier.h 33 // |description| is a textual description of the log.
36 const base::StringPiece& description);
42 // Returns the log's human-readable description.
43 const std::string& description() const { return description_; } function in class:net::CTLogVerifier
56 const base::StringPiece& description);
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
nacl_subprocess.h 33 NaClSubprocess(const nacl::string& description,
36 : description_(description),
50 // A basic description of the subprocess.
51 nacl::string description() const { return description_; } function in class:plugin::NaClSubprocess
53 // A detailed description of the subprocess that may contain addresses.
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
sessiondescription.h 40 // this class. Analagous to a <jingle><content><description> or
41 // <session><description>.
48 // Analagous to a <jingle><content> or <session><description>.
52 ContentInfo() : description(NULL) {}
55 ContentDescription* description) :
56 name(name), type(type), rejected(false), description(description) {}
60 ContentDescription* description) :
61 name(name), type(type), rejected(rejected), description(description) {}
65 ContentDescription* description; member in struct:cricket::ContentInfo
    [all...]
  /external/chromium_org/ui/gfx/
pango_util.h 36 explicit ScopedPangoFontDescription(PangoFontDescription* description)
37 : description_(description) {
38 DCHECK(description);
58 // Setup pango |layout|; set the |text|, the font description based on
72 // Retrieves the Pango metrics for a Pango font description. Caches the metrics
  /external/e2fsprogs/lib/ext2fs/
bitops.c 70 const char *description)
73 if (description)
74 com_err(0, errcode, "#%lu for %s", arg, description);
  /external/junit/src/org/junit/internal/matchers/
Each.java 6 import org.hamcrest.Description;
18 public void describeTo(Description description) {
19 description.appendText("each ");
20 individual.describeTo(description);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBitmap.java 23 private String description = ""; field in class:ShadowBitmap
30 stream.write((description + " compressed as " + format + " with quality " + quality).getBytes());
107 description += s;
111 description = s;
115 return description;
162 if (description != null ? !description.equals(that.description) : that.description != null) return false;
171 result = 31 * result + (description != null ? description.hashCode() : 0)
    [all...]
  /external/chromium_org/ppapi/cpp/private/
flash_font_file.cc 29 const PP_BrowserFont_Trusted_Description* description,
33 instance.pp_instance(), description, charset));
  /external/chromium_org/sync/engine/
traffic_logger.cc 22 const std::string& description) {
30 DVLOG(1) << "\n" << description << "\n" << message << "\n";
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
InvalidProtocolBufferException.java 45 public InvalidProtocolBufferException(final String description) {
46 super(description);
  /external/chromium_org/third_party/tlslite/tlslite/
errors.py 60 @type description: int
61 @ivar description: Set to one of the constants in
69 @ivar message: Description of what went wrong.
72 self.description = alert.description
77 alertStr = TLSAlert._descriptionStr.get(self.description)
79 alertStr = str(self.description)
88 @type description: int
89 @ivar description: Set to one of the constants in
97 self.description = alert.descriptio
    [all...]

Completed in 356 milliseconds

1 2 3 45 6 7 8 91011>>