Searched refs:infos (Results 1 - 25 of 103) sorted by relevance

12345

/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DErrorQueue.java38 List infos = new LinkedList(); field in class:ErrorQueue
43 infos.add(msg);
59 return infos.size() + errors.size() + warnings.size();
63 return "infos: "+infos+
/external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
H A DSessionInfoStore.java27 private final List<SessionInfo> infos = new ArrayList<SessionInfo>(); field in class:SessionInfoStore
35 return infos.isEmpty();
46 final List<SessionInfo> copy = new ArrayList<SessionInfo>(infos);
64 if (infos.isEmpty()) {
69 for (final SessionInfo i : infos) {
92 infos.add(info);
/external/autotest/client/bin/result_tools/
H A Ddedupe_file_throttler.py36 """Group the file infos by the given keys.
39 @param keys: A list of names of the attribute to group the file infos by.
61 # Sort file infos based on the modify date of the file.
96 for infos in grouped_infos.values():
97 if (len(infos) <=
104 '"%s"' % (infos[0].parent_dir, infos[0].prefix))
105 #dedupe_file_infos = [i.result_info for i in infos]
106 _dedupe_files(summary, infos, max_result_size_KB)
H A Dthrottler_lib.py77 """Sort result infos based on priority.
99 infos = grouped_files[pattern]
100 infos.sort(key=lambda info: -info.trimmed_size)
101 sorted_files.extend(infos)
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/xml/
H A DXMLFormatterTest.java45 private List<SessionInfo> infos; field in class:XMLFormatterTest
54 infos = new ArrayList<SessionInfo>();
65 infos.add(new SessionInfo("session-1", 12345, 67890));
66 infos.add(new SessionInfo("session-2", 1, 2));
67 infos.add(new SessionInfo("session-3", 1, 2));
69 visitor.visitInfo(infos, data);
82 visitor.visitInfo(infos, data);
94 visitor.visitInfo(infos, data);
132 visitor.visitInfo(infos, data);
168 visitor.visitInfo(infos, dat
[all...]
/external/compiler-rt/lib/stats/
H A Dstats.h34 StatInfo infos[1]; member in struct:__sanitizer::StatModule
/external/strace/tests/
H A Drequest_key.c110 } infos[] = { local
131 for (k = 0; k < ARRAY_SIZE(infos); k++)
136 infos[k].info, infos[k].str,
/external/strace/tests-m32/
H A Drequest_key.c110 } infos[] = { local
131 for (k = 0; k < ARRAY_SIZE(infos); k++)
136 infos[k].info, infos[k].str,
/external/strace/tests-mx32/
H A Drequest_key.c110 } infos[] = { local
131 for (k = 0; k < ARRAY_SIZE(infos); k++)
136 infos[k].info, infos[k].str,
/external/deqp/modules/gles31/functional/
H A Des31fShaderStateQueryTests.cpp190 std::vector<TestTypeInfo> infos; local
192 infos.push_back(samplerTypes[ndx]);
194 return infos;
220 std::vector<TestTypeInfo> infos; local
222 infos.push_back(samplerTypes[ndx]);
224 return infos;
250 std::vector<TestTypeInfo> infos; local
252 infos.push_back(samplerTypes[ndx]);
254 return infos;
281 std::vector<TestTypeInfo> infos; local
318 std::vector<TestTypeInfo> infos; local
349 std::vector<TestTypeInfo> infos; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_link.cpp178 unify_interfaces(struct shader_info **infos) argument
183 if (!infos[i])
187 prev_info->outputs_written |= infos[i]->inputs_read &
189 infos[i]->inputs_read |= prev_info->outputs_written &
192 prev_info->patch_outputs_written |= infos[i]->patch_inputs_read;
193 infos[i]->patch_inputs_read |= prev_info->patch_outputs_written;
195 prev_info = infos[i];
205 struct shader_info *infos[MESA_SHADER_STAGES] = { 0, }; local
236 infos[stage] = prog->nir->info;
264 unify_interfaces(infos);
[all...]
/external/vulkan-validation-layers/loader/
H A Ddebug_report.h127 VkDebugReportCallbackCreateInfoEXT **infos, VkDebugReportCallbackEXT **callbacks);
128 void util_FreeDebugReportCreateInfos(const VkAllocationCallbacks *pAllocator, VkDebugReportCallbackCreateInfoEXT *infos,
131 uint32_t num_callbacks, VkDebugReportCallbackCreateInfoEXT *infos,
/external/harfbuzz_ng/test/fuzzing/
H A Dhb-fuzzer.cc33 hb_glyph_info_t *infos = hb_buffer_get_glyph_infos (buffer, NULL); local
37 hb_glyph_info_t info = infos[i];
/external/python/cpython2/Lib/unittest/
H A Drunner.py176 infos = []
181 infos.append("failures=%d" % failed)
183 infos.append("errors=%d" % errored)
187 infos.append("skipped=%d" % skipped)
189 infos.append("expected failures=%d" % expectedFails)
191 infos.append("unexpected successes=%d" % unexpectedSuccesses)
192 if infos:
193 self.stream.writeln(" (%s)" % (", ".join(infos),))
/external/python/cpython3/Lib/unittest/
H A Drunner.py201 infos = []
206 infos.append("failures=%d" % failed)
208 infos.append("errors=%d" % errored)
212 infos.append("skipped=%d" % skipped)
214 infos.append("expected failures=%d" % expectedFails)
216 infos.append("unexpected successes=%d" % unexpectedSuccesses)
217 if infos:
218 self.stream.writeln(" (%s)" % (", ".join(infos),))
/external/webrtc/webrtc/p2p/client/
H A Dsocketmonitor.cc75 std::vector<ConnectionInfo> infos = connection_infos_; local
77 SignalUpdate(this, infos);
88 // Gather connection infos
H A Dsocketmonitor.h29 virtual bool GetConnectionStats(ConnectionInfos* infos) = 0;
/external/annotation-tools/asmx/src/org/objectweb/asm/util/attrs/
H A DASMStackMapAttribute.java127 List infos,
130 if (infos.size() > 0) {
132 for (int i = 0; i < infos.size(); i++) {
133 StackMapType typeInfo = (StackMapType) infos.get(i);
197 private void traceTypeInfo(StringBuffer buf, Map labelNames, List infos) { argument
199 for (int i = 0; i < infos.size(); i++) {
200 StackMapType t = (StackMapType) infos.get(i);
123 asmifyTypeInfo( StringBuffer buf, String varName, Map labelNames, List infos, String field) argument
H A DASMStackMapTableAttribute.java115 List infos,
118 if (infos.size() == 0) {
125 for (int i = 0; i < infos.size(); i++) {
126 StackMapType typeInfo = (StackMapType) infos.get(i);
188 private void traceTypeInfo(StringBuffer buf, Map labelNames, List infos) { argument
190 for (int i = 0; i < infos.size(); i++) {
191 StackMapType t = (StackMapType) infos.get(i);
111 asmifyTypeInfo( StringBuffer buf, String varName, Map labelNames, List infos, String field) argument
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/
H A DTcpClientOutputTest.java114 final List<SessionInfo> infos = infoStore.getInfos();
115 assertEquals(1, infos.size());
116 assertEquals("stubid", infos.get(0).getId());
/external/parameter-framework/upstream/parameter/
H A DConfigurableDomain.cpp303 core::Results infos; local
304 if (!addConfigurableElement(pConfigurableElement, NULL, infos)) {
306 strError = utility::asString(infos);
366 core::Results &infos)
371 infos.push_back("Configurable element " + pConfigurableElement->getPath() +
380 infos.push_back("Configurable element " + pConfigurableElement->getPath() +
387 doAddConfigurableElement(pConfigurableElement, infos, pMainBlackboard);
470 bool CConfigurableDomain::split(CConfigurableElement *pConfigurableElement, core::Results &infos) argument
477 infos.push_back(strError);
489 infos
364 addConfigurableElement(CConfigurableElement *pConfigurableElement, const CParameterBlackboard *pMainBlackboard, core::Results &infos) argument
1044 mergeAlreadyAssociatedDescendantConfigurableElements( CConfigurableElement *newElement, core::Results &infos) argument
1101 doAddConfigurableElement(CConfigurableElement *pConfigurableElement, core::Results &infos, const CParameterBlackboard *pMainBlackboard) argument
[all...]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DConnectivityManagerTest.java97 NetworkInfo[] infos = connectivityManager.getAllNetworkInfo();
98 assertNotNull(infos);
99 assertEquals(1, infos.length);
100 assertSame(connectivityManager.getActiveNetworkInfo(), infos[0]);
/external/v8/src/
H A Dtype-info.cc494 // Things are a bit tricky here: The iterator for the RelocInfos and the infos
495 // themselves are not GC-safe, so we first get all infos, then we create the
497 // infos before we process them.
500 ZoneList<RelocInfo> infos(16, zone());
502 GetRelocInfos(code, &infos);
503 CreateDictionary(code, &infos);
504 ProcessRelocInfos(&infos);
511 ZoneList<RelocInfo>* infos) {
514 infos->Add(*it.rinfo(), zone());
520 ZoneList<RelocInfo>* infos) {
510 GetRelocInfos(Handle<Code> code, ZoneList<RelocInfo>* infos) argument
519 CreateDictionary(Handle<Code> code, ZoneList<RelocInfo>* infos) argument
528 RelocateRelocInfos(ZoneList<RelocInfo>* infos, Code* old_code, Code* new_code) argument
540 ProcessRelocInfos(ZoneList<RelocInfo>* infos) argument
[all...]
H A Dtype-info.h106 void GetRelocInfos(Handle<Code> code, ZoneList<RelocInfo>* infos);
107 void CreateDictionary(Handle<Code> code, ZoneList<RelocInfo>* infos);
108 void RelocateRelocInfos(ZoneList<RelocInfo>* infos,
111 void ProcessRelocInfos(ZoneList<RelocInfo>* infos);
/external/harfbuzz_ng/src/
H A Dsample.py68 infos = hb.buffer_get_glyph_infos (buf) variable
71 for info,pos in zip(infos, positions):

Completed in 566 milliseconds

12345