Searched defs:list (Results 1 - 25 of 1412) sorted by relevance

1234567891011>>

/external/chromium_org/net/websockets/
H A Dwebsocket_net_log_params_test.cc15 base::ListValue* list = new base::ListValue(); local
16 list->Append(new base::StringValue("GET /demo HTTP/1.1"));
17 list->Append(new base::StringValue("Host: example.com"));
18 list->Append(new base::StringValue("Connection: Upgrade"));
19 list->Append(new base::StringValue("Sec-WebSocket-Key2: 12998 5 Y3 1 .P00"));
20 list->Append(new base::StringValue("Sec-WebSocket-Protocol: sample"));
21 list->Append(new base::StringValue("Upgrade: WebSocket"));
22 list->Append(new base::StringValue(
24 list->Append(new base::StringValue("Origin: http://example.com"));
25 list
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParserValuesTest.cpp9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
89 CSSParserValueList list; local
93 list.addValue(value);
95 list.clearAndLeakValues();
96 ASSERT_FALSE(list.size());
97 ASSERT_FALSE(list.currentIndex());
/external/elfutils/0.153/libelf/
H A Delf_nextscn.c31 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 i
[all...]
/external/bluetooth/bluedroid/osi/test/
H A Dlist_test.cpp4 #include "list.h"
9 list_t *list = list_new(NULL); local
10 ASSERT_TRUE(list != NULL);
14 // In this test we just verify that list_free is callable with a valid list.
15 list_t *list = list_new(NULL); local
16 list_free(list);
25 list_t *list = list_new(NULL); local
26 EXPECT_TRUE(list_is_empty(list));
27 list_free(list);
31 list_t *list local
37 list_t *list = list_new(NULL); local
45 list_t *list = list_new(NULL); local
53 list_t *list = list_new(NULL); local
63 list_t *list = list_new(NULL); local
73 list_t *list = list_new(NULL); local
85 list_t *list = list_new(NULL); local
97 list_t *list = list_new(NULL); local
111 list_t *list = list_new(NULL); local
125 list_t *list = list_new(NULL); local
138 list_t *list = list_new(NULL); local
144 list_t *list = list_new(NULL); local
[all...]
/external/chromium_org/chromeos/network/
H A Dnetwork_util_unittest.cc107 base::ListValue list; local
110 // Empty list value.
111 EXPECT_TRUE(ParseCellularScanResults(list, &scan_results));
114 list.AppendInteger(0);
115 EXPECT_FALSE(ParseCellularScanResults(list, &scan_results));
118 list.Clear();
121 list.Append(dict_value);
122 EXPECT_TRUE(ParseCellularScanResults(list, &scan_results));
130 list.Append(dict_value);
136 list
[all...]
/external/chromium_org/net/spdy/
H A Dwrite_blocked_list_test.cc17 IntWriteBlockedList list; local
18 EXPECT_FALSE(list.HasWriteBlockedStreams());
19 list.PushBack(1, 1);
20 EXPECT_TRUE(list.HasWriteBlockedStreams());
21 EXPECT_EQ(1, list.GetHighestPriorityWriteBlockedList());
22 list.PushBack(1, 0);
23 EXPECT_TRUE(list.HasWriteBlockedStreams());
24 EXPECT_EQ(0, list.GetHighestPriorityWriteBlockedList());
28 IntWriteBlockedList list; local
29 list
38 IntWriteBlockedList list; local
57 IntWriteBlockedList list; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQueryListTest.cpp28 RefPtrWillBeRawPtr<MediaQueryList> list = MediaQueryList::create(document.get(), MediaQueryMatcher::create(*document), MediaQuerySet::create()); local
29 list->addListener(adoptRefWillBeNoop(new TestListener()));
30 list->stop();
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DLinkRelAttribute.cpp9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
56 Vector<String> list; local
57 relCopy.split(' ', list);
58 Vector<String>::const_iterator end = list.end();
59 for (Vector<String>::const_iterator it = list.begin(); it != end; ++it) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Dcomplete-ant-cmd.pl42 list( restrict( $word, getArguments() ));
44 list( getBuildFiles($word) );
46 list( restrict( $word, getTargets() ));
51 sub list { subroutine
82 # Run "ant -projecthelp" to list targets. Keep a cache of results in a
/external/chromium_org/chrome/browser/extensions/api/bookmarks/
H A Dbookmark_apitest.cc33 base::ListValue list; local
37 list.Append(node);
41 list.Append(node);
42 profile->GetPrefs()->Set(bookmarks::prefs::kManagedBookmarks, list);
/external/chromium_org/components/policy/core/common/
H A Dmac_util_unittest.cc39 base::ListValue list; local
40 root.Set("emptyl", list.DeepCopy());
42 list.Append(it.value().DeepCopy());
43 EXPECT_EQ(root.size(), list.GetSize());
44 list.Append(root.DeepCopy());
45 root.Set("list", list.DeepCopy());
/external/chromium_org/gpu/config/
H A Dgpu_blacklist.cc20 GpuBlacklist* list = new GpuBlacklist(); local
21 list->AddSupportedFeature("accelerated_2d_canvas",
23 list->AddSupportedFeature("gpu_compositing",
25 list->AddSupportedFeature("webgl",
27 list->AddSupportedFeature("flash_3d",
29 list->AddSupportedFeature("flash_stage3d",
31 list->AddSupportedFeature("flash_stage3d_baseline",
33 list->AddSupportedFeature("accelerated_video_decode",
35 list->AddSupportedFeature("accelerated_video_encode",
37 list
[all...]
/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest11-expected.cc16 FooList list; local
17 list.push_back(new Foo);
18 list.push_back(new Foo);
19 for (FooList::const_iterator it = list.begin(); it != list.end(); ++it) {
H A Dtest11-original.cc16 FooList list; local
17 list.push_back(new Foo);
18 list.push_back(new Foo);
19 for (FooList::const_iterator it = list.begin(); it != list.end(); ++it) {
/external/chromium_org/tools/gn/
H A Dsubstitution_list.h13 // Represents a list of strings with {{substitution_patterns}} in them.
30 const std::vector<SubstitutionPattern>& list() const { return list_; } function in class:SubstitutionList
32 // Returns a list of all substitution types used by the patterns in thist
33 // list, with the exception of LITERAL.
/external/chromium_org/v8/test/cctest/
H A Dtest-ast.cc7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
38 List<AstNode*>* list = new List<AstNode*>(0); local
39 CHECK_EQ(0, list->length());
46 list->Add(node);
47 CHECK_EQ(1, list->length());
48 CHECK_EQ(node, list->at(0));
49 CHECK_EQ(node, list->last());
53 list->Add(node);
55 CHECK_EQ(1 + kElements, list
[all...]
/external/clang/test/CodeGen/
H A D2002-08-19-RecursiveLocals.c5 struct list { struct
7 struct list *Next;
10 static struct list B; /* Forward declare static */
11 static struct list A = { 7, &B };
12 static struct list B = { 8, &A };
14 extern struct list D; /* forward declare normal var */
16 struct list C = { 7, &D };
17 struct list D = { 8, &C };
/external/emma/core/java12/com/vladium/util/
H A DXProperties.java38 public void list (final PrintStream out) method in class:XProperties
57 public void list (final PrintWriter out) method in class:XProperties
/external/fio/
H A Dcgroup.h9 void cgroup_kill(struct flist_head *list);
13 static inline int cgroup_setup(struct thread_data *td, struct flist_head *list, argument
24 static inline void cgroup_kill(struct flist_head *list) argument
/external/libcxxabi/src/
H A Dabort_message.cpp36 va_list list; local
37 va_start(list, format);
38 vfprintf(stderr, format, list);
39 va_end(list);
/external/oprofile/daemon/
H A Dopd_kernel.h36 struct list_head list; member in struct:kernel_image
/external/strace/
H A Dxlate.el8 ;; notice, this list of conditions and the following disclaimer.
10 ;; notice, this list of conditions and the following disclaimer in the
35 (defvar xlate-list nil
39 "Grab all of the defined names in the region and save them in xlate-list."
42 (setq xlate-list nil)
47 (setq xlate-list (cons (buffer-substring (match-beginning 1)
49 xlate-list)))
53 (setq xlate-list (nreverse xlate-list)))
55 (defun build-xlate (&optional list)
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ListTest.java27 List<Integer> list; // must contain the Integers 0 to 99 in order field in class:Support_ListTest
35 list = l;
43 elem = list.get(counter);
48 assertTrue("ListTest - hashCode failed", hashCode == list.hashCode());
50 list.add(50, new Integer(1000));
51 assertTrue("ListTest - a) add with index failed--did not insert", list
55 list.get(51).equals(new Integer(50)));
58 list.get(49).equals(new Integer(49)));
60 list.set(50, new Integer(2000));
61 assertTrue("ListTest - a) set failed--did not set", list
128 t_listIterator(List<Integer> list) argument
[all...]
/external/chromium_org/cc/debug/
H A Drendering_stats_unittest.cc15 static std::string ToString(const RenderingStats::TimeDeltaList& list) { argument
19 list.AddToTracedValue(value.get());
/external/chromium_org/chrome/browser/extensions/api/bookmark_manager_private/
H A Dbookmark_manager_private_apitest.cc37 base::ListValue list; local
41 list.Append(node);
45 list.Append(node);
46 profile->GetPrefs()->Set(bookmarks::prefs::kManagedBookmarks, list);

Completed in 5209 milliseconds

1234567891011>>