HomeSort by relevance Sort by last modified time
    Searched refs:contents (Results 1 - 25 of 359) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/support/src/test/java/tests/support/
Support_TestResource_en.java 24 Object[][] contents = { { "parent2", "enValue2" }, local
27 return contents;
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;
Support_TestResource.java 25 Object[][] contents = { { "parent1", "parentValue1" }, local
28 return contents;
  /external/chromium/base/
sys_info_linux.cc 28 std::string contents; local
29 file_util::ReadFileToString(FilePath("/proc/sys/kernel/shmmax"), &contents);
30 limit = strtoul(contents.c_str(), NULL, 0);
  /external/webkit/WebCore/platform/gtk/
SharedBufferGtk.cpp 36 gchar* contents; local
39 if (!g_file_get_contents(filename, &contents, &size, &error)) {
40 LOG_ERROR("Failed to fully read contents of file %s - %s", filenameForDisplay(filePath).utf8().data(), error->message);
46 RefPtr<SharedBuffer> result = SharedBuffer::create(contents, size);
48 g_free(contents);
  /external/srec/shared/src/
IntArrayListImpl.c 47 impl->contents = MALLOC((INITIAL_SIZE + 1) * sizeof(int), MTAG);
48 if (impl->contents == NULL)
68 impl->contents = value;
81 int* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(int));
84 impl->contents = temp;
87 impl->contents[impl->virtualSize] = element;
95 int* contents = impl->contents; /* cache pointer */ local
101 if (contents[i] == element)
109 contents[i] = contents[i+1]
135 int* contents = impl->contents; \/* cache value *\/ local
    [all...]
Int8ArrayListImpl.c 48 impl->contents = MALLOC((INITIAL_SIZE + 1) * sizeof(asr_int8_t), MTAG);
49 if (impl->contents == NULL)
69 impl->contents = value;
82 asr_int8_t* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(asr_int8_t));
85 impl->contents = temp;
88 impl->contents[impl->virtualSize] = element;
96 asr_int8_t* contents = impl->contents; /* cache pointer */ local
102 if (contents[i] == element)
110 contents[i] = contents[i+1]
136 asr_int8_t* contents = impl->contents; \/* cache value *\/ local
    [all...]
  /system/core/libcutils/
array.c 27 void** contents; member in struct:Array
40 free(array->contents);
71 if (array->contents == NULL) {
79 newContents = realloc(array->contents, sizeof(void*) * newCapacity);
86 array->contents = newContents;
99 array->contents[size] = pointer;
112 return array->contents[index];
118 void* pointer = array->contents[index];
124 memmove(array->contents + index, array->contents + index + 1,
    [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);
  /bionic/libc/kernel/arch-x86/asm/
ldt.h 26 unsigned int contents:2; member in struct:user_desc
  /development/ndk/platforms/android-5/arch-x86/include/asm/
ldt.h 26 unsigned int contents:2; member in struct:user_desc
  /external/clearsilver/java-jni/
j_neo_util.h 18 char **contents);
  /external/kernel-headers/original/asm-x86/
ldt.h 25 unsigned int contents:2; member in struct:user_desc
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
ldt.h 26 unsigned int contents:2; member in struct:user_desc
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
ldt.h 26 unsigned int contents:2; member in struct:user_desc
  /external/bluetooth/glib/tests/
markup-test.c 108 test_in_chunks (const gchar *contents,
122 contents + i,
147 gchar *contents; local
154 &contents,
165 if (!g_markup_parse_context_parse (context, contents, length, NULL))
180 if (test_in_chunks (contents, length, 1) != 0)
184 if (test_in_chunks (contents, length, 2) != 0)
188 if (test_in_chunks (contents, length, 5) != 0)
192 if (test_in_chunks (contents, length, 12) != 0)
196 if (test_in_chunks (contents, length, 1024) != 0
    [all...]
  /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...]
clean-header-guards 37 contents = file.read
38 match_results = contents.match(/#ifndef (\S+)\n#define \1/s)
43 contents.gsub!(/#{current_guard}\b/, new_guard)
49 new_file.write(contents)
  /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...]
  /development/tools/idegen/src/
Files.java 43 static void toFile(String contents, File file) throws IOException {
45 out.write(contents);
  /external/webkit/WebKit/win/WebKit.vcproj/
FixMIDLHeaders.pl 51 my @contents = <IN>;
57 foreach my $line (@contents) {
  /libcore/luni/src/main/java/java/util/
AbstractCollection.java 46 * to the contents of this {@code Collection} (optional). This implementation
197 * @return an iterator for accessing the {@code Collection} contents.
350 public <T> T[] toArray(T[] contents) {
352 if (size > contents.length) {
353 Class<?> ct = contents.getClass().getComponentType();
354 contents = (T[]) Array.newInstance(ct, size);
357 contents[index++] = (T) entry;
359 if (index < contents.length) {
360 contents[index] = null;
362 return contents;
    [all...]

Completed in 227 milliseconds

1 2 3 4 5 6 7 8 91011>>