/external/oprofile/libpp/ |
image_errors.h | 14 #include <list> 40 void report_image_errors(std::list<inverted_profile> const & plist,
|
/hardware/samsung_slsi/exynos5/mobicore/daemon/Common/ |
CWsm.h | 13 * notice, this list of conditions and the following disclaimer. 15 * notice, this list of conditions and the following disclaimer in the 37 #include <list> 63 typedef std::list<CWsm_ptr> wsmList_t;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/ |
include_preprocessed.hpp | 26 # define AUX778076_INCLUDE_STRING BOOST_PP_STRINGIZE(boost/mpl/list/AUX778076_HEADER) 30 # include BOOST_PP_STRINGIZE(boost/mpl/list/AUX778076_HEADER)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_itertools.py | 46 return list(islice(seq, n)) 65 self.assertEqual(list(c('abc', 'def')), list('abcdef')) 66 self.assertEqual(list(c('abc')), list('abc')) 67 self.assertEqual(list(c('')), []) 68 self.assertEqual(take(4, c('abc', 'def')), list('abcd')) 69 self.assertRaises(TypeError, list,c(2, 3)) 72 self.assertEqual(list(chain.from_iterable(['abc', 'def'])), list('abcdef') [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_itertools.py | 46 return list(islice(seq, n)) 65 self.assertEqual(list(c('abc', 'def')), list('abcdef')) 66 self.assertEqual(list(c('abc')), list('abc')) 67 self.assertEqual(list(c('')), []) 68 self.assertEqual(take(4, c('abc', 'def')), list('abcd')) 69 self.assertRaises(TypeError, list,c(2, 3)) 72 self.assertEqual(list(chain.from_iterable(['abc', 'def'])), list('abcdef') [all...] |
/external/chromium_org/chrome/browser/autocomplete/ |
url_prefix.cc | 34 const URLPrefixes& list = GetURLPrefixes(); local 35 for (URLPrefixes::const_iterator i = list.begin(); i != list.end(); ++i) 44 const URLPrefixes& list = GetURLPrefixes(); local 45 for (URLPrefixes::const_iterator i = list.begin(); i != list.end(); ++i)
|
/external/chromium_org/chrome/browser/browsing_data/ |
browsing_data_file_system_helper.h | 8 #include <list> 36 // The client's callback is passed a list of FileSystemInfo objects containing 69 // upon completion, passing it a constant list of FileSystemInfo objects. 76 void(const std::list<FileSystemInfo>&)>& callback) = 0; 118 // Clear this helper's list of canned filesystems. 127 // Returns the current list of filesystems. 128 const std::list<FileSystemInfo>& GetFileSystemInfo() { 134 void(const std::list<FileSystemInfo>&)>& callback) OVERRIDE; 151 // Holds the current list of filesystems returned to the client. Access to 156 std::list<FileSystemInfo> file_system_info_ [all...] |
/external/chromium_org/chrome/browser/resources/options/ |
options_page.css | 112 .page list { 113 /* Min height is a multiple of the list item height (32) */ 129 .settings-list, 130 .settings-list-empty { 135 .settings-list-empty { 189 /* Editable List properties */ 190 list > * { 201 list > .spacer { 203 on the list they will be given an explicit element height but this ensures 208 list:not([disabled]) > :hover [all...] |
/external/chromium_org/net/dns/ |
address_sorter_unittest.cc | 52 AddressList list; local 53 list.push_back(MakeEndPoint("10.0.0.1")); 54 list.push_back(MakeEndPoint("8.8.8.8")); 55 list.push_back(MakeEndPoint("::1")); 56 list.push_back(MakeEndPoint("2001:4860:4860::8888")); 60 sorter->Sort(list, base::Bind(&OnSortComplete, &result,
|
/external/chromium_org/third_party/freetype/src/base/ |
ftutil.c | 5 /* FreeType utility file for memory and list management (body). */ 242 FT_List_Find( FT_List list, 248 cur = list->head; 264 FT_List_Add( FT_List list, 267 FT_ListNode before = list->tail; 276 list->head = node; 278 list->tail = node; 285 FT_List_Insert( FT_List list, 288 FT_ListNode after = list->head; 295 list->tail = node [all...] |
/external/freetype/src/base/ |
ftutil.c | 5 /* FreeType utility file for memory and list management (body). */ 242 FT_List_Find( FT_List list, 248 cur = list->head; 264 FT_List_Add( FT_List list, 267 FT_ListNode before = list->tail; 276 list->head = node; 278 list->tail = node; 285 FT_List_Insert( FT_List list, 288 FT_ListNode after = list->head; 295 list->tail = node [all...] |
/hardware/qcom/audio/legacy/libalsa-intf/ |
alsa_ucm.h | 108 /* add new verbs to end of list */ 127 /* add new devices to end of list */ 154 /* add new modifiers to end of list */ 181 * \brief Free a string list 182 * \param list The string list to free 186 int snd_use_case_free_list(const char *list[], int items); 189 * \brief Obtain a list of entries 190 * \param uc_mgr Use case manager (may be NULL - card list) 191 * \param identifier (may be NULL - card list) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/ |
ListElementAddTransform.java | 23 * A {@link ListElementAddTransform} provides the ability to add a new property to a list of 37 GLListProperty list = getList(currentState); local 38 if (list != null) { 39 list.add(mElement); 45 GLListProperty list = getList(currentState); local 46 if (list != null) { 47 list.remove(mElement);
|
/system/extras/showslab/ |
showslab.c | 58 * Returns the head of the new list of slab_info structures, or NULL on error. 158 * provided slab_info linked list 160 static void free_slablist(struct slab_info *list) 162 while (list) { 163 struct slab_info *temp = list->next; 164 free(list); 165 list = temp; 171 struct slab_info list; local 172 struct slab_info *p = &list; 187 return list.next 272 struct slab_info *list, *p; local [all...] |
/external/javassist/src/main/javassist/ |
ClassPoolTail.java | 190 ClassPathList list = pathList; local 191 while (list != null) { 192 buf.append(list.path.toString()); 194 list = list.next; 208 ClassPathList list = pathList; local 209 if (list == null) 212 while (list.next != null) 213 list = list.next 222 ClassPathList list = pathList; local [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
HttpCookieTest.java | 20 import java.util.List; 588 List<HttpCookie> list = HttpCookie local 590 HttpCookie cookie = list.get(0); 595 list = HttpCookie 597 cookie = list.get(0); 602 list = HttpCookie 604 cookie = list.get(0); 610 list = HttpCookie 612 cookie = list.get(0) 630 List<HttpCookie> list = HttpCookie.parse("test=\\"null\\""); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentMarkerController.cpp | 214 OwnPtr<MarkerList>& list = markers->at(markerListIndex); local 215 if (list->isEmpty() || list->last().endOffset() < newMarker.startOffset()) { 216 list->append(RenderedDocumentMarker(newMarker)); 220 mergeOverlapping(list.get(), toInsert); 222 MarkerList::iterator pos = std::lower_bound(list->begin(), list->end(), toInsert, startsFurther); 223 list->insert(pos - list->begin(), RenderedDocumentMarker(toInsert)); 232 void DocumentMarkerController::mergeOverlapping(MarkerList* list, DocumentMarker& toInsert 263 OwnPtr<MarkerList>& list = (*markers)[markerListIndex]; local 309 OwnPtr<MarkerList>& list = (*markers)[markerListIndex]; local 385 OwnPtr<MarkerList>& list = (*markers)[MarkerTypeToMarkerIndex(markerType)]; local 407 OwnPtr<MarkerList>& list = (*markers)[markerListIndex]; local 425 OwnPtr<MarkerList>& list = (*markers)[markerListIndex]; local 478 OwnPtr<MarkerList>& list = (*markers)[markerListIndex]; local 537 OwnPtr<MarkerList>& list = (*markers)[markerListIndex]; local 581 OwnPtr<MarkerList>& list = (*markers)[markerListIndex]; local 603 OwnPtr<MarkerList>& list = (*markers)[markerListIndex]; local 622 OwnPtr<MarkerList>& list = (*markers)[markerListIndex]; local 666 OwnPtr<MarkerList>& list = (*markers)[MarkerTypeToMarkerIndex(DocumentMarker::TextMatch)]; local 724 OwnPtr<MarkerList>& list = (*markers)[markerListIndex]; local [all...] |
/external/blktrace/btt/ |
list.h | 29 * non-initialized list entries. 43 static inline void INIT_LIST_HEAD(struct list_head *list) 45 list->next = list; 46 list->prev = list; 52 * This is only for internal list manipulation where we know 68 * @head: list head to add it after 81 * @head: list head to add it before 92 * Delete a list entry by making the prev/next entrie [all...] |
/external/chromium_org/chrome/browser/managed_mode/ |
managed_mode_url_filter_unittest.cc | 42 std::vector<std::string> list; local 44 list.push_back("google.com"); 45 filter_->SetFromPatterns(list); 69 std::vector<std::string> list; local 70 list.push_back("google.com"); 71 filter_->SetFromPatterns(list); 80 std::vector<std::string> list; local 82 list.push_back("http://secure.com"); 83 list.push_back("ftp://secure.com"); 84 list.push_back("ws://secure.com") 100 std::vector<std::string> list; local 115 std::vector<std::string> list; local 131 std::vector<std::string> list; local 143 std::vector<std::string> list; local [all...] |
/external/chromium_org/tools/gyp/tools/emacs/ |
gyp.el | 31 ;; is a list of section symbols (see gyp-section-name and gyp-parse-to) 32 ;; with most nested section symbol at the front of the list. 33 (set (make-local-variable 'gyp-parse-history) '((1 . (list)))) 44 (add-to-list 'auto-mode-alist '("\\.gyp\\'" . gyp-mode)) 45 (add-to-list 'auto-mode-alist '("\\.gypi\\'" . gyp-mode)) 46 (add-to-list 'auto-mode-alist '("/\\.gclient\\'" . gyp-mode)) 51 (regexp-opt (list "dependencies" "export_dependent_settings")) 55 (regexp-opt (list "action" "files" "include_dirs" "includes" "inputs" 60 (regexp-opt (list "conditions" "target_conditions")) 104 "A list of section symbols holding at the last parse state point. [all...] |
/external/chromium/chrome/browser/resources/options/ |
cookies_view.css | 7 /* styles for the cookies list elements in cookies_view.html */ 42 #cookies-list { 46 * probably confuse cr.ui.List (which doesn't expect that) anyway */ 53 list.cookie-list .deletable-item { 58 list.cookie-list .deletable-item > :first-child { 63 list.cookie-list > .deletable-item > .close-button { 69 html[dir=rtl] list.cookie-list > .deletable-item > .close-button [all...] |
/external/chromium_org/chrome/browser/policy/ |
configuration_policy_handler_android.cc | 62 const base::ListValue* list = NULL; local 63 value->GetAsList(&list); 64 DCHECK(list); 66 for (base::ListValue::const_iterator it = list->begin(); 67 it != list->end(); ++it) { 71 size_t index = it - list->begin(); 83 const base::ListValue* list = NULL; local 84 if (!value || !value->GetAsList(&list)) 88 for (base::ListValue::const_iterator it = list->begin(); 89 it != list->end(); ++it) [all...] |
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/ |
reg_writer.py | 30 def _StartBlock(self, key, suffix, list): 34 if key != self._last_key.get(id(list), None): 35 list.append('') 36 list.append('[%s]' % key) 37 self._last_key[id(list)] = key 45 list.sort() methods to sort policies. 48 is_list = policy['type'] == 'list' 52 def _WritePolicy(self, policy, key, list): 58 elif policy['type'] == 'list': 59 self._StartBlock(key, policy['name'], list) [all...] |
/external/clang/test/SemaCXX/ |
vararg-non-pod.cpp | 112 __builtin_va_list list; local 113 __builtin_va_start(list, somearg); 117 __builtin_va_list list; local 118 __builtin_va_start(list, n); 119 (void)__builtin_va_arg(list, C); // expected-warning{{second argument to 'va_arg' is of non-POD type 'C'}} 120 __builtin_va_end(list); 128 __builtin_va_list list; local 129 __builtin_va_start(list, n); 130 (void)__builtin_va_arg(list, Abstract); // expected-error{{second argument to 'va_arg' is of abstract type 'Abstract'}} 131 __builtin_va_end(list); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
FetchValidator.java | 21 * Uses an ElementParser to read a list of feature.xml files and to determine 30 //Comma separated list of features to parse 31 private String list; field in class:FetchValidator 49 validator.list = 51 validator.getListOfFeatures(validator.list); 58 getListOfFeatures(list); 88 private void getListOfFeatures(String list) { 90 StringTokenizer tokenizer = new StringTokenizer(list, ","); 105 // collect a list of missing plugins (or fragments), and features 144 * Gets the list [all...] |