Searched refs:list (Results 226 - 250 of 1911) sorted by relevance

1234567891011>>

/external/oprofile/libutil++/
H A Dfile_manip.h16 #include <list>
65 bool create_file_list(std::list<std::string> & file_list,
/external/proguard/src/proguard/gui/
H A DClassSpecificationsPanel.java35 * ClassSpecification entries in a list.
48 list.setCellRenderer(new MyListCellRenderer());
91 (ClassSpecification)list.getSelectedValue();
99 list.getSelectedIndex());
200 public Component getListCellRendererComponent(JList list, argument
217 label.setBackground(list.getSelectionBackground());
218 label.setForeground(list.getSelectionForeground());
222 label.setBackground(list.getBackground());
223 label.setForeground(list.getForeground());
H A DMemberSpecificationsPanel.java36 * MemberSpecification entries in a list.
52 list.setCellRenderer(new MyListCellRenderer());
123 (MyMemberSpecificationWrapper)list.getSelectedValue();
137 list.getSelectedIndex());
221 public Component getListCellRendererComponent(JList list, argument
250 label.setBackground(list.getSelectionBackground());
251 label.setForeground(list.getSelectionForeground());
255 label.setBackground(list.getBackground());
256 label.setForeground(list.getForeground());
/external/srec/srec/Semproc/include/
H A DSR_SemanticResult.h45 * @param list [out] List of keys associated with n-best list entry.
46 * @param size [in/out] Size of list. If the return code is ESR_BUFFER_OVERFLOW, the required size
49 ESR_ReturnCode(*getKeyList)(struct SR_SemanticResult_t* self, LCHAR** list, size_t* size);
88 * @param list [out] List of keys associated with n-best list entry.
89 * @param size [in/out] Size of list. If the return code is ESR_BUFFER_OVERFLOW, the required size
92 SREC_SEMPROC_API ESR_ReturnCode SR_SemanticResultGetKeyList(SR_SemanticResult* self, LCHAR** list,
H A DSR_SemanticResultImpl.h53 SREC_SEMPROC_API ESR_ReturnCode SR_SemanticResult_GetKeyList(SR_SemanticResult* self, LCHAR** list, size_t* size);
/external/srec/srec/Semproc/src/
H A DSemanticResult.c38 ESR_ReturnCode SR_SemanticResultGetKeyList(SR_SemanticResult* self, LCHAR** list, size_t* size) argument
45 return self->getKeyList(self, list, size);
/external/stlport/test/unit/
H A Dqueue_test.cpp3 #include <list>
51 queue<int, list<int> > q;
H A Dstack_test.cpp2 #include <list>
49 stack<int, list<int> > s;
/external/webkit/Source/WebCore/css/
H A DCSSRuleList.h37 static PassRefPtr<CSSRuleList> create(StyleList* list, bool omitCharsetRules = false) argument
39 return adoptRef(new CSSRuleList(list, omitCharsetRules));
H A DCSSValueList.cpp35 CSSValueList::CSSValueList(CSSParserValueList* list) argument
38 if (list) {
39 size_t size = list->size();
41 append(list->valueAt(i)->createCSSValue());
H A DMediaQueryExp.cpp11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
58 // create list of values
61 RefPtr<CSSValueList> list = CSSValueList::createCommaSeparated(); local
67 list->append(CSSPrimitiveValue::create("/", CSSPrimitiveValue::CSS_STRING));
69 list->append(CSSPrimitiveValue::create(value->fValue, CSSPrimitiveValue::CSS_NUMBER));
77 m_value = list.release();
/external/webkit/Source/WebKit2/Shared/
H A DSessionState.cpp8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
54 SessionState::SessionState(const BackForwardListItemVector& list, uint32_t currentIndex) argument
55 : m_list(list)
63 // calling list().isEmpty() directly themselves.
H A DSessionState.h8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
43 const BackForwardListItemVector& list() const { return m_list; } function in class:WebKit::SessionState
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkhistory_p.h8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
53 static QWKHistory* createHistory(WebKit::WebBackForwardList* list);
56 QWKHistoryPrivate(WebKit::WebBackForwardList* list);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTask.cpp9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
37 WebTask::WebTask(TaskList* list): m_taskList(list) { m_taskList->registerTask(this); } argument
/external/chromium/chrome/browser/extensions/
H A Dextension_browser_actions_api.cc86 ListValue* list = NULL; local
87 EXTENSION_FUNCTION_VALIDATE(details_->GetList("color", &list));
88 EXTENSION_FUNCTION_VALIDATE(list->GetSize() == 4);
92 EXTENSION_FUNCTION_VALIDATE(list->GetInteger(i, &color_array[i]));
H A Duser_script_listener.h9 #include <list>
50 typedef std::list<URLPattern> URLPatterns;
57 // Appends new url patterns to our list, also setting user_scripts_ready_
61 // Replaces our url pattern list. This is only used when patterns have been
70 // A list of every request that we delayed. Will be flushed when user scripts
72 typedef std::list<GlobalRequestID> DelayedRequests;
82 // A list of URL patterns that have will have user scripts applied to them.
87 // Helper to collect the extension's user script URL patterns in a list and
/external/clang/include/clang/Lex/
H A DMakefile12 $(Verb) $(ClangTableGen) -gen-clang-attr-spelling-list -o $(call SYSPATH, $@) \
/external/clang/include/clang/Parse/
H A DMakefile12 $(Verb) $(ClangTableGen) -gen-clang-attr-late-parsed-list -o $(call SYSPATH, $@) \
/external/clang/test/CodeGen/
H A D2007-09-28-PackedUnionMember.c25 extern long bork(FuncPtr handler, const struct E *list);
/external/e2fsprogs/lib/ext2fs/
H A Dkernel-list.h5 * Simple doubly linked list implementation.
34 * This is only for internal list manipulation where we know
64 * Delete a list entry by making the prev/next entries
67 * This is only for internal list manipulation where we know
88 * Splice in "list" into "head"
90 static __inline__ void list_splice(struct list_head *list, struct list_head *head) argument
92 struct list_head *first = list->next;
94 if (first != list) {
95 struct list_head *last = list->prev;
/external/stlport/test/compiler/
H A Deh.cc1 #include <list> /* required, to expose allocator */
/external/webkit/Tools/Scripts/webkitpy/test/
H A Dcat.py7 # notice, this list of conditions and the following disclaimer.
9 # notice, this list of conditions and the following disclaimer in the
33 return [sys.executable, __file__] + list(args)
/external/bison/src/
H A DInadequacyList.c1 /* IELR's inadequacy list.
74 InadequacyList__prependTo (InadequacyList *self, InadequacyList **list) argument
76 InadequacyList *head_old = *list;
77 *list = self;
/external/chromium/chrome/browser/resources/options/
H A Dcookies_list.js61 * Creates a new list item for sites data. Note that these are created and
65 * @param {Object} origin Data used to create a cookie list item.
66 * @param {CookiesList} list The list that will contain this item.
70 function CookieListItem(origin, list) {
75 listItem.list = list;
78 // This hooks up updateOrigin() to the list item, makes the top-level
82 // that we can still garbage collect list items when they scroll out of
130 var oldExpanded = this.list
[all...]

Completed in 514 milliseconds

1234567891011>>