HomeSort by relevance Sort by last modified time
    Searched full:contents (Results 26 - 50 of 4231) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/libcore/support/src/test/java/tests/support/
Support_TestResource_en_US.java 24 Object[][] contents = { { "parent3", "enUSValue3" }, local
27 return contents;
Support_TestResource_fr.java 24 Object[][] contents = { { "parent2", "frValue2" }, local
27 return contents;
Support_TestResource_fr_FR.java 24 Object[][] contents = { { "parent3", "frFRValue3" }, local
27 return contents;
Support_TestResource_fr_FR_VAR.java 24 Object[][] contents = { { "parent4", "frFRVARValue4" }, local
28 return contents;
  /external/webkit/WebCore/manual-tests/
Default-port-frame.html 1 To run this test you will need to put this file and Default-port-frame-contents.html
5 <iframe src="http://localhost:80/resources/Default-port-frame-contents.html"> </iframe>
scrolling-nestedframesets.html 12 <li>Try to scroll the contents of the frame up and down my using your mouse's scrollwheel.</li>
19 The contents of the frame each frame should scroll.</p>
22 The contents of each frame do NOT scroll.
plain-text-paste.html 19 The fields&rsquo; contents will match the Expected Contents.
23 The fields&rsquo; contents will NOT match the Expected Contents.
30 <td><b>Expected Contents</b></td>
  /dalvik/dx/src/junit/runner/
ClassPathTestCollector.java 49 String[] contents= thisRoot.list(); local
50 if (contents != null) {
51 for (int i= 0; i < contents.length; i++)
52 gatherFiles(classRoot, classFileName+File.separatorChar+contents[i], result);
  /dalvik/libcore/luni/src/test/java/junit/runner/
ClassPathTestCollector.java 49 String[] contents= thisRoot.list(); local
50 if (contents != null) {
51 for (int i= 0; i < contents.length; i++)
52 gatherFiles(classRoot, classFileName+File.separatorChar+contents[i], result);
  /frameworks/base/test-runner/src/junit/runner/
ClassPathTestCollector.java 50 String[] contents= thisRoot.list(); local
51 if (contents != null) {
52 for (int i= 0; i < contents.length; i++)
53 gatherFiles(classRoot, classFileName+File.separatorChar+contents[i], result);
  /external/webkit/WebKit/gtk/tests/
testmimehandling.c 49 char* contents; local
53 g_file_get_contents("test.pdf", &contents, &length, &error);
56 soup_message_body_append(msg->response_body, SOUP_MEMORY_TAKE, contents, length);
58 char* contents; local
62 g_file_get_contents("test.html", &contents, &length, &error);
65 soup_message_body_append(msg->response_body, SOUP_MEMORY_TAKE, contents, length);
67 char* contents; local
73 g_file_get_contents("test.txt", &contents, &length, &error);
76 soup_message_body_append(msg->response_body, SOUP_MEMORY_TAKE, contents, length);
78 char* contents; local
    [all...]
testwebview.c 50 char* contents; local
54 g_file_get_contents("blank.ico", &contents, &length, &error);
57 soup_message_body_append(msg->response_body, SOUP_MEMORY_TAKE, contents, length);
59 char* contents = g_strdup("<html><body><div style=\"background-color: green; height: 1200px;\"></div></body></html>"); local
60 soup_message_body_append(msg->response_body, SOUP_MEMORY_TAKE, contents, strlen(contents));
62 char* contents = g_strdup("<html><body><div style=\"background-color: green; height: 50px;\"></div><iframe src=\"bigdiv.html\"></iframe></body></html>"); local
63 soup_message_body_append(msg->response_body, SOUP_MEMORY_TAKE, contents, strlen(contents));
65 char* contents = g_strdup("<html><body>test</body></html>") local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
UserFolderInfo.java 30 ArrayList<ShortcutInfo> contents = new ArrayList<ShortcutInfo>(); field in class:UserFolderInfo
42 contents.add(item);
51 contents.remove(item);
  /dalvik/vm/native/
java_lang_System.c 119 dstArray->contents, dstPos * width,
120 srcArray->contents, srcPos * width,
122 (*copyFunc)((u1*)dstArray->contents + dstPos * width,
123 (const u1*)srcArray->contents + srcPos * width,
140 dstArray->contents, dstPos * width,
141 srcArray->contents, srcPos * width,
143 (*copyFunc)((u1*)dstArray->contents + dstPos * width,
144 (const u1*)srcArray->contents + srcPos * width,
164 srcObj = ((Object**) srcArray->contents) + srcPos;
165 dstObj = ((Object**) dstArray->contents) + dstPos
    [all...]
  /external/opencore/fileformats/mp4/composer/src/
esdescriptor.cpp 69 int32 contents = 0; local
71 contents += 2; //(16 bits for ESID)
72 contents += 1; //(8 bits for packed SDF, UF, reserved, and stream Priority)
75 contents += 2; // depends on ESID
79 contents += 1; // URL length stored in 1 byte
80 contents += _urlLength; // length of actual URL string
82 contents += _pdcd->getSizeOfDescriptorObject();
83 contents += _pslcd->getSizeOfDescriptorObject();
86 _sizeOfClass = contents;
87 _sizeOfSizeField = PVA_FF_AtomUtils::getNumberOfBytesUsedToStoreSizeOfClass(contents);
    [all...]
decoderconfigdescriptor.cpp 218 int32 contents = 0; local
220 contents += 1; // (8 bits for OTI)
221 contents += 1; // (8 bits for Stream type, upStream flag and reserved)
222 contents += 3; // (24 bits for buffer size DB)
223 contents += 4; // (32 bits for max bitrate)
224 contents += 4; // (32 bits for avg bitrate)
230 contents += (*_pdecSpecificInfoVec)[i]->getSizeOfDescriptorObject();
234 _sizeOfClass = contents;
235 _sizeOfSizeField = PVA_FF_AtomUtils::getNumberOfBytesUsedToStoreSizeOfClass(contents);
  /external/webkit/WebKitTools/Scripts/
add-include 107 my $contents = $beforeIncludes;
108 $contents .= "\n\n#include \"config.h\"\n";
109 $contents .= "\n#if $entireFileCondition\n" if $entireFileCondition ne "";
110 $contents .= "#include \"$base.h\"\n\n";
112 $contents .= "#if $condition\n" unless $condition eq "";
113 $contents .= includesParagraph($includes{$condition});
114 $contents .= "#endif\n" unless $condition eq "";
115 $contents .= "\n";
117 $contents .= $afterIncludes;
120 print OUTPUT $contents;
    [all...]
  /external/webkit/SunSpider/
make-hosted 103 my $contents = "var testContents = [ " . join(", ", map { '"' . $_ . '"' } @testContents) . " ];\n";
105 open CONTENTS, ">hosted/${suite}/sunspider-test-contents.js";
106 print CONTENTS $contents;
107 close CONTENTS;
  /external/dropbear/
dropbear.8 19 Display the contents of the file
25 Use the contents of the file
33 Use the contents of the file
  /external/icu4c/tools/toolutil/
writesrc.h 33 * Write the contents of an array of 8/16/32-bit words.
37 * printed before and after the array contents.
59 * printed before and after the array contents.
  /packages/apps/IM/src/com/android/im/imps/
WbxmlPrimitiveSerializer.java 64 String contents = element.getContents(); local
65 if(contents != null) {
66 mWbxmlSerializer.characters(contents);
  /dalvik/dx/tests/034-dex-minimal/
info.txt 8 the conversion runs without failure, though the contents of the
  /external/icu4c/common/unicode/
utf32.h 20 * This file is obsolete and its contents moved to utf_old.h.
  /external/junit/src/junit/runner/
ClassPathTestCollector.java 52 String[] contents= thisRoot.list(); local
53 if (contents != null) {
54 for (int i= 0; i < contents.length; i++)
55 gatherFiles(classRoot, classFileName+File.separatorChar+contents[i], result);
  /external/dbus/test/
decode-gcov.c 246 dump_bb_file (const DBusString *contents)
254 while (string_get_int (contents, i, &val))
267 if (string_get_string (contents, i,
282 if (string_get_string (contents, i,
310 dump_bbg_file (const DBusString *contents)
324 while (i < _dbus_string_get_length (contents))
344 if (!string_get_function (contents, i,
356 if (!string_get_int (contents, i, &val))
363 if (!string_get_int (contents, i, &n_arcs_in_func))
381 if (!string_get_int (contents, i, &n_arcs_in_block)
1279 DBusString contents; local
1553 DBusString contents; local
1872 DBusString contents; local
2147 DBusString contents; local
2170 DBusString contents; local
2193 DBusString contents; local
    [all...]

Completed in 199 milliseconds

12 3 4 5 6 7 8 91011>>