Searched refs:line_prefix (Results 1 – 12 of 12) sorted by relevance
/external/grpc-grpc/src/core/ext/filters/client_channel/ |
D | uri_parser.cc | 40 char* line_prefix; in bad_uri() local 44 gpr_asprintf(&line_prefix, "bad uri.%s: '", section); in bad_uri() 45 pfx_len = strlen(line_prefix) + pos; in bad_uri() 46 gpr_log(GPR_ERROR, "%s%s'", line_prefix, uri_text); in bad_uri() 47 gpr_free(line_prefix); in bad_uri() 49 line_prefix = static_cast<char*>(gpr_malloc(pfx_len + 1)); in bad_uri() 50 memset(line_prefix, ' ', pfx_len); in bad_uri() 51 line_prefix[pfx_len] = 0; in bad_uri() 52 gpr_log(GPR_ERROR, "%s^ here", line_prefix); in bad_uri() 53 gpr_free(line_prefix); in bad_uri()
|
/external/flatbuffers/src/ |
D | code_generators.cpp | 149 std::string line_prefix = in GenComment() local 155 code += line_prefix + *it + "\n"; in GenComment()
|
/external/tensorflow/tensorflow/java/src/gen/cc/ |
D | source_writer.cc | 46 SourceWriter& SourceWriter::Prefix(const char* line_prefix) { in Prefix() argument 47 line_prefix_ = line_prefix; in Prefix()
|
D | source_writer.h | 57 SourceWriter& Prefix(const char* line_prefix);
|
/external/google-styleguide/cpplint/ |
D | cpplint.py | 3937 line_prefix = opening_parenthesis[0][0:opening_parenthesis[2]] 3938 macro = Search(r'\b([A-Z_][A-Z0-9_]*)\s*$', line_prefix) 3939 func = Match(r'^(.*\])\s*$', line_prefix) 3946 Search(r'\b(?:struct|union)\s+alignas\s*$', line_prefix) or 3947 Search(r'\bdecltype$', line_prefix) or 3948 Search(r'\s+=\s*$', line_prefix)):
|
/external/python/cpython2/Lib/ |
D | pdb.py | 57 line_prefix = '\n-> ' # Probably a better default variable 893 def print_stack_entry(self, frame_lineno, prompt_prefix=line_prefix):
|
/external/python/cpython3/Lib/test/ |
D | test_clinic.py | 61 self.line_prefix = self.line_suffix = ''
|
/external/python/cpython3/Lib/ |
D | pdb.py | 134 line_prefix = '\n-> ' # Probably a better default variable 1450 def print_stack_entry(self, frame_lineno, prompt_prefix=line_prefix):
|
/external/libvpx/libvpx/tools/ |
D | cpplint.py | 3090 line_prefix = opening_parenthesis[0][0:opening_parenthesis[2]] 3091 macro = Search(r'\b([A-Z_]+)\s*$', line_prefix) 3097 Search(r'\s+=\s*$', line_prefix)):
|
/external/libaom/libaom/tools/ |
D | cpplint.py | 3090 line_prefix = opening_parenthesis[0][0:opening_parenthesis[2]] 3091 macro = Search(r'\b([A-Z_]+)\s*$', line_prefix) 3097 Search(r'\s+=\s*$', line_prefix)):
|
/external/python/cpython3/Tools/clinic/ |
D | clinic.py | 1247 if clinic.line_prefix: 1248 s = indent_all_lines(s, clinic.line_prefix) 1720 self.line_prefix = self.line_suffix = ''
|
/external/python/cpython3/Doc/howto/ |
D | clinic.rst | 1607 set line_prefix "string" 1611 ``line_prefix`` is a string that will be prepended to every line of Clinic's output;
|