HomeSort by relevance Sort by last modified time
    Searched refs:indent_ (Results 1 - 21 of 21) sorted by null

  /external/bcc/src/cc/frontends/b/
printer.h 28 explicit Printer(FILE* out) : out_(out), indent_(0) {}
38 int indent_; member in class:ebpf::cc::Printer
printer.cc 25 fprintf(out_, "%*s", indent_, "");
32 ++indent_;
38 --indent_;
40 fprintf(out_, "%*s}", indent_, "");
171 ++indent_;
177 --indent_;
178 fprintf(out_, "%*s}", indent_, "");
228 ++indent_;
234 --indent_;
235 fprintf(out_, "%*s}", indent_, "");
    [all...]
codegen_llvm.h 114 int indent_; member in class:ebpf::cc::CodegenLLVM
codegen_llvm.cc 97 : out_(stdout), mod_(mod), indent_(0), tmp_reg_index_(0), scopes_(scopes),
    [all...]
  /external/tensorflow/tensorflow/core/lib/strings/
proto_text_util.h 45 StrAppend(output_, level_empty_ ? "" : field_separator_, indent_,
47 if (!short_debug_) StrAppend(&indent_, " ");
53 if (!short_debug_) indent_.resize(indent_.size() - 2);
54 StrAppend(output_, level_empty_ ? "" : field_separator_, indent_, "}");
104 StrAppend(output_, level_empty_ ? "" : field_separator_, indent_,
112 string indent_; member in class:tensorflow::strings::ProtoTextOutput
  /external/v8/src/ast/
prettyprinter.h 118 void inc_indent() { indent_++; }
119 void dec_indent() { indent_--; }
126 int indent_; member in class:v8::internal::final
prettyprinter.cc 697 : output_(nullptr), size_(0), pos_(0), indent_(0) {
702 DCHECK_EQ(indent_, 0);
708 for (int i = 0; i < indent_; i++) {
    [all...]
  /external/protobuf/src/google/protobuf/io/
printer.cc 292 indent_ += " ";
296 if (indent_.empty()) {
301 indent_.resize(indent_.size() - 2);
320 WriteRaw(indent_.data(), indent_.size());
printer.h 303 string indent_; member in class:google::protobuf::io::Printer
  /external/flatbuffers/src/
idl_gen_grpc.cpp 129 FlatBufPrinter(std::string *str) : str_(str), escape_char_('$'), indent_(0) {}
156 str_->insert(str_->end(), indent_ * 2, ' ');
170 void Indent() { indent_++; }
173 indent_--;
174 FLATBUFFERS_ASSERT(indent_ >= 0);
180 int indent_; member in class:flatbuffers::FlatBufPrinter
  /external/v8/src/torque/
implementation-visitor.h 32 : FileVisitor(global_context), indent_(0), next_temp_(0) {}
158 visitor->indent_++;
161 visitor_->indent_--;
262 size_t indent_; member in class:v8::internal::torque::ImplementationVisitor
implementation-visitor.cc     [all...]
  /external/deqp-deps/SPIRV-Tools/source/
disassemble.cpp 52 indent_(spvIsInBitfield(SPV_BINARY_TO_TEXT_OPTION_INDENT, options)
118 const int indent_; // How much to indent. 0 means don't indent member in class:__anon20240::Disassembler
164 if (indent_)
165 stream_ << std::setw(std::max(0, indent_ - 3 - int(id_name.size())));
170 stream_ << std::string(indent_, ' ');
  /external/swiftshader/third_party/SPIRV-Tools/source/
disassemble.cpp 52 indent_(spvIsInBitfield(SPV_BINARY_TO_TEXT_OPTION_INDENT, options)
118 const int indent_; // How much to indent. 0 means don't indent member in class:__anon41174::Disassembler
164 if (indent_)
165 stream_ << std::setw(std::max(0, indent_ - 3 - int(id_name.size())));
170 stream_ << std::string(indent_, ' ');
  /external/v8/src/compiler/
graph-visualizer.cc 442 visualizer->indent_++;
446 visualizer_->indent_--;
449 DCHECK_LE(0, visualizer_->indent_);
458 int indent_; member in class:v8::internal::compiler::GraphC1Visualizer
466 for (int i = 0; i < indent_; i++) {
473 : os_(os), indent_(0), zone_(zone) {}
  /external/protobuf/src/google/protobuf/
text_format.cc 1224 string indent_; member in class:google::protobuf::TextFormat::Printer::TextGenerator
    [all...]
  /art/compiler/optimizing/
graph_visualizer.cc 198 indent_(0) {}
209 indent_++;
213 indent_--;
244 for (size_t i = 0; i < indent_; ++i) {
885 size_t indent_; member in class:art::HGraphVisualizerPrinter
    [all...]
  /external/v8/src/
json-stringifier.cc 99 V8_INLINE void Indent() { indent_++; }
100 V8_INLINE void Unindent() { indent_--; }
118 int indent_; member in class:v8::internal::BASE_EMBEDDED
199 : isolate_(isolate), builder_(isolate), gap_(nullptr), indent_(0) {
808 for (int i = 0; i < indent_; i++) builder_.AppendCString(gap_);
  /frameworks/av/media/codec2/sfplugin/
ReflectedParamUpdater.cpp 37 std::string ReflectedParamUpdater::Dict::debugString(size_t indent_) const {
38 std::string indent(indent_, ' ');
100 hexdump(bufValue->data(), bufValue->size(), indent_ + 4, &tmp);
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 659 string indent_(*target, pos, target->find_first_not_of(" \t", pos) - pos);
661 if (indent_.empty()) {
668 if (data_[i] == '\n') indent_size += indent_.size();
679 memcpy(target_ptr, indent_.data(), indent_.size());
680 target_ptr += indent_.size();
    [all...]
  /art/runtime/jni/
check_jni.cc 319 : function_name_(functionName), indent_(0), flags_(flags), has_method_(has_method) {
563 indent_ = methodName.size() + 1;
566 indent_ = 0;
569 LOG(INFO) << StringPrintf("JNI: %*s<- %s returned %s", indent_, "", function_name_, msg.c_str());
614 indent_ = methodName.size() + 1;
617 indent_ = 0;
620 LOG(INFO) << StringPrintf("JNI: %*s<- %s returned %s", indent_, "", function_name_, msg.c_str());
1478 int indent_; member in class:art::__anon120::ScopedCheck
    [all...]

Completed in 4015 milliseconds