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

1 2 3 4

  /external/emma/core/java12/com/vladium/emma/data/
SessionData.java 37 public SessionData (final IMetaData mdata, final ICoverageData cdata)
40 if (cdata == null) throw new IllegalArgumentException ("null input: cdata");
43 m_cdata = cdata;
MergeProcessor.java 132 ICoverageData cdata = null; local
162 if (cdata == null)
163 cdata = _cdata;
165 cdata = (ICoverageData) cdata.merge (_cdata); // note: later datapath entries override earlier ones
178 if (((mdata == null) || mdata.isEmpty ()) && ((cdata == null) || cdata.isEmpty ()))
200 if (cdata != null)
202 log.verbose (" merged coverage data contains " + cdata.size () + " entries");
264 DataFactory.persist (cdata, persistFile, false); // never merge to enforce compaction behavio
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
IReportDataModel.java 28 * This operation merely stores mdata and cdata references, it does not
31 public static IReportDataModel create (final IMetaData mdata, final ICoverageData cdata)
33 return new ReportDataModel (mdata, cdata);
IReportGenerator.java 29 void process (IMetaData mdata, ICoverageData cdata, SourcePathCache cache, IProperties parameters)
ReportProcessor.java 165 ICoverageData cdata = null; local
193 if (cdata == null)
194 cdata = _cdata;
196 cdata = (ICoverageData) cdata.merge (_cdata); // note: later datapath entries override earlier ones
216 if (cdata == null)
223 if (cdata.isEmpty ())
236 if (cdata != null)
238 log.verbose (" merged coverage data contains " + cdata.size () + " entries");
251 // no shallow copies of 'mdata' or 'cdata' are needed her
    [all...]
ReportDataModel.java 138 ReportDataModel (final IMetaData mdata, final ICoverageData cdata)
141 if (cdata == null) throw new IllegalArgumentException ("null input: cdata");
146 // mdata and cdata as soon as all possible views have been constructed and cached
149 m_cdata = cdata;
  /external/emma/core/java12/com/vladium/emma/rt/
RTCoverageDataPersister.java 37 static void dumpCoverageData (final ICoverageData cdata, final boolean useSnapshot,
42 if (cdata != null)
50 final ICoverageData cdataView = useSnapshot ? cdata.shallowCopy () : cdata;
RT.java 69 ICoverageData cdata = s_cdata; // no sync accessor needed local
72 cdata = DataFactory.newCoverageData ();
73 s_cdata = cdata;
82 if (createExitHook && (cdata != null))
84 final Runnable exitHook = new RTExitHook (RT.class, cdata, getCoverageOutFile (), getCoverageOutMerge ());
102 return cdata;
113 final ICoverageData cdata = getCoverageData (); // need to use accessor for JMM reasons local
115 // ['cdata' can be null if a previous call to dumpCoverageData() disabled data collection]
117 if (cdata != null)
119 synchronized (cdata.lock ()
153 ICoverageData cdata = s_cdata; \/\/ no need to use accessor local
163 ICoverageData cdata = s_cdata; \/\/ no need to use accessor local
    [all...]
RTExitHook.java 105 RTExitHook (final Class RT, final ICoverageData cdata, final File outFile, final boolean merge)
108 m_cdata = cdata;
AppRunner.java 71 RT.reset (true, false); // reset RT [RT creates 'cdata' and loads app properties]
361 ICoverageData cdata = RT.getCoverageData (); local
362 if ($assert.ENABLED) $assert.ASSERT (cdata != null, "cdata is null");
366 runnerExitHook = new AppRunnerExitHook (log, m_dumpSessionData, sdataOutFile, sdataOutMerge.booleanValue (), mdata, cdata, m_reportGenerators, srcpathCache, toolProperties);
403 cdata = null;
777 final IMetaData mdata, final ICoverageData cdata,
784 if (cdata == null) throw new IllegalArgumentException ("null input: cdata");
795 m_cdata = cdata;
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
xml_printer.hpp 100 typedef custom_manip<struct cdata_t> cdata; typedef in namespace:boost::unit_test
103 operator<<( custom_printer<cdata> const& p, const_string value )
105 return *p << BOOST_TEST_L( "<![CDATA[" ) << value << BOOST_TEST_L( "]]>" );
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode20.java 41 * node, a cdata node and a pi. Verify if the nodes have been
43 * cdata nodes and the PItarget and PIData for the pi nodes.
88 CharacterData cdata; local
107 cdata = (CharacterData) elemchildList.item(0);
111 cdataVal = cdata.getData();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
svga_shader_dump.c 263 static void dump_cdata( struct sh_cdata cdata )
265 _debug_printf( "%f, %f, %f, %f", cdata.xyzw[0], cdata.xyzw[1], cdata.xyzw[2], cdata.xyzw[3] );
675 dump_cdata( def.cdata );
svga_shader.h 74 struct sh_cdata cdata; member in struct:sh_def
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_shader_dump.c 263 static void dump_cdata( struct sh_cdata cdata )
265 _debug_printf( "%f, %f, %f, %f", cdata.xyzw[0], cdata.xyzw[1], cdata.xyzw[2], cdata.xyzw[3] );
675 dump_cdata( def.cdata );
  /external/chromium/testing/gtest/test/
gtest_xml_test_utils.py 55 them are CDATA nodes and have the same value, or both are DOM
65 CDATA sections) as expected_node. Note that we ignore the
119 the value of the "message" attribute; CDATA sections and non-whitespace
120 text nodes are concatenated into a single CDATA section with ID
173 cdata = re.sub(r"^.*[/\\](.*:)\d+\n", "\\1*\n", child.nodeValue)
176 "", cdata)
  /external/chromium_org/testing/gtest/test/
