/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...] |
IsInstanceOf.java | 5 import org.hamcrest.Description; 31 public void describeTo(Description description) { 32 description.appendText("an instance of ")
|
/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/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_dx11/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...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/ |
FontCacheSkia.cpp | 64 FontDescription description(font.fontDescription()); 65 if (family.isBold && description.weight() < FontWeightBold) 66 description.setWeight(FontWeightBold); 67 if (!family.isBold && description.weight() >= FontWeightBold) { 69 description.setWeight(FontWeightNormal); 71 if (family.isItalic && description.italic() == FontItalicOff) 72 description.setItalic(FontItalicOn); 73 if (!family.isItalic && description.italic() == FontItalicOn) { 75 description.setItalic(FontItalicOff); 78 FontPlatformData* substitutePlatformData = getFontResourcePlatformData(description, atomicFamily, DoNotRetain) [all...] |
/external/chromium_org/android_webview/native/ |
aw_dev_tools_server.cc | 88 base::DictionaryValue description; 89 description.SetBoolean("attached", bvr->IsAttachedToWindow()); 90 description.SetBoolean("visible", bvr->IsVisible()); 92 description.SetInteger("screenX", screen_rect.x()); 93 description.SetInteger("screenY", screen_rect.y()); 94 description.SetBoolean("empty", screen_rect.size().IsEmpty()); 96 description.SetInteger("width", screen_rect.width()); 97 description.SetInteger("height", screen_rect.height()); 100 base::JSONWriter::Write(&description, &json);
|
/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 string16 description = ASCIIToUTF16("TEST_DESCRIPTION"); local 40 web_app_info.description = description; 50 EXPECT_EQ(description, info.description);
|
/external/chromium_org/chromeos/dbus/ibus/ |
ibus_component.h | 32 // string "Mock IME" // The engine description. 49 // string "Mock IME with Extension API" // The component description. 98 const std::string& description, 104 std::string description; // The engine description. member in struct:chromeos::IBusComponent::EngineDescription 116 // The component description. 117 const std::string& description() const { return description_; } function in class:chromeos::IBusComponent 118 void set_description(const std::string& description) { 119 description_ = description; 126 // The array of engine description data [all...] |
/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/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/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/chrome/browser/local_discovery/ |
privet_device_lister.h | 31 std::string description; member in struct:local_discovery::DeviceDescription 51 const DeviceDescription& description) = 0;
|
/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 | 59 @type description: int 60 @ivar description: Set to one of the constants in 68 @ivar message: Description of what went wrong. 71 self.description = alert.description 76 alertStr = TLSAlert._descriptionStr.get(self.description) 78 alertStr = str(self.description) 87 @type description: int 88 @ivar description: Set to one of the constants in 96 self.description = alert.descriptio [all...] |