/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/ |
KMLFormatter.java | 30 builder.addLine("<?xml version=\"1.0\" encoding=\"UTF-8\"?>"); 31 builder.addLine("<kml xmlns=\"http://earth.google.com/kml/2.2\">"); 32 builder.addLine("<Document>"); 38 builder.addLine("</Document>"); 39 builder.addLine("</kml>"); 49 builder.addLine("<Placemark>"); 50 builder.addLine("<description>"); 51 builder.addLine("accuracy = " + loc.getAccuracy()); 52 builder.addLine("distance from last network location = " 54 builder.addLine("</description>") [all...] |
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
proxy_generator.cc | 51 text.AddLine("// Automatic generation of D-Bus interfaces:"); 53 text.AddLine(StringPrintf("// - %s", interface.name.c_str())); 56 text.AddLine(StringPrintf("#ifndef %s", header_guard.c_str())); 57 text.AddLine(StringPrintf("#define %s", header_guard.c_str())); 58 text.AddLine("#include <memory>"); 59 text.AddLine("#include <string>"); 60 text.AddLine("#include <vector>"); 62 text.AddLine("#include <base/bind.h>"); 63 text.AddLine("#include <base/callback.h>"); 64 text.AddLine("#include <base/logging.h>") [all...] |
adaptor_generator.cc | 32 text.AddLine("// Automatic generation of D-Bus interfaces:"); 34 text.AddLine(StringPrintf("// - %s", interface.name.c_str())); 37 text.AddLine(StringPrintf("#ifndef %s", header_guard.c_str())); 38 text.AddLine(StringPrintf("#define %s", header_guard.c_str())); 39 text.AddLine("#include <memory>"); 40 text.AddLine("#include <string>"); 41 text.AddLine("#include <tuple>"); 42 text.AddLine("#include <vector>"); 44 text.AddLine("#include <base/macros.h>"); 45 text.AddLine("#include <dbus/object_path.h>") [all...] |
indented_text_unittest.cc | 33 TEST_F(IndentedTextTest, AddLine) { 35 text_.AddLine(kTestString0); 41 text_.AddLine(kTestString1); 89 text_.AddLine(kTestString); 95 text_.AddLine(kTestString); 101 text_.AddLine(kTestString); 104 text_.AddLine(kTestString); 109 text_.AddLine(kTestString); 123 text_.AddLine("test"); 175 text_.AddLine("no indent") [all...] |
indented_text.cc | 23 AddLine(""); 36 void IndentedText::AddLine(const std::string& line) { 47 AddLine(line); 97 AddLine("//"); 99 AddLine("// " + line);
|
name_parser.cc | 20 text->AddLine(base::StringPrintf("namespace %s {", name.c_str())); 24 text->AddLine(base::StringPrintf("} // namespace %s", name.c_str()));
|
method_name_generator.cc | 36 text.AddLine(
|
/external/google-breakpad/src/common/ |
dwarf_line_to_module_unittest.cc | 51 h.AddLine(0x6fd126fbf74f2680LL, 0x63c9a14cf556712bLL, 0x30bf0f27, 77 h.AddLine(0x69900c5d553b7274ULL, 0x90fded183f0d0d3cULL, 0x2b80377a, 79 h.AddLine(0x45811219a39b7101ULL, 0x25a5e6a924afc41fULL, 0x63beb4a4, 81 h.AddLine(0xfa90514c1dc9704bULL, 0x0063efeabc02f313ULL, 0x1d161d56, 83 h.AddLine(0x556b55fb6a647b10ULL, 0x3f3089ca2bfd80f5ULL, 0x1e7a667c, 86 h.AddLine(0xe2d72a37f8d9403aULL, 0x034dfab5b0d4d236ULL, 0x63beb4a5, 134 h.AddLine(1, 1, 1, 0, 0); 152 h.AddLine(1, 1, 1, 0, 0); 169 h.AddLine(1, 1, 1, 0, 0); 182 h.AddLine(1, 1, 1, 0, 0) [all...] |
/frameworks/base/core/tests/coretests/src/com/android/internal/os/ |
KernelWakelockReaderTest.java | 42 public ProcFileBuilder addLine(String name, int count, long timeMillis) { 86 .addLine("Wakelock", 34, 123) // Milliseconds 101 .addLine("Wakelock", 1, 10) 102 .addLine("Fakelock", 2, 20) 114 .addLine("Wakelock", 1, 10) // Milliseconds 115 .addLine("Wakelock", 1, 10) // Milliseconds 130 .addLine("Fakelock", 3, 30) 139 .addLine("Wakelock", 1, 10)
|
/frameworks/av/services/mediaresourcemanager/ |
ServiceLog.cpp | 45 addLine(log.string(), linePrefix, &result); 48 addLine("...", linePrefix, &result); 50 addLine("[no events yet]", linePrefix, &result); 55 void ServiceLog::addLine(const char *log, const char *prefix, String8 *result) const {
|
ServiceLog.h | 43 void addLine(const char *log, const char *prefix, String8 *result) const;
|
/external/chromium-trace/catapult/third_party/graphy/graphy/backends/google_chart_api/ |
line_chart_test.py | 34 return chart.AddLine(points, color=color, label=label) 43 self.chart.AddLine([1, 2, 3], markers=[(1, x), (2, o), (3, x)]) 44 self.chart.AddLine([4, 5, 6], markers=[(x, line) for x in range(3)]) 55 self.chart.AddLine([1, 2, 3]) 56 self.chart.AddLine([4, 5, 6], pattern=line_chart.LineStyle.DASHED)
|
/external/chromium-trace/catapult/third_party/graphy/graphy/ |
line_chart.py | 51 # ((on, off) tuples, as passed to LineChart.AddLine) 95 self.AddLine(points) 97 def AddLine(self, points, label=None, color=None, 127 warnings.warn('LineChart.AddSeries is deprecated. Call AddLine instead. ', 129 return self.AddLine(points, color=color, width=style.width,
|
formatters_test.py | 30 self.chart.AddLine([1, 2, 3], label='A') 31 self.chart.AddLine([4, 5, 6], label='B') 67 self.chart.AddLine([])
|
line_chart_test.py | 56 self.assertRaises(DeprecationWarning, chart.AddLine, [1, 2, 3], 61 chart.AddLine([1, 2, 3], 'label', 'color', markers=[x])
|
/external/toybox/scripts/ |
bloatcheck | 9 addline() function 35 [ $DELTA -ne 0 ] && addline 54 [ $DELTA -ne 0 ] && addline
|
/packages/apps/Email/provider_src/com/android/email/mail/transport/ |
DiscourseLogger.java | 46 private void addLine(String s) { 56 addLine(mReceivingLine.toString()); 79 addLine(command);
|
/external/skia/animations/ |
lines#1.xml | 15 <post target="addLine" /> 26 <event kind="user" id="addLine" >
|
/external/icu/icu4c/source/samples/layout/ |
paragraph.h | 49 void addLine(const ParagraphLayout::Line *line);
|
/external/pdfium/xfa/src/fdp/include/ |
fde_pth.h | 24 virtual void AddLine(const CFX_PointF& pt1, const CFX_PointF& pt2) = 0;
|
/external/pdfium/xfa/src/fxgraphics/src/ |
fx_path_generator.h | 36 void AddLine(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2);
|
/external/skia/src/core/ |
SkEdgeBuilder.h | 53 void addLine(const SkPoint pts[]);
|
/frameworks/base/core/java/android/service/notification/ |
ZenModeConfig.java | 212 return d.addLine("config", "delete"); 215 d.addLine("user", user, to.user); 218 d.addLine("allowCalls", allowCalls, to.allowCalls); 221 d.addLine("allowRepeatCallers", allowRepeatCallers, to.allowRepeatCallers); 224 d.addLine("allowMessages", allowMessages, to.allowMessages); 227 d.addLine("allowCallsFrom", allowCallsFrom, to.allowCallsFrom); 230 d.addLine("allowMessagesFrom", allowMessagesFrom, to.allowMessagesFrom); 233 d.addLine("allowReminders", allowReminders, to.allowReminders); 236 d.addLine("allowEvents", allowEvents, to.allowEvents); 239 d.addLine("allowWhenScreenOff", allowWhenScreenOff, to.allowWhenScreenOff) [all...] |
/external/deqp/modules/gles3/stress/ |
es3sLongShaderTests.cpp | 204 void addLine (const std::string& text); 231 addLine("#version 300 es"); 234 addLine("layout(location = 0) out mediump vec4 o_fragColor;"); 236 addLine("void main (void)"); 255 addLine(outName + " = vec4(" + expr + ");"); 257 addLine(outName + " = " + expr + ";"); 303 void LongShaderGenerator::addLine (const std::string& text) 313 addLine("{"); 325 addLine("mediump float " + varName + " = " + de::floatToString(varValue, 5) + "f;"); 341 addLine("}"); [all...] |
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/ |
Source.java | 63 addLine(l); 68 private void addLine(final String l) {
|