/frameworks/base/core/java/android/app/ |
IThumbnailReceiver.aidl | 27 void newThumbnail(int id, in Bitmap thumbnail, CharSequence description);
|
/libcore/luni/src/main/java/java/sql/ |
DriverPropertyInfo.java | 35 * A description of the property. May be {@code null}. 37 public String description; field in class:DriverPropertyInfo 70 this.description = null;
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/ |
WayPoint.java | 21 * <p/>A waypoint is a user specified location, with a name and an optional description. 35 void setDescription(String description) { 36 mDescription = description;
|
/sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/ |
LayoutAnalysis.java | 82 * @param description Description of the issue. 84 public void addIssue(String description) { 85 mIssues.add(new Issue(mNode, description)); 92 * @param description Description of the issue. 94 public void addIssue(Node node, String description) { 95 mIssues.add(new Issue(node, description)); 139 * An issue provides a human-readable description as well as optional solutions. 146 * Creates a new issue with the specified description [all...] |
/external/webkit/WebKit/win/ |
WebKitGraphics.cpp | 52 static Font makeFont(const WebFontDescription& description) 57 String fontFamilyString(description.family, description.familyLength); 63 f.setSpecifiedSize(description.size); 64 f.setComputedSize(description.size); 65 f.setItalic(description.italic); 66 f.setWeight(description.bold ? FontWeightBold : FontWeightNormal); 88 const WebFontDescription* description; member in struct:WebTextRenderInfoWithoutShadow 97 if (!info || info->structSize < sizeof(WebTextRenderInfoWithoutShadow) || !info->cgContext || !info->description) 119 WebCoreDrawTextAtPoint(context, drawString, info->pt, makeFont(*(info->description)), info->color, info->underlinedIndex) [all...] |
/external/e2fsprogs/contrib/python-uuid/ |
setup.py | 10 description = 'This is python uuid interface', variable
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
UninitializedMessageException.java | 84 /** Construct the description string for this exception. */ 86 final StringBuilder description = local 93 description.append(", "); 95 description.append(field); 97 return description.toString();
|
InvalidProtocolBufferException.java | 44 public InvalidProtocolBufferException(final String description) { 45 super(description);
|
/external/webkit/JavaScriptCore/wtf/ |
RefCountedLeakCounter.h | 33 explicit RefCountedLeakCounter(const char* description);
|
/external/webkit/WebCore/storage/ |
IndexedDatabaseRequest.cpp | 46 void IndexedDatabaseRequest::open(const String& name, const String& description, bool modifyDatabase, ExceptionCode& exception)
|
IndexedDatabaseRequest.idl | 34 [Custom] void open(in DOMString name, in DOMString description, in optional boolean modifyDatabase)
|
/external/webkit/WebCore/svg/ |
SVGDescElement.cpp | 37 String SVGDescElement::description() const function in class:WebCore::SVGDescElement
|
SVGDescElement.h | 36 String description() const;
|
/external/webkit/WebKit/chromium/src/ |
WebPluginListBuilderImpl.cpp | 42 void WebPluginListBuilderImpl::addPlugin(const WebString& name, const WebString& description, const WebString& fileName) 46 info->desc = description; 51 void WebPluginListBuilderImpl::addMediaTypeToLastPlugin(const WebString& name, const WebString& description) 55 info->desc = description;
|
WebPluginListBuilderImpl.h | 46 virtual void addPlugin(const WebString& name, const WebString& description, const WebString& fileName); 47 virtual void addMediaTypeToLastPlugin(const WebString& name, const WebString& description);
|
/external/webkit/WebKitTools/Scripts/webkitpy/steps/ |
postdiff.py | 39 Options.description, 48 description = self._options.description or "Patch" 49 self._tool.bugs.add_patch_to_bug(state["bug_id"], diff_file, description, mark_for_review=self._options.review, mark_for_commit_queue=self._options.request_commit)
|
/external/protobuf/java/src/main/java/com/google/protobuf/micro/ |
InvalidProtocolBufferMicroException.java | 44 public InvalidProtocolBufferMicroException(final String description) { 45 super(description);
|
/external/webkit/WebCore/plugins/ |
MimeType.idl | 26 readonly attribute DOMString description;
|
/external/webkit/WebCore/dom/ |
ExceptionCode.cpp | 87 // FIXME: Couldn't find a description in the HTML/DOM specifications for NETWORK_ERR, ABORT_ERR, URL_MISMATCH_ERR, and QUOTA_EXCEEDED_ERR 148 void getExceptionCodeDescription(ExceptionCode ec, ExceptionCodeDescription& description) 215 description.typeName = typeName; 216 description.name = (ec >= nameTableOffset && ec - nameTableOffset < nameTableSize) ? nameTable[ec - nameTableOffset] : 0; 217 description.description = (ec >= nameTableOffset && ec - nameTableOffset < nameTableSize) ? descriptionTable[ec - nameTableOffset] : 0; 218 description.code = code; 219 description.type = type; 222 ASSERT(description.name); 223 ASSERT(description.description) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
bitops.c | 70 const char *description) 73 if (description) 74 com_err(0, errcode, "#%lu for %s", arg, description); 84 if (bitmap->description) 86 "#%lu for %s", arg, bitmap->description);
|
/external/webkit/WebCore/inspector/front-end/ |
ObjectProxy.js | 31 WebInspector.ObjectProxy = function(injectedScriptId, objectId, path, protoDepth, description, hasChildren) 37 this.description = description; 45 proxy.description = value; 61 result[propertiesPayload[i].name] = propertiesPayload[i].value.description;
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8IndexedDatabaseRequestCustom.cpp | 47 V8Parameter<> description = args[1]; local 53 imp->open(name, description, modifyDatabase, ec);
|
/external/webkit/WebKit/qt/Api/ |
qwebpluginfactory.cpp | 38 factory can create, including a description and the supported MIME types. 62 \variable QWebPluginFactory::Plugin::description 63 The description of the plugin. 85 && description == other.description 102 \variable QWebPluginFactory::MimeType::description 103 The description of the mime type.
|
/external/webkit/JavaScriptCore/runtime/ |
JSValue.cpp | 109 char* JSValue::description() function in class:JSC::JSValue 112 static char description[size]; local 115 snprintf(description, size, "<JSValue()>"); 117 snprintf(description, size, "Int32: %d", asInt32()); 119 snprintf(description, size, "Double: %lf", asDouble()); 121 snprintf(description, size, "Cell: %p", asCell()); 123 snprintf(description, size, "True"); 125 snprintf(description, size, "False"); 127 snprintf(description, size, "Null"); 130 snprintf(description, size, "Undefined") [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
try-010.js | 4 * Description: The try statement 34 function TryObject( description, tryOne, tryTwo, result ) { 35 this.description = description; 67 object.description,
|