/external/opencore/fileformats/mp4/composer/src/ |
slconfigdescriptor.cpp | 97 int32 contents = 0; local 98 contents += 1; //(8 bits for predefined flag) 102 contents += 1; //(8 bits for packet boolean flags) 103 contents += 4; // (32 bits for TS resolution) 104 contents += 4; // (32 bits for OCR resolution) 105 contents += 1; // (8 bits for TS length) 106 contents += 1; // (8 bits for OCR length) 107 contents += 1; // (8 bits for AU length) 108 contents += 1; // (8 bits for instant bitrate length) 109 contents += 2; // (16 bits for packed DP, AUSN, pacSN lengths plus reserved [all...] |
/dalvik/dx/tests/040-dex-constructor/ |
info.txt | 2 conversion runs without failure, though the contents of the converted
|
/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/srec/shared/src/ |
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...] |
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...] |
/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...] |
/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/clearsilver/java-jni/ |
CSFileLoader.java | 13 * Callback method that is expected to return the contents of the specified 18 * @return a string containing the contents of the file.
|
j_neo_util.h | 18 char **contents);
|
/dalvik/dx/tests/035-dex-instance-var/ |
info.txt | 2 conversion runs without failure, though the contents of the converted
|
/dalvik/dx/tests/036-dex-static-var/ |
info.txt | 2 conversion runs without failure, though the contents of the converted
|
/dalvik/dx/tests/037-dex-static-final-var/ |
info.txt | 2 conversion runs without failure, though the contents of the converted
|
/dalvik/dx/tests/038-dex-instance-method/ |
info.txt | 2 conversion runs without failure, though the contents of the converted
|
/dalvik/dx/tests/039-dex-static-method/ |
info.txt | 2 conversion runs without failure, though the contents of the converted
|
/dalvik/dx/tests/041-dex-abstract-method/ |
info.txt | 2 conversion runs without failure, though the contents of the converted
|
/dalvik/dx/tests/042-dex-ignore-result/ |
info.txt | 2 conversion runs without failure, though the contents of the converted
|
/dalvik/dx/tests/043-dex-two-classes/ |
info.txt | 2 conversion runs without failure, though the contents of the converted
|
/dalvik/dx/tests/089-dex-define-object/ |
info.txt | 3 runs without failure, though the contents of the converted file are
|
/external/srec/portable/src/ |
ArrayListImpl.c | 54 impl->contents = MALLOC(minCapacity * sizeof(void*), MTAG); 55 if (impl->contents == NULL) 82 void** temp = REALLOC(impl->contents, newCapacity * sizeof(void*)); 85 impl->contents = temp; 90 impl->contents[i] = impl->contents[i - 1]; 92 impl->contents[index] = element; 118 impl->contents[i] = impl->contents[i+1]; 129 if ((temp = REALLOC(impl->contents, newCapacity * sizeof(void*))) == NULL [all...] |
/external/webkit/WebKitTools/Scripts/ |
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)
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/ |
DisplayText.java | 61 DERString contents; field in class:DisplayText 83 contents = (DERString)new DERIA5String (text); 86 contents = (DERString)new DERUTF8String(text); 89 contents = (DERString)new DERVisibleString(text); 92 contents = (DERString)new DERBMPString(text); 95 contents = (DERString)new DERUTF8String(text); 115 contents = new DERUTF8String(text); 127 contents = de; 153 return (DERObject)contents; 163 return contents.getString() [all...] |
/frameworks/base/awt/java/awt/ |
BufferCapabilities.java | 43 * The flip contents. 56 * the back buffer contents after page flipping, null if page 101 * Gets the flip contents of the back buffer after page-flipping. 139 * The FlipContents class represents a set of possible back buffer contents 147 * The back buffered contents are cleared with the background color 153 * The back buffered contents are copied to the front buffer before 159 * The back buffer contents are the prior contents of the front buffer. 164 * The back buffer contents are undefined after flipping 169 * Instantiates a new flip contents [all...] |
/external/bluetooth/glib/gobject/ |
gvaluetypes.c | 562 * Set the contents of a %G_TYPE_CHAR #GValue to @v_char. 577 * Get the contents of a %G_TYPE_CHAR #GValue. 579 * Returns: character contents of @value 594 * Set the contents of a %G_TYPE_UCHAR #GValue to @v_uchar. 609 * Get the contents of a %G_TYPE_UCHAR #GValue. 611 * Returns: unsigned character contents of @value 626 * Set the contents of a %G_TYPE_BOOLEAN #GValue to @v_boolean. 641 * Get the contents of a %G_TYPE_BOOLEAN #GValue. 643 * Returns: boolean contents of @value 658 * Set the contents of a %G_TYPE_INT #GValue to @v_int 1119 gchar *contents; local [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-96526-003.js | 4 * The contents of this file are subject to the Netscape Public License 22 * Alternatively, the contents of this file may be used under the terms of [all...] |
/dalvik/libcore/support/src/test/java/tests/support/ |
Support_TestResource_en.java | 24 Object[][] contents = { { "parent2", "enValue2" }, local 27 return contents;
|