Searched defs:list (Results 151 - 175 of 1412) sorted by relevance

1234567891011>>

/external/chromium_org/chromeos/network/
H A Ddevice_state.cc57 const base::ListValue* list = NULL; local
58 if (!value.GetAsList(&list))
61 if (!network_util::ParseCellularScanResults(*list, &parsed_results))
/external/chromium_org/components/omnibox/
H A Durl_prefix.cc53 const URLPrefixes& list = GetURLPrefixes(); local
54 for (URLPrefixes::const_iterator i = list.begin(); i != list.end(); ++i)
63 const URLPrefixes& list = GetURLPrefixes(); local
64 for (URLPrefixes::const_iterator i = list.begin(); i != list.end(); ++i)
/external/chromium_org/content/renderer/
H A Dweb_ui_extension.cc117 base::ListValue* list = NULL; local
118 value->GetAsList(&list);
119 DCHECK(list);
120 content.reset(list);
/external/chromium_org/content/shell/renderer/
H A Dleak_detector.cc55 base::ListValue* list = new base::ListValue(); local
56 list->AppendInteger(previous_result_.numberOfLiveAudioNodes);
57 list->AppendInteger(result.numberOfLiveAudioNodes);
58 detail.Set("numberOfLiveAudioNodes", list);
61 base::ListValue* list = new base::ListValue(); local
62 list->AppendInteger(previous_result_.numberOfLiveDocuments);
63 list->AppendInteger(result.numberOfLiveDocuments);
64 detail.Set("numberOfLiveDocuments", list);
67 base::ListValue* list = new base::ListValue(); local
68 list
74 base::ListValue* list = new base::ListValue(); local
80 base::ListValue* list = new base::ListValue(); local
[all...]
/external/chromium_org/gpu/config/
H A Dgpu_util.cc24 std::string IntSetToString(const std::set<int>& list) { argument
26 for (std::set<int>::const_iterator it = list.begin();
27 it != list.end(); ++it) {
35 void StringToIntSet(const std::string& str, std::set<int>* list) { argument
36 DCHECK(list);
43 list->insert(number);
65 scoped_ptr<GpuDriverBugList> list(GpuDriverBugList::Create());
66 list->LoadList(kGpuDriverBugListJson,
68 std::set<int> workarounds = list->MakeDecision(
/external/chromium_org/ppapi/proxy/
H A Dnetwork_list_resource.cc19 const SerializedNetworkList& list)
21 list_(list) {
18 NetworkListResource(PP_Instance instance, const SerializedNetworkList& list) argument
H A Dnetwork_monitor_resource.cc66 const SerializedNetworkList& list) {
68 new NetworkListResource(pp_instance(), list));
64 OnPluginMsgNetworkList( const ResourceMessageReplyParams& params, const SerializedNetworkList& list) argument
/external/chromium_org/remoting/client/plugin/
H A Dpepper_network_manager.cc51 const pp::NetworkList& list) {
56 DCHECK(!list.is_null());
68 size_t count = list.GetCount();
71 list.GetIpAddresses(i, &addresses);
88 list.GetName(i), list.GetDisplayName(i), address.ipaddr(), 0);
50 OnNetworkList(int32_t result, const pp::NetworkList& list) argument
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableValueTestHelper.cpp9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
91 RefPtr<SVGLengthList> list = animValue.toSVGLengthList(); local
92 size_t length = list->length();
94 *os << list->at(i)->valueAsString().utf8().data();
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataTransferItemList.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in the
40 PassRefPtrWillBeRawPtr<DataTransferItemList> DataTransferItemList::create(PassRefPtrWillBeRawPtr<DataTransfer> dataTransfer, PassRefPtrWillBeRawPtr<DataObject> list) argument
42 return adoptRefWillBeNoop(new DataTransferItemList(dataTransfer, list));
66 exceptionState.throwDOMException(InvalidStateError, "The list is not writable.");
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DLiveNodeList.cpp32 IsMatch(const LiveNodeList& list) argument
33 : m_list(list)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_caps.c34 * Iterates over a list of caps checks as defined in u_caps.h. Should
36 * the list (TERMINATE). Should any check fail returns FALSE and set
40 util_check_caps_out(struct pipe_screen *screen, const unsigned *list, int *out) argument
45 for (i = 0; list[i];) {
46 switch(list[i++]) {
48 if (!screen->get_param(screen, list[i++])) {
54 tmpi = screen->get_param(screen, list[i++]);
55 if (tmpi < (int)list[i++]) {
61 tmpf = screen->get_paramf(screen, list[i++]);
62 if (tmpf < (float)list[
103 util_check_caps(struct pipe_screen *screen, const unsigned *list) argument
219 unsigned *list; member in struct:__anon13769
220 } list[] = { local
[all...]
H A Du_slab.h48 /* The header (linked-list pointers). */
63 struct util_slab_page list; member in struct:util_slab_mempool
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_fence.h15 struct list_head list; member in struct:nouveau_fence_work
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dlinked_list.h9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
33 // Some very basic linked list functions for dealing with using void * as
51 inline void SLL_Push(void **list, void *element) { argument
52 SLL_SetNext(element, *list);
53 *list = element;
56 inline void *SLL_Pop(void **list) { argument
57 void *result = *list;
58 *list = SLL_Next(*list);
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dlinked_list.h9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
33 // Some very basic linked list functions for dealing with using void * as
51 inline void SLL_Push(void **list, void *element) { argument
52 SLL_SetNext(element, *list);
53 *list = element;
56 inline void *SLL_Pop(void **list) { argument
57 void *result = *list;
58 *list = SLL_Next(*list);
[all...]
/external/chromium_org/tools/gn/
H A Dfunction_foreach.cc19 "foreach: Iterate over a list.";
21 "foreach: Iterate over a list.\n"
23 " foreach(<loop_var>, <list>) {\n"
27 " Executes the loop contents block over each item in the list,\n"
68 // Extract the list, avoid a copy if it's an identifier (common case).
88 const std::vector<Value>& list = list_value->list_value(); local
104 for (size_t i = 0; i < list.size(); i++) {
105 scope->SetValue(loop_var, list[i], function);
H A Dfunction_get_target_outputs_unittest.cc33 // Asserts that the given list contains a single string with the given value.
34 void AssertSingleStringEquals(const Value& list, argument
36 ASSERT_TRUE(list.type() == Value::LIST);
37 ASSERT_EQ(1u, list.list_value().size());
38 ASSERT_TRUE(list.list_value()[0].type() == Value::STRING);
39 ASSERT_EQ(expected, list.list_value()[0].string_value());
42 void AssertTwoStringsEqual(const Value& list, argument
45 ASSERT_TRUE(list.type() == Value::LIST);
46 ASSERT_EQ(2u, list.list_value().size());
47 ASSERT_TRUE(list
[all...]
H A Dfunction_write_file.cc28 " If data is a list, the list will be written one-item-per-line with no\n"
36 " list formatting.\n"
44 " The list or string to write.\n";
69 const std::vector<Value>& list = args[1].list_value(); local
70 for (size_t i = 0; i < list.size(); i++)
71 contents << list[i].ToString(false) << std::endl;
/external/chromium_org/tools/json_schema_compiler/test/
H A Dtest_util.cc29 scoped_ptr<base::ListValue> list(new base::ListValue());
30 list->Append(a);
31 return list.Pass();
34 scoped_ptr<base::ListValue> list = List(a); local
35 list->Append(b);
36 return list.Pass();
41 scoped_ptr<base::ListValue> list = List(a, b); local
42 list->Append(c);
43 return list.Pass();
/external/chromium_org/ui/base/x/
H A Dx11_foreign_window_manager.cc57 const RequestVector& list = it->second; local
58 for (size_t i = 0; i < list.size(); ++i)
59 event_mask |= list[i].event_mask;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DStatistics.java56 * Adds the given list of items to the statistics.
58 * @param list {@code non-null;} the list of items to add
60 public void addAll(Section list) { argument
61 Collection<? extends Item> items = list.items();
H A DTypeListItem.java27 * 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) { argument
48 super(ALIGNMENT, (list.size() * ELEMENT_SIZE) + HEADER_SIZE);
50 this.list = list;
56 return StdTypeList.hashContents(list);
[all...]
/external/e2fsprogs/lib/et/
H A Dcom_right.c18 * notice, this list of conditions and the following disclaimer.
21 * notice, this list of conditions and the following disclaimer in the
48 com_right(struct et_list *list, long code) argument
51 for (p = list; p; p = p->next) {
59 com_right_r(struct et_list *list, long code, char *str, size_t len) argument
62 for (p = list; p; p = p->next) {
86 initialize_error_table_r(struct et_list **list, argument
95 for (end = list, et = *list; et; end = &et->next, et = et->next)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DFetchValidator.java21 * 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) { argument
90 StringTokenizer tokenizer = new StringTokenizer(list, ",");
105 // collect a list of missing plugins (or fragments), and features
144 * Gets the list
163 setList(String list) argument
[all...]

Completed in 1135 milliseconds

1234567891011>>