/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
TypeListItem.java | 27 * Representation of a list of class references. 39 /** {@code non-null;} the actual list */ 40 private final TypeList list; field in class:TypeListItem 45 * @param list {@code non-null;} the actual list 47 public TypeListItem(TypeList list) { 48 super(ALIGNMENT, (list.size() * ELEMENT_SIZE) + HEADER_SIZE); 50 this.list = list; 56 return StdTypeList.hashContents(list); [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
CstArray.java | 27 /** {@code non-null;} the actual list of contents */ 28 private final List list; field in class:CstArray 33 * @param list {@code non-null;} the actual list of contents 35 public CstArray(List list) { 36 if (list == null) { 37 throw new NullPointerException("list == null"); 40 list.throwIfMutable() [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
TypeListItem.java | 26 * Representation of a list of class references. 38 /** {@code non-null;} the actual list */ 39 private final TypeList list; field in class:TypeListItem 44 * @param list {@code non-null;} the actual list 46 public TypeListItem(TypeList list) { 47 super(ALIGNMENT, (list.size() * ELEMENT_SIZE) + HEADER_SIZE); 49 this.list = list; 55 return StdTypeList.hashContents(list); [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
TypeListItem.java | 27 * Representation of a list of class references. 39 /** {@code non-null;} the actual list */ 40 private final TypeList list; field in class:TypeListItem 45 * @param list {@code non-null;} the actual list 47 public TypeListItem(TypeList list) { 48 super(ALIGNMENT, (list.size() * ELEMENT_SIZE) + HEADER_SIZE); 50 this.list = list; 56 return StdTypeList.hashContents(list); [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstArray.java | 26 /** {@code non-null;} the actual list of contents */ 27 private final List list; field in class:CstArray 32 * @param list {@code non-null;} the actual list of contents 34 public CstArray(List list) { 35 if (list == null) { 36 throw new NullPointerException("list == null"); 39 list.throwIfMutable() [all...] |
/dalvik/vm/ |
PointerSet.cpp | 22 * Sorted, expanding list of pointers. 27 const void** list; member in struct:PointerSet 40 const void* cur = pSet->list[i]; 60 pSet->list = (const void**)malloc(sizeof(void*) * initialSize); 61 if (pSet->list == NULL) { 80 if (pSet->list != NULL) { 81 free(pSet->list); 82 pSet->list = NULL; 96 * Get the number of pointers currently stored in the list. 104 * Get the Nth entry from the list [all...] |
/external/chromium/chrome/browser/metrics/ |
metrics_service_unittest.cc | 36 // Store and retrieve empty list. 38 ListValue list; local 41 MetricsService::StoreUnsentLogsHelper(local_list, kMaxLocalListSize, &list); 42 EXPECT_EQ(0U, list.GetSize()); 46 MetricsService::RecallUnsentLogsHelper(list, &local_list)); 52 ListValue list; local 58 MetricsService::StoreUnsentLogsHelper(local_list, kMaxLocalListSize, &list); 60 // |list| will now contain the following: 62 EXPECT_EQ(3U, list.GetSize()); 65 ListValue::const_iterator it = list.begin() 92 ListValue list; local 127 ListValue list; local 146 ListValue list; local 165 ListValue list; local 184 ListValue list; local [all...] |
/hardware/qcom/display/msm8974/libhwcomposer/ |
hwc_mdpcomp.h | 43 int prepare(hwc_context_t *ctx, hwc_display_contents_1_t* list); 45 virtual bool draw(hwc_context_t *ctx, hwc_display_contents_1_t *list) = 0; 84 /* maps layer list to mdp list */ 88 /* maps mdp list to layer list */ 118 void cacheAll(hwc_display_contents_1_t* list); 124 hwc_display_contents_1_t* list) = 0; 132 hwc_display_contents_1_t* list) = 0; 136 hwc_display_contents_1_t* list); [all...] |
/external/chromium_org/chrome/browser/resources/print_preview/search/ |
destination_list.css | 5 .destination-list > header { 11 .destination-list .title { 18 .destination-list .action-link { 22 .destination-list > ul { 23 list-style-type: none; 28 .destination-list .throbber-container { 35 .destination-list .no-destinations-message { 42 .destination-list > footer { 47 .destination-list .total {
|
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/ |
UnmodifiableLazyStringListTest.java | 10 // notice, this list of conditions and the following disclaimer. 12 // copyright notice, this list of conditions and the following disclaimer 55 UnmodifiableLazyStringList list = new UnmodifiableLazyStringList(rawList); local 56 assertEquals(3, list.size()); 57 assertSame(STRING_A, list.get(0)); 58 assertSame(STRING_B, list.get(1)); 59 assertSame(STRING_C, list.get(2)); 60 assertEquals(BYTE_STRING_A, list.getByteString(0)); 61 assertEquals(BYTE_STRING_B, list.getByteString(1)); 62 assertEquals(BYTE_STRING_C, list.getByteString(2)) 67 UnmodifiableLazyStringList list = new UnmodifiableLazyStringList(rawList); local 95 UnmodifiableLazyStringList list = new UnmodifiableLazyStringList(rawList); local 115 UnmodifiableLazyStringList list = new UnmodifiableLazyStringList(rawList); local [all...] |
/external/chromium_org/chrome/browser/resources/net_internals/ |
events_view.css | 27 #events-view-source-list { 32 #events-view-source-list-table { 36 #events-view-source-list-table thead td { 42 #events-view-source-list-table td { 51 #events-view-source-list-tbody .mouseover { 55 #events-view-source-list-tbody .selected { 59 #events-view-source-list-tbody .error { 63 #events-view-source-list-tbody .inactive { 67 #events-view-source-list-tbody .source-connect-job { 71 #events-view-source-list-tbody .source-host-resolver-impl-job [all...] |
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
UnmodifiableLazyStringList.java | 10 // notice, this list of conditions and the following disclaimer. 12 // copyright notice, this list of conditions and the following disclaimer 35 import java.util.List; 48 private final LazyStringList list; field in class:UnmodifiableLazyStringList 50 public UnmodifiableLazyStringList(LazyStringList list) { 51 this.list = list; 56 return list.get(index); 61 return list.size(); 66 return list.getByteString(index) [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
zip_output_unittest.sh | 12 # notice, this list of conditions and the following disclaimer. 14 # copyright notice, this list of conditions and the following disclaimer 61 unzip -t $TEST_TMPDIR/testzip.zip > $TEST_TMPDIR/testzip.list || fail 'unzip failed.' 63 grep 'testing: testzip\.pb\.cc *OK$' $TEST_TMPDIR/testzip.list > /dev/null \ 65 grep 'testing: testzip\.pb\.h *OK$' $TEST_TMPDIR/testzip.list > /dev/null \ 67 grep 'testing: testzip_pb2\.py *OK$' $TEST_TMPDIR/testzip.list > /dev/null \ 69 grep -i 'manifest' $TEST_TMPDIR/testzip.list > /dev/null \ 77 jar tf $TEST_TMPDIR/testzip.jar > $TEST_TMPDIR/testzip.list || fail 'jar failed.' 79 grep '^test/jar/Foo\.java$' $TEST_TMPDIR/testzip.list > /dev/null \ 81 grep '^test/jar/Bar\.java$' $TEST_TMPDIR/testzip.list > /dev/null [all...] |
/external/elfutils/libelf/ |
elf_nextscn.c | 31 Inc. may make changes or additions to the list of Approved Interfaces. 92 Elf_ScnList *list = scn->list; local 94 if (scn + 1 < &list->data[list->cnt]) 96 else if (scn + 1 == &list->data[list->max] 97 && (list = list->next) != NULL) 99 /* If there is another element in the section list it mus [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
zip_output_unittest.sh | 12 # notice, this list of conditions and the following disclaimer. 14 # copyright notice, this list of conditions and the following disclaimer 55 unzip -t testzip.zip > testzip.list || fail 'unzip failed.' 57 grep 'testing: testzip\.pb\.cc *OK$' testzip.list > /dev/null \ 59 grep 'testing: testzip\.pb\.h *OK$' testzip.list > /dev/null \ 61 grep 'testing: testzip_pb2\.py *OK$' testzip.list > /dev/null \ 63 grep -i 'manifest' testzip.list > /dev/null \ 71 jar tf testzip.jar > testzip.list || fail 'jar failed.' 73 grep '^test/jar/Foo\.java$' testzip.list > /dev/null \ 75 grep '^test/jar/Bar\.java$' testzip.list > /dev/null [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
span.cc | 9 // notice, this list of conditions and the following disclaimer. 11 // copyright notice, this list of conditions and the following disclaimer 72 void DLL_Init(Span* list) { 73 list->next = list; 74 list->prev = list; 84 int DLL_Length(const Span* list) { 86 for (Span* s = list->next; s != list; s = s->next) [all...] |
span.h | 9 // notice, this list of conditions and the following disclaimer. 11 // copyright notice, this list of conditions and the following disclaimer 47 Span* next; // Used when in link list 48 Span* prev; // Used when in link list 49 void* objects; // Linked list of free objects 78 // Doubly linked list of spans. 81 // Initialize *list to an empty list. 82 void DLL_Init(Span* list); 84 // Remove 'span' from the linked list in which it resides, updating th [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
span.cc | 9 // notice, this list of conditions and the following disclaimer. 11 // copyright notice, this list of conditions and the following disclaimer 72 void DLL_Init(Span* list) { 73 list->next = list; 74 list->prev = list; 84 int DLL_Length(const Span* list) { 86 for (Span* s = list->next; s != list; s = s->next) [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/list/ |
transform.hpp | 18 # include <boost/preprocessor/list/fold_right.hpp> 25 # define BOOST_PP_LIST_TRANSFORM(op, data, list) BOOST_PP_TUPLE_ELEM(3, 2, BOOST_PP_LIST_FOLD_RIGHT(BOOST_PP_LIST_TRANSFORM_O, (op, data, BOOST_PP_NIL), list)) 27 # define BOOST_PP_LIST_TRANSFORM(op, data, list) BOOST_PP_LIST_TRANSFORM_I(op, data, list) 28 # define BOOST_PP_LIST_TRANSFORM_I(op, data, list) BOOST_PP_TUPLE_ELEM(3, 2, BOOST_PP_LIST_FOLD_RIGHT(BOOST_PP_LIST_TRANSFORM_O, (op, data, BOOST_PP_NIL), list)) 43 # define BOOST_PP_LIST_TRANSFORM_D(d, op, data, list) BOOST_PP_TUPLE_ELEM(3, 2, BOOST_PP_LIST_FOLD_RIGHT_ ## d(BOOST_PP_LIST_TRANSFORM_O, (op, data, BOOST_PP_NIL), list)) 45 # define BOOST_PP_LIST_TRANSFORM_D(d, op, data, list) BOOST_PP_LIST_TRANSFORM_D_I(d, op, data, list [all...] |
/system/core/toolbox/ |
dynarray.c | 64 void strlist_init( strlist_t *list ) 66 dynarray_init(list); 69 void strlist_append_b( strlist_t *list, const void* str, size_t slen ) 74 dynarray_append(list, copy); 77 void strlist_append_dup( strlist_t *list, const char *str) 79 strlist_append_b(list, str, strlen(str)); 82 void strlist_done( strlist_t *list ) 84 STRLIST_FOREACH(list, string, free(string)); 85 dynarray_done(list); 95 void strlist_sort( strlist_t *list ) [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
malloc_hook_test.cc | 9 // notice, this list of conditions and the following disclaimer. 11 // copyright notice, this list of conditions and the following disclaimer 100 int TestHookList_Traverse(const TestHookList& list, int* output_array, int n) { 102 int result = list.Traverse(values_as_hooks, min(n, kHookListMaxValues)); 109 bool TestHookList_Add(TestHookList* list, int val) { 110 return list->Add(reinterpret_cast<MallocHook::NewHook>(val)); 113 bool TestHookList_Remove(TestHookList* list, int val) { 114 return list->Remove(reinterpret_cast<MallocHook::NewHook>(val)); 122 TestHookList list = INIT_HOOK_LIST(69); local 124 EXPECT_EQ(1, TestHookList_Traverse(list, values, 2)) 130 TestHookList list = INIT_HOOK_LIST(69); local 139 TestHookList list = INIT_HOOK_LIST(69); local 150 TestHookList list = INIT_HOOK_LIST(69); local 166 TestHookList list = INIT_HOOK_LIST(69); local 182 TestHookList list = INIT_HOOK_LIST(69); local 192 TestHookList list = INIT_HOOK_LIST(69); local 249 static TestHookList list = INIT_HOOK_LIST(69); member in namespace:__anon14418 [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
malloc_hook_test.cc | 9 // notice, this list of conditions and the following disclaimer. 11 // copyright notice, this list of conditions and the following disclaimer 100 int TestHookList_Traverse(const TestHookList& list, int* output_array, int n) { 102 int result = list.Traverse(values_as_hooks, min(n, kHookListMaxValues)); 109 bool TestHookList_Add(TestHookList* list, int val) { 110 return list->Add(reinterpret_cast<MallocHook::NewHook>(val)); 113 bool TestHookList_Remove(TestHookList* list, int val) { 114 return list->Remove(reinterpret_cast<MallocHook::NewHook>(val)); 122 TestHookList list = INIT_HOOK_LIST(69); local 124 EXPECT_EQ(1, TestHookList_Traverse(list, values, 2)) 130 TestHookList list = INIT_HOOK_LIST(69); local 139 TestHookList list = INIT_HOOK_LIST(69); local 150 TestHookList list = INIT_HOOK_LIST(69); local 166 TestHookList list = INIT_HOOK_LIST(69); local 182 TestHookList list = INIT_HOOK_LIST(69); local 192 TestHookList list = INIT_HOOK_LIST(69); local 249 static TestHookList list = INIT_HOOK_LIST(69); member in namespace:__anon14461 [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
network_unittest.cc | 9 * this list of conditions and the following disclaimer. 11 * this list of conditions and the following disclaimer in the documentation 55 const NetworkManager::NetworkList& list, 57 network_manager.MergeNetworkList(list, changed); 67 NetworkManager::NetworkList list; local 68 network_manager.CreateNetworks(include_ignored, &list); 69 return list; 198 // Add ipv4_network1 to the list of networks. 199 NetworkManager::NetworkList list; local 200 list.push_back(new Network(ipv4_network1)) 296 NetworkManager::NetworkList list; local 371 NetworkManager::NetworkList list; local 407 NetworkManager::NetworkList list; local 462 NetworkManager::NetworkList list; local 493 NetworkManager::NetworkList list; local 533 ifaddrs list; local 556 NetworkManager::NetworkList list; local [all...] |
/external/chromium_org/base/android/java/src/org/chromium/base/ |
CollectionUtil.java | 27 ArrayList<E> list = new ArrayList<E>(elements.length); local 28 Collections.addAll(list, elements); 29 return list; 33 ArrayList<E> list = new ArrayList<E>(); local 35 list.add(element); 37 return list;
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSBorderImage.cpp | 28 RefPtr<CSSValueList> list = CSSValueList::createSpaceSeparated(); local 30 list->append(image); 43 list->append(listSlash); 45 list->append(imageSlice); 47 list->append(repeat); 48 return list.release();
|