Searched refs:list (Results 251 - 275 of 1871) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/glsl/
H A Dlower_variable_index_to_cond_assign.cpp51 void generate(unsigned i, ir_rvalue* condition, exec_list *list) const
66 list->push_tail(assignment);
92 void linear_sequence(unsigned begin, unsigned end, exec_list *list) argument
107 this->generator.generate(begin, 0, list);
146 list->push_tail(condition);
150 list->push_tail(new(this->mem_ctx) ir_assignment(cond_deref,
157 this->generator.generate(i, cond_deref, list);
165 this->generator.generate(i + j, cond_swiz, list);
171 void bisect(unsigned begin, unsigned end, exec_list *list) argument
194 list
197 generate(unsigned begin, unsigned end, exec_list *list) argument
305 exec_list list; local
[all...]
/external/srec/srec/Semproc/include/
H A DSR_SemanticResultImpl.h53 SREC_SEMPROC_API ESR_ReturnCode SR_SemanticResult_GetKeyList(SR_SemanticResult* self, LCHAR** list, size_t* size);
/external/stlport/test/compiler/
H A Deh.cc1 #include <list> /* required, to expose allocator */
/external/webkit/Source/WebCore/css/
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.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/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/chromium/chrome/browser/extensions/
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/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...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_tokens.py15 tokens = list(tu.get_tokens(extent=r))
31 tokens = list(tu.get_tokens(extent=r))
45 tokens = list(tu.get_tokens(extent=r))
/external/guava/guava/src/com/google/common/collect/
H A DComparatorOrdering.java50 List<E> list = Lists.newArrayList(iterable);
51 Collections.sort(list, comparator);
52 return list;
H A DNaturalOrdering.java57 List<E> list = Lists.newArrayList(iterable);
58 Collections.sort(list);
59 return list;
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAMultipleCommand.java43 public void setCommand(List<PCommand> list) argument
46 this._command_.addAll(list);
47 for(PCommand e : list)
H A DASequenceExpression.java43 public void setArgs(List<PExpression> list) argument
46 this._args_.addAll(list);
47 for(PExpression e : list)
/external/libvorbis/vq/
H A Dmake_residue_books.pl82 # build value list
84 my$list;
98 $list.="-$val ";
106 $list.="$val ";
121 print G "0\n$list\n";
123 print G "1\n$list\n";
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DAlertInfoParser.java72 AlertInfoList list = new AlertInfoList();
102 list.add(alertInfo);
109 return list;
/external/oprofile/libpp/
H A Dimage_errors.cpp79 void report_image_errors(list<inverted_profile> const & plist,
82 list<inverted_profile>::const_iterator it = plist.begin();
83 list<inverted_profile>::const_iterator const end = plist.end();
/external/skia/src/animator/
H A DSkDisplayList.h38 int findGroup(SkDrawable* match, SkTDDrawableArray** list,
52 static int SearchForMatch(SkDrawable* match, SkTDDrawableArray** list,
55 SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList,
/external/skia/src/views/
H A DSkEventSink.cpp181 SkListenersTagList* list = (SkListenersTagList*)this->findTagList(kListeners_SkTagList);
183 if (list == NULL)
186 int index = list->find(id);
189 int count = list->countListners();
196 list->fIDs[index] = list->fIDs[count - 1];
197 list->fExtra16 = SkToU16(count - 1);
208 SkListenersTagList* list = (SkListenersTagList*)this->findTagList(kListeners_SkTagList); local
209 if (list) {
210 SkASSERT(list
[all...]
/external/stlport/test/unit/
H A Dreviter_test.cpp2 #include <list>
65 list<int> v(array, array + 4);
66 list<int>::reverse_iterator r(v.rbegin());
/external/webkit/Source/JavaScriptCore/runtime/
H A DArgList.cpp46 MarkedArgumentBuffer* list = *it; local
47 heapRootMarker.mark(reinterpret_cast<JSValue*>(list->m_buffer), list->m_size);
/external/webkit/Source/WebCore/bindings/js/
H A DJSConsoleCustom.cpp8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
49 MarkedArgumentBuffer list; local
53 list.append(toJS(exec, iter->get()));
55 return constructArray(exec, list);
H A DJSMessageEventCustom.cpp9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
51 MarkedArgumentBuffer list;
53 list.append(toJS(exec, globalObject(), (*ports)[i].get()));
54 return constructArray(exec, list);
/external/webkit/Source/WebCore/svg/
H A DSVGFontFaceSrcElement.cpp48 RefPtr<CSSValueList> list = CSSValueList::createCommaSeparated(); local
56 list->append(srcValue);
58 return list;
/external/webkit/Tools/MiniBrowser/qt/
H A Dutils.cpp11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
52 QList<QString> list; local
60 list.append(key.remove(strip));
64 return list;

Completed in 484 milliseconds

<<11121314151617181920>>