HomeSort by relevance Sort by last modified time
    Searched defs:list (Results 1 - 25 of 1586) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/net/websockets/
websocket_net_log_params_unittest.cc 14 ListValue* list = new ListValue(); local
15 list->Append(new StringValue("GET /demo HTTP/1.1"));
16 list->Append(new StringValue("Host: example.com"));
17 list->Append(new StringValue("Connection: Upgrade"));
18 list->Append(new StringValue("Sec-WebSocket-Key2: 12998 5 Y3 1 .P00"));
19 list->Append(new StringValue("Sec-WebSocket-Protocol: sample"));
20 list->Append(new StringValue("Upgrade: WebSocket"));
21 list->Append(new StringValue("Sec-WebSocket-Key1: 4 @1 46546xW%0l 1 5"));
22 list->Append(new StringValue("Origin: http://example.com"));
23 list->Append(new StringValue(""))
    [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/webkit/Source/WebCore/bindings/v8/custom/
V8DOMSettableTokenListCustom.cpp 8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
38 DOMSettableTokenList* list = V8DOMSettableTokenList::toNative(info.Holder()); local
39 return v8StringOrNull(list->item(index));
V8NodeListCustom.cpp 9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
47 NodeList* list = V8NodeList::toNative(info.Holder()); local
53 return v8::Integer::New(list->length());
55 RefPtr<Node> result = list->itemWithName(key);
62 // Need to support call so that list(0) works.
69 NodeList* list = V8NodeList::toNative(args.Holder());
76 RefPtr<Node> result = list->item(index->Uint32Value());
  /development/samples/ApiDemos/src/com/example/android/apis/view/
LinearLayout9.java 36 ListView list = (ListView) findViewById(R.id.list); local
37 list.setAdapter(new ArrayAdapter<String>(this,
  /external/chromium/net/base/
address_list_net_log_param.cc 19 ListValue* list = new ListValue(); local
23 list->Append(Value::CreateStringValue(NetAddressToStringWithPort(head)));
26 dict->Set("address_list", list);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
complete-ant-cmd.pl 42 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/v8/test/cctest/
test-ast.cc 7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
37 TEST(List) {
39 List<AstNode*>* list = new List<AstNode*>(0); local
40 CHECK_EQ(0, list->length());
45 list->Add(node);
46 CHECK_EQ(1, list->length());
47 CHECK_EQ(node, list->at(0))
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSCSSRuleListCustom.cpp 8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
39 CSSRuleList* list = impl(); local
42 unsigned length = list->length();
44 markDOMObjectWrapper(markStack, globalData, list->item(i));
JSWebKitAnimationListCustom.cpp 8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
39 WebKitAnimationList* list = impl(); local
42 unsigned length = list->length();
44 markDOMObjectWrapper(markStack, globalData, list->item(i));
JSScriptProfileNodeCustom.cpp 9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in the
54 MarkedArgumentBuffer list; local
58 list.append(toJS(exec, iter->get()));
60 return constructArray(exec, list);
  /external/chromium/chrome/browser/sync/
js_arg_list_unittest.cc 21 scoped_ptr<ListValue> list(new ListValue());
22 list->Append(Value::CreateBooleanValue(false));
23 list->Append(Value::CreateIntegerValue(5));
25 list->Append(dict);
29 JsArgList arg_list(*list);
32 scoped_ptr<ListValue> list_copy(list->DeepCopy());
33 list.reset();
51 ListValue list; local
52 list.Append(bool_value.DeepCopy());
53 list.Append(int_value.DeepCopy())
    [all...]
  /external/clang/test/CodeGen/
2002-08-19-RecursiveLocals.c 5 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/dropbear/
scpmisc.h 32 char **list; member in struct:arglist
  /external/oprofile/daemon/
opd_kernel.h 36 struct list_head list; member in struct:kernel_image
  /external/webkit/Source/JavaScriptCore/runtime/
ArgList.cpp 46 MarkedArgumentBuffer* list = *it; local
47 heapRootMarker.mark(reinterpret_cast<JSValue*>(list->m_buffer), list->m_size);
  /external/webkit/Source/WebCore/svg/
SVGFontFaceSrcElement.cpp 48 RefPtr<CSSValueList> list = CSSValueList::createCommaSeparated(); local
56 list->append(srcValue);
58 return list;
  /packages/apps/Contacts/src/com/android/contacts/list/
OnEmailAddressPickerActionListener.java 16 package com.android.contacts.list;
OnMultiplePhoneNumberPickerActionListener.java 16 package com.android.contacts.list;
OnPostalAddressPickerActionListener.java 16 package com.android.contacts.list;
  /external/guava/guava-testlib/src/com/google/common/testing/
TestLogHandler.java 23 import java.util.List;
56 /** We will keep a private list of all logged records */
57 private final List<LogRecord> list = field in class:TestLogHandler
61 * Adds the most recently logged record to our list.
65 list.add(record);
75 list.clear();
79 * Fetch the list of logged records
80 * @return unmodifiable LogRecord list of all logged records
82 public List<LogRecord> getStoredLogRecords()
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/
DebugMeshCallback.java 10 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
45 private ArrayList<Vector3f> list = new ArrayList<Vector3f>(); field in class:DebugMeshCallback
48 list.add(new Vector3f(x, y, z));
52 FloatBuffer buf = BufferUtils.createFloatBuffer(list.size() * 3);
53 for (int i = 0; i < list.size(); i++) {
54 Vector3f vector3f = list.get(i);
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapListTest.java 37 ImapList list = new ImapList(); local
39 assertTrue(list.isList());
40 assertFalse(list.isString());
42 assertTrue(list.isEmpty());
43 assertEquals(0, list.size());
45 list.add(STRING_1);
46 assertFalse(list.isEmpty());
47 assertEquals(1, list.size());
49 list.add(STRING_2);
50 assertEquals(2, list.size())
65 ImapList list = buildList(ImapList.EMPTY, ABC, LIST_1, ImapString.EMPTY); local
96 ImapList list = buildList(ImapList.EMPTY, STRING_1, LIST_1, ImapString.EMPTY); local
109 ImapList list = buildList(ImapList.EMPTY, STRING_1, LIST_1, ImapString.EMPTY); local
122 ImapList list = buildList(ImapList.EMPTY, STRING_1, LIST_1, ImapString.EMPTY); local
139 ImapList list = buildList( local
166 ImapList list = buildList(K1, LIST_1); local
179 ImapList list = buildList(K1, STRING_1); local
195 ImapList list = buildList(K1, K2, K3); local
    [all...]
  /build/core/
node_fns.mk 18 # Clears a list of variables using ":=".
21 # $(call clear-var-list,A B C)
27 # $(1): list of variable names to clear
29 define clear-var-list
34 # Copies a list of variables into another list of variables.
35 # The target list is the same as the source list, but has
39 # $(call copy-var-list, PREFIX, A B)
45 # $(2): list of variable names to cop
    [all...]
  /frameworks/base/media/java/android/media/
MediaInserter.java 26 import java.util.List;
35 private final HashMap<Uri, List<ContentValues>> mRowMap =
36 new HashMap<Uri, List<ContentValues>>();
37 private final HashMap<Uri, List<ContentValues>> mPriorityRowMap =
38 new HashMap<Uri, List<ContentValues>>();
57 HashMap<Uri, List<ContentValues>> rowmap = priority ? mPriorityRowMap : mRowMap;
58 List<ContentValues> list = rowmap.get(tableUri); local
59 if (list == null) {
60 list = new ArrayList<ContentValues>()
73 List<ContentValues> list = mRowMap.get(tableUri); local
81 List<ContentValues> list = mPriorityRowMap.get(tableUri); local
    [all...]

Completed in 460 milliseconds

1 2 3 4 5 6 7 8 91011>>