/libcore/luni/src/main/java/org/w3c/dom/ |
NameList.java | 16 * The <code>NameList</code> interface provides the abstraction of an ordered 19 * implemented. The items in the <code>NameList</code> are accessible via an 26 * Returns the <code>index</code>th name item in the collection. 28 * @return The name at the <code>index</code>th position in the 29 * <code>NameList</code>, or <code>null</code> if there is no name fo [all...] |
CharacterData.java | 16 * The <code>CharacterData</code> interface extends Node with a set of 20 * <code>CharacterData</code>, though <code>Text</code> and others do 21 * inherit the interface from it. All <code>offsets</code> in this interface 22 * start from <code>0</code> [all...] |
DOMImplementationList.java | 16 * The <code>DOMImplementationList</code> interface provides the abstraction 19 * <code>DOMImplementationList</code> are accessible via an integral index, 26 * Returns the <code>index</code>th item in the collection. If 27 * <code>index</code> is greater than or equal to the number of 28 * <code>DOMImplementation</code>s in the list, this return [all...] |
/external/chromium/chrome/common/extensions/docs/static/ |
match_patterns.html | 7 in the <code>"matches"</code> part of 16 that begins with a permitted scheme (<code>http</code>, 17 <code>https</code>, <code>file</code>, or <code>ftp</code>), [all...] |
/external/chromium_org/ppapi/cpp/ |
directory_entry.h | 2 // Use of this source code is governed by a BSD-style license that can be 22 /// The <code>DirectoryEntry</code> class represents information about 26 /// Default constructor for creating an is_null() <code>DirectoryEntry</code> 30 /// A constructor used when you have a <code>PP_DirectoryEntry</code> which 31 /// contains a <code>FileRef</code> that has already been reference counted 34 /// @param[in] data A <code>PP_DirectoryEntry</code> to be copied [all...] |
net_address.h | 2 // Use of this source code is governed by a BSD-style license that can be 17 /// The <code>NetAddress</code> class represents a network address. 20 /// Default constructor for creating an is_null() <code>NetAddress</code> 24 /// A constructor used when you have received a <code>PP_Resource</code> as a 27 /// @param[in] resource A <code>PPB_NetAddress</code> resource. 30 /// A constructor used to create a <code>NetAddress</code> object with th [all...] |
/external/chromium_org/tools/clang/plugins/ |
README.chromium | 1 Documentation for this code is: 3 - http://code.google.com/p/chromium/wiki/Clang 4 - http://code.google.com/p/chromium/wiki/WritingClangPlugins
|
/external/markdown/MarkdownTest/Tests_2007/ |
Code Blocks.text | 0 code block on the first line 5 code block indented by spaces 14 code block on the last lin
|
/libcore/luni/src/main/java/javax/xml/xpath/ |
XPath.java | 26 * <p><code>XPath</code> provides access to the XPath evaluation environment and expressions.</p> 50 * the resolver returns <code>null</code> for the variable. 60 * the function resolver returns <code>null</code> for the function.</p> 89 * <p>Reset this <code>XPath</code> to its original configuration.</p> 91 * <p><code>XPath</code> is reset to the same state as when it was created wit [all...] |
/external/chromium_org/ppapi/api/ |
ppb_file_system.idl | 2 * Use of this source code is governed by a BSD-style license that can be 17 * The <code>PPB_FileSystem</code> struct identifies the file system type 23 * @param[in] instance A <code>PP_Instance</code> identifying the instance 26 * <code>PP_FileSystemType</code> enum (except PP_FILESYSTEMTYPE_ISOLATED, 28 * @return A <code>PP_Resource</code> corresponding to a file system if 36 * @param[in] resource A <code>PP_Resource</code> corresponding to a fil [all...] |
ppb_image_data.idl | 2 * Use of this source code is governed by a BSD-style license that can be 7 * This file defines the <code>PPB_ImageData</code> struct for determining how 18 * <code>PP_ImageDataFormat</code> is an enumeration of the different types of 33 * <code>float red = 1.0f;</code> 34 * <code>float green = 0.50f;</code> 35 * <code>float blue = 0.0f;</code [all...] |
/external/chromium_org/ppapi/c/dev/ |
ppb_device_ref_dev.h | 2 * Use of this source code is governed by a BSD-style license that can be 22 * This file defines the <code>PPB_DeviceRef_Dev</code> interface. 32 * <code>PPB_AudioInput_Dev.MonitorDeviceChange()</code> and 33 * <code>PPB_VideoCapture_Dev.MonitorDeviceChange()</code>. 36 * <code>MonitorDeviceChange()</code>. 38 * @param[in] devices An array of <code>PPB_DeviceRef_Dev</code>. Please not [all...] |
/docs/source.android.com/src/devices/tech/storage/ |
index.jd | 26 <p>External storage is managed by a combination of the <code>vold</code> init service and 27 <code>MountService</code> system service.</p> 28 <p>Mounting of physical external storage volumes is handled by <code>vold</code>, which 31 <p>For Android 4.2.2 and earlier, the device-specific <code>vold.fstab</code> 34 <pre><code>dev_mount <label> <mount_point> <partition> <sysfs_path> [flags] 35 </code></pre [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
PKIXAttrCertChecker.java | 13 * Returns an immutable <code>Set</code> of X.509 attribute certificate 14 * extensions that this <code>PKIXAttrCertChecker</code> supports or 15 * <code>null</code> if no extensions are supported. 17 * Each element of the set is a <code>String</code> representing the 21 * <code>PKIXAttrCertChecker</code> might possibly be able to proces [all...] |
/external/chromium_org/chrome/common/extensions/docs/templates/articles/manifest/ |
default_locale.html | 4 Specifies the subdirectory of <code>_locales</code> 7 that have a <code>_locales</code> directory; 9 that have no <code>_locales</code> directory.
|
/external/chromium_org/net/http/ |
http_status_code.cc | 2 // Use of this source code is governed by a BSD-style license that can be 11 const char* GetHttpReasonPhrase(HttpStatusCode code) { 12 switch (code) { 14 #define HTTP_STATUS(label, code, reason) case HTTP_ ## label: return reason; 19 NOTREACHED() << "unknown HTTP status code " << code;
|
/libcore/luni/src/main/java/org/w3c/dom/ls/ |
LSException.java | 16 * Parser or write operations may throw an <code>LSException</code> if the 18 * <code>DOMError</code> with a severity of 19 * <code>DOMError.SEVERITY_FATAL_ERROR</code> or a non recovered 20 * <code>DOMError.SEVERITY_ERROR</code>, or if 21 * <code>DOMErrorHandler.handleError()</code> returned <code>false</code> 34 public short code; field in class:LSException [all...] |
/packages/apps/Mms/src/org/w3c/dom/smil/ |
TimeEvent.java | 19 * The <code>TimeEvent</code> interface provides specific contextual 24 * The <code>view</code> attribute identifies the 25 * <code>AbstractView</code> from which the event was generated. 30 * Specifies some detail information about the <code>Event</code> , 36 * The <code>initTimeEvent</code> method is used to initialize the value [all...] |
TimeList.java | 16 * The <code>TimeList</code> interface provides the abstraction of an ordered 19 * <p> The items in the <code>TimeList</code> are accessible via an integral 24 * Returns the <code>index</code> th item in the collection. If 25 * <code>index</code> is greater than or equal to the number of times in 26 * the list, this returns <code>null</code> [all...] |
/frameworks/base/docs/html/tools/help/ |
android.jd | 6 <p>{@code android} is an important development tool that lets you:</p> 19 </ul>If you are using Eclipse, the <code>android</code> tool's features are integrated 23 and may be out of date. For the most current list of options, execute <code>android 24 --help</code>.</p> 35 <dt><code>-s</code></dt> 39 <dt><code>-h</code></dt> 43 <dt><code>-v</code></dt [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/ |
PSSParameterSpecTest.java | 31 * Tests for <code>PSSParameterSpec</code> class (1.5) 46 * Test #1 for <code>PSSParameterSpec(int)</code> ctor<br> 48 * <code>PSSParameterSpec<code> object 56 * Test #2 for <code>PSSParameterSpec(int)</code> ctor<br> 58 * throws <code>IllegalArgumentException</code> [all...] |
/external/chromium_org/ppapi/api/private/ |
ppb_isolated_file_system_private.idl | 2 * Use of this source code is governed by a BSD-style license that can be 9 * This file contains the <code>PPB_IsolatedFileSystem_Private</code> interface. 17 * The <code>PP_IsolatedFileSystemType_Private</code> values indicate the type 30 /* <code>PPB_IsolatedFileSystem_Private</code> interface */ 38 * @param[in] instance A <code>PP_Instance</code> identifying the instance 41 * <code>PP_IsolatedFileSystemType_Private</code> enum [all...] |
/libcore/luni/src/main/java/org/w3c/dom/traversal/ |
NodeIterator.java | 19 * <code>NodeIterators</code> are used to step through a set of nodes, e.g. 20 * the set of nodes in a <code>NodeList</code>, the document subtree 21 * governed by a particular <code>Node</code>, the results of a query, or 23 * the implementation of the <code>NodeIterator</code>. DOM Level 2 24 * specifies a single <code>NodeIterator</code> implementation fo [all...] |
/libcore/luni/src/test/java/tests/security/spec/ |
PSSParameterSpecTest.java | 32 * Tests for <code>PSSParameterSpec</code> class (1.5) 38 * Test #1 for <code>PSSParameterSpec(int)</code> ctor<br> 40 * <code>PSSParameterSpec<code> object 48 * Test #2 for <code>PSSParameterSpec(int)</code> ctor<br> 50 * throws <code>IllegalArgumentException</code> [all...] |
/packages/apps/Mms/src/org/w3c/dom/events/ |
EventTarget.java | 16 * The <code>EventTarget</code> interface is implemented by all 17 * <code>Nodes</code> in an implementation which supports the DOM Event 19 * binding-specific casting methods on an instance of the <code>Node</code> 21 * <code>EventListeners</code> on an <code>EventTarget</code> and dispatch [all...] |