HomeSort by relevance Sort by last modified time
    Searched full:description (Results 76 - 100 of 12483) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/events/touch/resources/
create-touch-event.js 0 description = "This tests whether the DOM can create TouchEvents.";
3 debug(description);
  /frameworks/base/libs/hwui/
ProgramCache.cpp 439 Program* ProgramCache::get(const ProgramDescription& description) {
440 programid key = description.key();
444 description.log("Could not find program");
445 program = generateProgram(description, key);
457 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) {
458 String8 vertexShader = generateVertexShader(description);
459 String8 fragmentShader = generateFragmentShader(description);
461 return new Program(description, vertexShader.string(), fragmentShader.string());
464 static inline size_t gradientIndex(const ProgramDescription& description) {
465 return description.gradientType * 2 + description.isSimpleGradient
    [all...]
  /libcore/luni/src/test/resources/
recipt.dtd 1 <!ELEMENT collection (description,recipe+)>
2 <!ELEMENT description ANY>
  /libcore/luni/src/test/resources/systemid/
recipt.dtd 1 <!ELEMENT collection (description,recipe+)>
2 <!ELEMENT description ANY>
  /tools/motodev/src/plugins/android.codeutils/templates/activity_samples/img_text_list/
img_text_strings.xml 5 <string name="description">description</string>
  /tools/motodev/src/plugins/android.codeutils/templates/activity_samples/mult_selection_img/
select_img_list_strings.xml 5 <string name="description">description</string>
  /tools/motodev/src/plugins/android.codeutils/templates/activity_samples/single_selection_img/
single_sel_img_strings.xml 5 <string name="description">description</string>
  /external/e2fsprogs/
SHLIBS 2 Description: Common error code library
9 Description: Generic Subsystem library (Simple tty UI)
16 Description: The ext2fs (raw interface) library
23 Description: The e2p (ext2fs's programmers) library
30 Description: DCE Universally Unique ID (UUID) library
  /external/junit/src/org/junit/internal/runners/model/
EachTestNotifier.java 7 import org.junit.runner.Description;
15 private final Description fDescription;
17 public EachTestNotifier(RunNotifier notifier, Description description) {
19 fDescription= description;
  /external/junit/src/org/junit/runner/manipulation/
Filter.java 3 import org.junit.runner.Description;
21 public boolean shouldRun(Description description) {
45 public static Filter matchMethodDescription(final Description desiredDescription) {
48 public boolean shouldRun(Description description) {
49 if (description.isTest())
50 return desiredDescription.equals(description);
53 for (Description each : description.getChildren()
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/webNavigation/basic/_locales/en/
messages.json 4 "description": "The extension name."
8 "description": "The extension description."
13 "description": "The message posted in the popup for each stored navigation.",
28 "description": "Notification displayed for each webNavigation event."
33 "description": "Notification displayed in a webNavigation event handler without data!"
38 "description": "Error logged when `onCommitted` is triggered on a non-pending request."
42 "description": "Error logged when `onCompleted` is triggered on a non-pending request."
46 "description": "Error logged when `onErrorOccurred` is triggered on a non-pending request."
50 "description": "Error logged when `onCompleted` is triggered on a non-pending request.
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
DescriptionBox.java 27 * Gives a language dependent description of the media contained in the ISO file.
33 private String description; field in class:DescriptionBox
44 return description;
48 return 7 + Utf8.utf8StringLengthInBytes(description);
55 description = IsoTypeReader.readString(content);
62 byteBuffer.put(Utf8.convert(description));
67 return "DescriptionBox[language=" + getLanguage() + ";description=" + getDescription() + "]";
74 public void setDescription(String description) {
75 this.description = description;
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
AlertException.java 31 // alert description code
32 private final byte description; field in class:AlertException
37 * @param description The alert description code from {@link AlertProtocol}
42 protected AlertException(byte description, SSLException reason) {
45 this.description = description;
58 * Returns alert's description code.
60 * @return alert description code from {@link AlertProtocol}
64 return description;
    [all...]
  /external/bluetooth/bluedroid/hci/include/
utils.h 23 * Description: Utility functions declaration
61 ** Description Utils initialization
72 ** Description Utils cleanup
83 ** Description Initialize the given buffer queue
94 ** Description Enqueue a buffer at the tail of the given queue
105 ** Description Dequeues a buffer from the head of the given queue
116 ** Description Dequeues a buffer from the head of the given queue without lock
127 ** Description Return a pointer to the next buffer linked to the given buffer
139 ** Description Dequeue the given buffer from the middle of the given queue
150 ** Description Dequeue the given buffer from the middle of the given queue without loc
    [all...]
  /external/webkit/Source/WebCore/manual-tests/inspector/
console-log-formatting.html 29 function testAllSpecifiers(value, description) {
31 test("'Format " + description + " as " + specifiers[specifier] + ": %" + specifier + "', " + value + "");
36 { value: "window.noSuchVariable", description: "undefined" },
37 { value: "s", description: "string" },
38 { value: "i", description: "positive integer" },
39 { value: "ni", description: "negative integer" },
40 { value: "f", description: "float" },
41 { value: "o", description: "object" },
42 { value: "document.body", description: "body" },
43 { value: "/test/", description: "RegExp" }
    [all...]
  /external/chromium/chrome/common/extensions/api/
extension_api.json 9 "description": "An object containing information about the script context that sent a message or request.",
11 "tab": {"$ref": "Tab", "optional": true, "description":"This property will <b>only</b> be present when the connection was opened from a tab or content script."},
12 "id": {"type": "string", "description": "The extension ID of the extension that opened the connection."}
18 "description": "An object which allows the addition and removal of listeners for a Chrome event.",
30 "description": "An object which allows two way communication with other pages.",
39 "description": "This property will <b>only</b> be present on ports passed to onConnect/onConnectExternal listeners."
50 "description": "Set for the lifetime of a callback if an ansychronous extension api has resulted in an error. If no error has occured lastError will be <var>undefined</var>.",
52 "message": { "type": "string", "description": "Description of the error that has taken place." }
59 "description": "True for content scripts running inside incognito tabs, and for extension pages running inside (…)
    [all...]
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/checker/
CheckerDescription.java 29 private String description; field in class:CheckerDescription
68 * Returns the checker description.
69 * @return the checker description.
73 return description;
77 * Sets the checker description.
78 * @param decription the checker description.
82 this.description = decription;
  /external/chromium/chrome/browser/ui/cocoa/applescript/
scripting.sdef 7 <suite name="Standard Suite" code="core" description="Common classes and commands for all applications.">
9 <class name="application" code="capp" description="The application&apos;s top-level scripting object.">
11 <element description="The windows contained within this application, ordered front to back." type="window">
14 <property name="name" code="pnam" description="The name of the application." type="text" access="r"/>
15 <property name="frontmost" code="pisf" description="Is this the frontmost (active) application?" type="boolean" access="r">
18 <property name="version" code="vers" description="The version of the application." type="text" access="r"/>
23 <class name="window" code="cwin" description="A window.">
25 <element description="The tabs contained within the window." type="tab">
28 <property name="name" code="pnam" description="The full title of the window." type="text" access="r">
31 <property name="id" code="ID " description="The unique identifier of the window." type="integer" access="r"
    [all...]
  /external/hamcrest/src/org/hamcrest/
BaseDescription.java 12 * A {@link Description} that is stored as a string.
14 public abstract class BaseDescription implements Description {
15 public Description appendText(String text) {
20 public Description appendDescriptionOf(SelfDescribing value) {
25 public Description appendValue(Object value) {
56 public <T> Description appendValueList(String start, String separator, String end, T... values) {
60 public <T> Description appendValueList(String start, String separator, String end, Iterable<T> values) {
64 private <T> Description appendValueList(String start, String separator, String end, Iterator<T> values) {
68 public Description appendList(String start, String separator, String end, Iterable<? extends SelfDescribing> values) {
72 private Description appendList(String start, String separator, String end, Iterator<? extends SelfDescribing> i) {
    [all...]
  /external/junit/src/org/junit/internal/requests/
SortingRequest.java 5 import org.junit.runner.Description;
12 private final Comparator<Description> fComparator;
14 public SortingRequest(Request request, Comparator<Description> comparator) {
  /tools/motodev/src/plugins/snippets/
plugin.properties 15 category.service.description=Obtain handles for system-level services
36 snippet.service.systemService00.description=Obtain a handle to the manager responsible for interacting with running activities
37 snippet.service.systemService01.description=Obtain a handle to the manager responsible for providing access to the system alarm services
38 snippet.service.systemService02.description=Obtain a handle to the manager responsible for handling volume, ringer modes, audio routing and so on
39 snippet.service.systemService03.description=Obtain a handle to the manager responsible for accessing and modifying the contents of the global clipboard
40 snippet.service.systemService04.description=Obtain a handle to the manager responsible for answering queries about the state of network connectivity
41 snippet.service.systemService05.description=Obtain a handle to the manager responsible for handling input methods
42 snippet.service.systemService06.description=Obtain a handle to the manager responsible for locking and unlocking the keyboard
43 snippet.service.systemService07.description=Obtain a handle to the manager responsible for instantiating layout XML files into their corresponding View objects
44 snippet.service.systemService08.description=Obtain a handle to the manager responsible for providing access to the system location services (g (…)
    [all...]
  /tools/motodev/src/plugins/preflighting.checkers/
plugin.xml 25 description="%mainactivitydescription"
31 description="%mainActivity_singleMainActivity_ConditionDescription"
38 description="%missingDrawableResourcesDescription"
44 description="%MissingDrawableChecker_conditionMissingDrawableFolders_Description"
51 description="%MissingDrawableChecker_conditionMissingDrawableResources_Description"
58 description="%MissingDrawableChecker_conditionUnsupportedDensity_Description"
65 description="%localizationStringDescription"
71 description="%localizationString_missingDefaultLanguageKey_description"
78 description="%localizationStrings_missingLanguageKey_description"
85 description="%localizationStrings_missingValue_description"
    [all...]
  /external/freetype/include/freetype/
fttypes.h 45 /* <Description> */
100 /* <Description> */
112 /* <Description> */
124 /* <Description> */
136 /* <Description> */
147 /* <Description> */
158 /* <Description> */
169 /* <Description> */
180 /* <Description> */
191 /* <Description> */
    [all...]
  /external/bzip2/
libbz2.def 2 DESCRIPTION "libbzip2: library for data compression"
  /external/chromium/chrome/browser/resources/mobile_app/
manifest.json 5 "description": "Chrome OS Mobile Activation Resources",

Completed in 1506 milliseconds

1 2 34 5 6 7 8 91011>>