HomeSort by relevance Sort by last modified time
    Searched defs:Print (Results 76 - 100 of 295) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/compiler-rt/lib/asan/
asan_memory_profile.cc 49 void Print(uptr top_percent) {
62 StackDepotGet(a.id).Print();
88 hp.Print(reinterpret_cast<uptr>(argument));
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_bitvector_test.cc 59 void Print(const BV &bv) {
69 void Print(const set<uptr> &s) {
  /external/swiftshader/third_party/subzero/pnacl-llvm/
NaClBitcodeParser.cpp 15 void NaClBitcodeRecordData::Print(raw_ostream &os) const {
25 void NaClBitcodeRecord::Print(raw_ostream& os) const {
26 Block.Print(os);
43 void NaClBitcodeBlock::Print(raw_ostream &os) const {
  /external/v8/src/base/debug/
stack_trace_android.cc 78 void StackTrace::Print() const {
80 OS::Print("%s\n", backtrace.c_str());
  /external/v8/src/heap/
gc-idle-time-handler.cc 20 void GCIdleTimeAction::Print() {
41 void GCIdleTimeHeapState::Print() {
  /external/v8/src/
source-position.cc 85 void SourcePosition::Print(std::ostream& out,
105 void SourcePosition::Print(std::ostream& out, Code* code) const {
111 Print(out, function);
119 Print(out, function);
122 inl.position.Print(out, code);
  /external/vixl/tools/
printer.py 69 def Print(string, has_lock = False):
  /frameworks/base/tools/aapt2/java/
AnnotationProcessor.cpp 113 void AnnotationProcessor::Print(Printer* printer) const {
  /frameworks/base/tools/streaming_proto/
Errors.cpp 66 Errors::Print() const
  /build/soong/ui/logger/
logger.go 45 // Print* prints to both stderr and the file log.
46 // Arguments to Print are handled in the manner of fmt.Print.
47 Print(v ...interface{})
53 // Verbose* is equivalent to Print*, but skips stderr unless the
59 // Fatal* is equivalent to Print* followed by a call to panic that
66 // Panic is equivalent to Print* followed by a call to panic.
229 // Print prints to both stderr and the file log.
230 // Arguments are handled in the manner of fmt.Print.
231 func (s *stdLogger) Print(v ...interface{})
    [all...]
  /external/flatbuffers/src/
idl_gen_text.cpp 49 // Print (and its template specialization below for pointers) generate text
52 template<typename T> bool Print(T val, Type type, int /*indent*/,
74 // Print a vector a sequence of JSON values, comma separated, wrapped in "[]".
88 if (!Print(v.GetStructFromOffset(i * type.struct_def->bytesize), type,
93 if (!Print(v[i], type, indent + Indent(opts), nullptr,
105 // Specialization of Print above for pointer types.
106 template<> bool Print<const void *>(const void *val,
116 return Print<const void *>(val, *union_type, indent, nullptr, opts,
162 return Print(fixed ?
196 return Print(val, fd.value.type, indent, union_type, opts, _text)
    [all...]
  /external/libmojo/base/debug/
stack_trace_android.cc 80 void StackTrace::Print() const {
85 // NOTE: Native libraries in APKs are stripped before installing. Print out the
92 // since it lives in procfs, and this is currently used to print a stack trace
  /external/lzma/CPP/7zip/UI/Console/
PercentPrinter.cpp 88 void CPercentPrinter::Print()
  /external/mesa3d/src/mapi/glapi/gen/
glX_proto_size.py 171 print ' static const GLushort a[%u] = {' % (mask + 1)
173 print ' %s, ' % (masked_enums[e])
174 print ' };'
176 print ' static const GLubyte b[%u] = {' % (mask + 1)
178 print ' %u, ' % (masked_count[c])
179 print ' };'
181 print ' const unsigned idx = (e & 0x%02xU);' % (mask)
182 print ''
183 print ' return (e == a[idx]) ? (GLint) b[idx] : 0;'
193 print ' switch( e ) {
    [all...]
  /external/protobuf/src/google/protobuf/io/
printer.cc 109 void Printer::Print(const map<string, string>& variables, const char* text) {
174 void Printer::Print(const char* text) {
176 Print(empty, text);
179 void Printer::Print(const char* text,
183 Print(vars, text);
186 void Printer::Print(const char* text,
192 Print(vars, text);
195 void Printer::Print(const char* text,
203 Print(vars, text);
206 void Printer::Print(const char* text
    [all...]
  /external/skia/tools/
sk_tool_utils.h 209 static void Print(const SkTArray<TopoTestNode*>& graph) {
  /external/swiftshader/third_party/LLVM/lib/Analysis/
SparsePropagation.cpp 329 void SparseSolver::Print(Function &F, raw_ostream &OS) const {
  /external/v8/src/compiler/
liveness-analyzer.cc 24 void LivenessAnalyzer::Print(std::ostream& os) {
26 block->Print(os);
185 void LivenessAnalyzerBlock::Print(std::ostream& os) {
  /frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
BCHeaderField.h 80 void Print() {
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
disasm.go 183 // Print prints a disassembly of the file to w.
187 func (d *Disasm) Print(w io.Writer, filter *regexp.Regexp, start, end uint64, printCode bool) {
247 // Print instruction as bytes.
250 // Print instruction as 32-bit words.
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/
options.go 119 func (ui *stdUI) Print(args ...interface{}) {
  /prebuilts/go/darwin-x86/src/log/
log.go 7 // Logger accessible through helper functions Print[f|ln], Fatal[f|ln], and
144 // the text to print after the prefix specified by the flags of the
176 // Printf calls l.Output to print to the logger.
182 // Print calls l.Output to print to the logger.
183 // Arguments are handled in the manner of fmt.Print.
184 func (l *Logger) Print(v ...interface{}) { l.Output(2, fmt.Sprint(v...)) }
186 // Println calls l.Output to print to the logger.
190 // Fatal is equivalent to l.Print() followed by a call to os.Exit(1).
208 // Panic is equivalent to l.Print() followed by a call to panic()
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
disasm.go 183 // Print prints a disassembly of the file to w.
187 func (d *Disasm) Print(w io.Writer, filter *regexp.Regexp, start, end uint64, printCode bool) {
247 // Print instruction as bytes.
250 // Print instruction as 32-bit words.
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/
options.go 119 func (ui *stdUI) Print(args ...interface{}) {
  /prebuilts/go/linux-x86/src/log/
log.go 7 // Logger accessible through helper functions Print[f|ln], Fatal[f|ln], and
144 // the text to print after the prefix specified by the flags of the
176 // Printf calls l.Output to print to the logger.
182 // Print calls l.Output to print to the logger.
183 // Arguments are handled in the manner of fmt.Print.
184 func (l *Logger) Print(v ...interface{}) { l.Output(2, fmt.Sprint(v...)) }
186 // Println calls l.Output to print to the logger.
190 // Fatal is equivalent to l.Print() followed by a call to os.Exit(1).
208 // Panic is equivalent to l.Print() followed by a call to panic()
    [all...]

Completed in 505 milliseconds

1 2 34 5 6 7 8 91011>>