gtest_xml_test_utils.py 55 them are CDATA nodes and have the same value, or both are DOM
65 CDATA sections) as expected_node. Note that we ignore the
119 the value of the "message" attribute; CDATA sections and non-whitespace
120 text nodes are concatenated into a single CDATA section with ID
160 attribute and CDATA section of <failure> elements is replaced with the
184 cdata = re.sub(source_line_pat, '\\1*\n', child.nodeValue)
187 '', cdata)
  /external/gtest/test/
gtest_xml_test_utils.py 55 them are CDATA nodes and have the same value, or both are DOM
65 CDATA sections) as expected_node. Note that we ignore the
119 the value of the "message" attribute; CDATA sections and non-whitespace
120 text nodes are concatenated into a single CDATA section with ID
173 cdata = re.sub(r"^.*[/\\](.*:)\d+\n", "\\1*\n", child.nodeValue)
176 "", cdata)
  /external/protobuf/gtest/test/
gtest_xml_test_utils.py 55 them are CDATA nodes and have the same value, or both are DOM
64 CDATA sections) as expected_node. Note that we ignore the
118 the value of the "message" attribute; CDATA sections and non-whitespace
119 text nodes are concatenated into a single CDATA section with ID
166 cdata = re.sub(r"^.*[/\\](.*:)\d+\n", "\\1*\n", child.nodeValue)
169 "", cdata)
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_test_utils.py 55 them are CDATA nodes and have the same value, or both are DOM
65 CDATA sections) as expected_node. Note that we ignore the
121 the value of the "message" attribute; CDATA sections and non-whitespace
122 text nodes are concatenated into a single CDATA section with ID
162 attribute and CDATA section of <failure> elements is replaced with the
186 cdata = re.sub(source_line_pat, '\\1*\n', child.nodeValue)
189 '', cdata)
  /libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
Attributes2ImplTest.java 35 private Attributes2Impl cdata = new Attributes2Impl(); field in class:Attributes2ImplTest
60 cdata.addAttribute("http://yet.another.uri", "hey", "ns3:hey",
61 "CDATA", "hey");
100 // Special case with CDATA
101 attrs.setAttributes(new AttributesImpl(cdata));
133 // CDATA case
135 "CDATA", "abc");
142 assertEquals("CDATA", attrs.getType(1));
225 // Special case with CDATA
226 attrs = new Attributes2Impl(new AttributesImpl(cdata));
    [all...]
  /external/bison/lib/
lbitset.c 86 #define LBITSET_CURRENT(X) LBITSET_CURRENT1((X)->b.cdata)
189 bset->b.cdata = next->words;
194 bset->b.cdata = prev->words;
200 bset->b.cdata = 0;
221 bset->b.cdata = elt->prev->words;
229 bset->b.cdata = 0;
314 bset->b.cdata = elt->words;
359 bset->b.cdata = elt->words;
480 dst->b.cdata = LBITSET_HEAD (dst)->words;
524 dst->b.cdata[windex - dst->b.cindex] |
    [all...]
bitset.h 142 bset->b.cdata[offset] |= ((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
156 bset->b.cdata[offset] &= ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
170 return (bset->b.cdata[offset] >> (bitno % BITSET_WORD_BITS)) & 1;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMConfigurationImpl.java 46 * cdata-sections = false
57 * True to keep existing CDATA nodes; false to replace them/merge them
60 PARAMETERS.put("cdata-sections", new BooleanParameter() {
142 * cdata-sections = false
237 * True to split CDATA sections containing "]]>"; false to signal an
240 PARAMETERS.put("split-cdata-sections", new BooleanParameter() {
273 * comments, text, CDATA sections and processing instructions.
385 CDATASectionImpl cdata = (CDATASectionImpl) node;
387 if (cdata.needsSplitting()) {
389 cdata.split()
    [all...]
  /external/srec/tools/grxmlcompile/
grxmldoc.cpp 194 DEBUG_PRINT (std::string("CDATA ") + name);
195 DEBUG_PRINT (std::string("CDATA ") + str_name);
270 DEBUG_PRINT (std::string("CDATA ") + name);
452 // We must accommodate Rules that have CDATA without an <item> element.
476 // We must accommodate Rules that have CDATA without an <item> element.
486 // Note the Item's CDATA
495 std::string cdata = node.Value(); // getCData() local
498 cdata.erase(0, cdata.find_first_not_of(whitespace) );
499 cdata.erase(cdata.find_last_not_of(whitespace) + 1)
501 std::cout << "\/--" << cdata << "--\/\\n"; local
    [all...]

Completed in 1725 milliseconds

1 2 3 4