HomeSort by relevance Sort by last modified time
    Searched refs:lists (Results 1 - 25 of 532) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/harfbuzz_ng/win32/
create-lists-msvc.mak 9 # if [call create-lists.bat header $(makefile_snippet_file) $(variable_name)]
12 # if [call create-lists.bat file $(makefile_snippet_file) $(file_name)]
15 # if [call create-lists.bat footer $(makefile_snippet_file)]
26 # instead when doing 'if [call create-lists.bat file $(makefile_snippet_file) $(file_name)]'
28 # !if [for %c in ($(source_list)) do @if "%~xc" == ".$(srcext)" @call create-lists.bat file $(makefile_snippet_file) $(intdir)\%~nc.obj]
37 !if [call create-lists.bat header hb_objs.mak harfbuzz_dll_OBJS]
40 !if [for %c in ($(HB_SOURCES)) do @if "%~xc" == ".cc" @call create-lists.bat file hb_objs.mak ^$(CFG)\^$(PLAT)\harfbuzz\%~nc.obj]
43 !if [for %c in ($(HB_SOURCES)) do @if "%~xc" == ".c" @call create-lists.bat file hb_objs.mak ^$(CFG)\^$(PLAT)\harfbuzz\%~nc.obj]
46 !if [call create-lists.bat footer hb_objs.mak]
52 !if [call create-lists.bat header hb_objs.mak harfbuzz_gobject_OBJS
    [all...]
  /external/zopfli/src/zopfli/
katajainen.c 63 lists: If given, used to mark in-use nodes during garbage collection.
64 maxbits: Size of lists.
67 static Node* GetFreeNode(Node* (*lists)[2], int maxbits, NodePool* pool) {
75 if (lists) {
78 for (node = lists[i / 2][i % 2]; node; node = node->tail) {
96 lists: The lists of chains.
97 maxbits: Number of lists.
105 static void BoundaryPM(Node* (*lists)[2], int maxbits,
109 int lastcount = lists[index][1]->count; /* Count of last chain of list. *
    [all...]
  /device/asus/fugu/self-extractors/
files-by-owner.sh 17 rm -f extract-lists.txt
59 echo " $target_owner)" >> extract-lists.txt
60 echo " TO_EXTRACT=\"\\" >> extract-lists.txt
87 echo " $file \\" >> extract-lists.txt
101 echo " $file \\" >> extract-lists.txt
111 echo " \"" >> extract-lists.txt
112 echo " ;;" >> extract-lists.txt
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
RBNFParseTest.java 115 private void parseList(RuleBasedNumberFormat rbnf_en, RuleBasedNumberFormat rbnf_fr, String[][] lists) {
116 for (int i = 0; i < lists.length; ++i) {
117 String[] list = lists[i];
141 String[][] lists = { local
154 parseList(rbnf_en, rbnf_fr, lists);
160 parseList(rbnf_en, rbnf_fr, lists);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
RBNFParseTest.java 114 private void parseList(RuleBasedNumberFormat rbnf_en, RuleBasedNumberFormat rbnf_fr, String[][] lists) {
115 for (int i = 0; i < lists.length; ++i) {
116 String[] list = lists[i];
140 String[][] lists = { local
153 parseList(rbnf_en, rbnf_fr, lists);
159 parseList(rbnf_en, rbnf_fr, lists);
  /platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
NotificationBundlingTests.java 71 List<Integer> lists = new ArrayList<Integer>(Arrays.asList(GROUP_NOTIFICATION_ID, local
73 mHelper.sendBundlingNotifications(lists, BUNDLE_GROUP_KEY);
81 obj = mDevice.wait(Until.findObject(By.textContains(lists.get(1).toString())),
89 List<Integer> lists = new ArrayList<Integer>(Arrays.asList(GROUP_NOTIFICATION_ID, local
91 mHelper.sendBundlingNotifications(lists, BUNDLE_GROUP_KEY);
95 for (int n : lists) {
104 List<Integer> lists = new ArrayList<Integer>(Arrays.asList(GROUP_NOTIFICATION_ID, local
106 mHelper.sendBundlingNotifications(lists, BUNDLE_GROUP_KEY);
NotificationHelper.java 204 public void sendNotifications(Map<Integer, String> lists, boolean withDelay) throws Exception {
207 for (Map.Entry<Integer, String> l : lists.entrySet()) {
221 public void sendBundlingNotifications(List<Integer> lists, String groupKey) throws Exception {
223 .setContentTitle(lists.get(1).toString())
227 mNotificationManager.notify(lists.get(1),
230 .setContentText(lists.get(2).toString())
234 mNotificationManager.notify(lists.get(2),
237 .setContentTitle(lists.get(0).toString())
243 mNotificationManager.notify(lists.get(0),
NotificationInteractionTests.java 94 Map<Integer, String> lists = new HashMap<Integer, String>(); local
98 lists.put(CUSTOM_NOTIFICATION_ID + i, Integer.toString(CUSTOM_NOTIFICATION_ID + i));
100 mHelper.sendNotifications(lists, false);
142 Map<Integer, String> lists = new HashMap<Integer, String>(); local
145 lists.put(firstId, Integer.toString(firstId));
146 lists.put(secondId, Integer.toString(secondId));
148 mHelper.sendNotifications(lists, true);
151 mHelper.sendNotifications(lists, true);
  /device/google/dragon/self-extractors/
files-by-owner.sh 17 rm -f extract-lists.txt
53 echo " $target_owner)" >> extract-lists.txt
54 echo " TO_EXTRACT=\"\\" >> extract-lists.txt
86 echo " $file \\" >> extract-lists.txt
96 echo " \"" >> extract-lists.txt
97 echo " ;;" >> extract-lists.txt
  /platform_testing/libraries/system-helpers/sysui-helper/src/android/system/helpers/
NotificationHelper.java 96 * @param lists notification list for a group of notifications which includes two child
102 public void sendBundlingNotifications(List<Integer> lists, String groupKey,
105 .setContentTitle(lists.get(1).toString())
111 mNotificationManager.notify(lists.get(1),
114 .setContentTitle(lists.get(2).toString())
120 mNotificationManager.notify(lists.get(2),
123 .setContentTitle(lists.get(0).toString())
129 mNotificationManager.notify(lists.get(0),
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
chrome_trace_category_filter.py 131 lists = []
132 lists.append(self._included_categories)
133 lists.append(self._disabled_by_default_categories)
134 lists.append(['-%s' % x for x in self._excluded_categories])
135 lists.append(self._synthetic_delays)
137 for l in lists:
201 # A and B have explicit include lists. If A includes something that B
  /external/curl/tests/
directories.pm 164 %lists = (
240 $list = $lists{$list_type};
262 $list = $lists{$list_type};
285 $list = $lists{$listname};
  /libcore/jsr166-tests/src/test/java/jsr166/
CopyOnWriteArrayListTest.java 177 * lists with same elements are equal and have same hashCode
534 List[] lists = { c, c.subList(1, c.size() - 1) }; local
535 for (List list : lists) {
548 List[] lists = { c, c.subList(1, c.size() - 1) }; local
549 for (List list : lists) {
562 List[] lists = { c, c.subList(1, c.size() - 1) }; local
563 for (List list : lists) {
576 List[] lists = { c, c.subList(1, c.size() - 1) }; local
577 for (List list : lists) {
590 List[] lists = { c, c.subList(1, c.size() - 1) } local
604 List[] lists = { c, c.subList(1, c.size() - 1) }; local
618 List[] lists = { c, c.subList(1, c.size() - 1) }; local
632 List[] lists = { c, c.subList(1, c.size() - 1) }; local
646 List[] lists = { c, c.subList(1, c.size() - 1) }; local
660 List[] lists = { c, c.subList(1, c.size() - 1) }; local
674 List[] lists = { c, c.subList(1, c.size() - 1) }; local
688 List[] lists = { c, c.subList(1, c.size() - 1) }; local
702 List[] lists = { c, c.subList(1, c.size() - 1) }; local
716 List[] lists = { c, c.subList(1, c.size() - 1) }; local
731 List[] lists = { c, c.subList(1, c.size() - 1) }; local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
CartesianList.java 30 * Implementation of {@link Lists#cartesianProduct(List)}.
40 static <E> List<List<E>> create(List<? extends List<? extends E>> lists) {
42 new ImmutableList.Builder<List<E>>(lists.size());
43 for (List<? extends E> list : lists) {
  /external/deqp/modules/gles2/scripts/
gen-swizzles.py 96 self.lists = list(args)
98 self.numCombinations = reduce(operator.mul, map(len, self.lists), 1)
99 print self.lists
103 return [tuple(map(lambda x: x[0], self.lists))]
  /external/deqp/modules/gles3/scripts/
gen-swizzles.py 96 self.lists = list(args)
98 self.numCombinations = reduce(operator.mul, map(len, self.lists), 1)
99 print self.lists
103 return [tuple(map(lambda x: x[0], self.lists))]
  /external/regex-re2/doc/
mksyntaxwiki 27 <tr><td colspan="2">This page lists the regular expression syntax accepted by RE2.</td></tr>
28 <tr><td colspan="2">It also lists syntax accepted by PCRE, PERL, and VIM.</td></tr>
  /external/icu/icu4c/source/samples/
readme.txt 81 - legacy and layout are not included in these lists,
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug418.go 8 // Multiple valued expressions in return lists.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug418.go 8 // Multiple valued expressions in return lists.
  /build/soong/androidmk/cmd/androidmk/
android.go 140 func splitBpList(val bpparser.Expression, keyFunc listSplitFunc) (lists map[string]bpparser.Expression, err error) {
141 lists = make(map[string]bpparser.Expression)
157 lists[k] = v
166 if vA, ok := lists[k]; ok {
169 lists[k] = expression
171 lists[k] = vB
180 lists[key] = value
182 lists[key] = &bpparser.List{
192 l := lists[key]
197 lists[key] =
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AppendTrack.java 236 ArrayList<ByteBuffer> lists = new ArrayList<ByteBuffer>(); local
239 lists.addAll(track.getSamples());
242 return lists;
251 List<long[]> lists = new LinkedList<long[]>(); local
253 lists.add(TimeToSampleBox.blowupTimeToSamples(track.getDecodingTimeEntries()));
257 for (long[] list : lists) {
276 List<int[]> lists = new LinkedList<int[]>(); local
278 lists.add(CompositionTimeToSample.blowupCompositionTimes(track.getCompositionTimeEntries()));
281 for (int[] list : lists) {
  /external/deqp/modules/egl/
teglSimpleConfigCase.cpp 151 void getDefaultFilterLists (vector<NamedFilterList>& lists, const FilterList& baseFilters)
201 lists.push_back(filters);
220 lists.push_back(filters);
  /test/vts-testcase/kernel/ltp/shell_environment/definitions/base_definitions/
check_setup_cleanup.py 153 """Normalize inputs to lists of same length.
156 If there are lists in inputs, they should all be of same length;
158 If there are lists and single items in inputs, single items are
161 single item lists.
174 lists = filter(self.IsListLike, inputs)
175 if not lists:
176 # All inputs are single items. Convert them to lists
179 lengths = set(map(len, lists))
181 # lists in inputs have different lengths, cannot normalize
  /external/squashfs-tools/squashfs-tools/
Android.mk 26 caches-queues-lists.c \

Completed in 1253 milliseconds

1 2 3 4 5 6 7 8 91011>>