/external/boringssl/src/crypto/evp/ |
p_rsa_asn1.c | 290 static int rsa_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, 292 return do_rsa_print(bp, pkey->pkey.rsa, indent, 0); 296 static int rsa_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, 298 return do_rsa_print(bp, pkey->pkey.rsa, indent, 1); 342 X509_ALGOR *maskHash, int indent) { 353 !BIO_indent(bp, indent, 128) || 367 !BIO_indent(bp, indent, 128) || 390 if (!BIO_indent(bp, indent, 128) || 404 if (!BIO_indent(bp, indent, 128) || 425 const ASN1_STRING *sig, int indent, ASN1_PCTX *pctx) [all...] |
/external/boringssl/src/crypto/x509/ |
x509.c | 130 int X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent) { 139 BIO_indent(bp, indent, indent) <= 0) {
|
/external/boringssl/src/crypto/x509v3/ |
v3_pku.c | 66 static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, PKEY_USAGE_PERIOD *usage, BIO *out, int indent); 86 PKEY_USAGE_PERIOD *usage, BIO *out, int indent) 88 BIO_printf(out, "%*s", indent, "");
|
/external/icu/icu4c/source/test/intltest/ |
datadrivennumberformattestsuite.cpp | 156 UnicodeString indent(" "); 157 infoln(indent + fFileTestName); 158 infoln(indent + fFileLine);
|
/external/libexif/libexif/ |
exif-content.h | 130 * \param[in] indent how many levels deep to indent the data 132 void exif_content_dump (ExifContent *content, unsigned int indent);
|
exif-entry.h | 170 * \param[in] indent how many levels deep to indent the data 172 void exif_entry_dump (ExifEntry *entry, unsigned int indent);
|
/external/llvm/include/llvm/ProfileData/ |
SampleProfWriter.h | 87 : SampleProfileWriter(OS), Indent(0) {} 95 /// Indent level to use when writing. 98 unsigned Indent;
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGDumper.cpp | 581 static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) { 586 DumpNodes(Op.getNode(), indent+2, G); 589 dbgs().indent(indent); 634 static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent, 640 OS.indent(indent); 658 DumpNodesr(OS, Op.getNode(), indent+2, G, once); 673 unsigned indent) { 677 OS.indent(indent) [all...] |
/external/llvm/lib/DebugInfo/PDB/ |
PDBSymbol.cpp | 106 Dumper.dump(OS, Indent, *DerivedThis); 110 void PDBSymbol::defaultDump(raw_ostream &OS, int Indent) const { 111 RawSymbol->dump(OS, Indent);
|
/external/mesa3d/configs/ |
current.in | 62 # Indent (used for generating dispatch tables) 63 INDENT = @INDENT@
|
/external/selinux/policycoreutils/gui/ |
html_util.py | 48 self.indent = ' ' * self.indent_col 71 write(self.indent) 76 write('\n' + self.indent)
|
/external/skia/debugger/QT/ |
SkListWidget.cpp | 60 int indent = index.data(Qt::UserRole + 3).toInt(); local 93 r = option.rect.adjusted(kImageSpace+kCommandNumberSpace+kTimeSpace+indent, 0, -10, -7); 96 r = option.rect.adjusted(kImageSpace+kCommandNumberSpace+indent, 0, -10, -7);
|
/external/sl4a/ScriptingLayerForAndroid/res/xml/ |
preferences.xml | 46 <CheckBoxPreference android:key="editor_auto_indent" android:defaultValue="false" android:summaryOff="Auto Indent Disabled" android:summaryOn="Auto Indent Enabled" android:title="Auto Indent"></CheckBoxPreference>
|
/external/v8/tools/ |
trace-maps-processor.py | 122 def PlainPrint(m, indent, label): 123 print("%s%s (%s)" % (indent, m, label)) 126 PlainPrint(t, indent + " ", transitions[m][t].reason)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/ |
EclipseXmlFormatPreferences.java | 90 * Returns the string to use to indent one indentation level 92 * @return the string used to indent one indentation level 100 // Look up Eclipse indent preferences
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_message.cc | 445 printer->Indent(); 452 printer->Indent(); 542 printer->Indent(); 596 printer->Indent(); 757 printer->Indent(); 877 printer->Indent(); [all...] |
/toolchain/binutils/binutils-2.25/binutils/ |
prdbg.c | 41 unsigned int indent; member in struct:pr_handle 78 static void indent (struct pr_handle *); 302 info.indent = 0; 323 /* Indent to the current indentation level. */ 326 indent (struct pr_handle *info) 330 for (i = 0; i < info->indent; i++) 457 /* Indent the type at the top of the stack by appending spaces. */ 464 for (i = 0; i < info->indent; i++) 541 assert (info->indent == 0); 555 assert (info->indent == 0) 322 indent (struct pr_handle *info) function [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
VolumeDialogController.java | [all...] |
/external/opencv3/3rdparty/jinja2/ |
compiler.py | 439 self.indent() 443 self.indent() 451 def indent(self): member in class:CodeGenerator 452 """Indent by one.""" 723 self.indent() 804 self.indent() 818 self.indent() 820 self.indent() 823 self.indent() 834 self.indent() [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_message.cc | 249 printer->Indent(); 322 printer->Indent(); 421 printer->Indent(); 486 printer->Indent(); 553 printer->Indent(); 619 printer->Indent(); 805 printer->Indent(); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
EditorWindow.py | 225 text.bind("<<newline-and-indent>>",self.newline_and_indent_event) 226 text.bind("<<smart-indent>>",self.smart_indent_event) 227 text.bind("<<indent-region>>",self.indent_region_event) 265 # usetabs true -> literal tab characters are used by indent and 269 # false -> tab characters are converted to spaces by indent 274 usespaces = idleConf.GetOption('main', 'Indent', 'use-spaces', type='bool') 284 # indentwidth is the number of screen characters per indent level. 825 self.indentwidth = idleConf.GetOption('main', 'Indent','num-spaces', [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
EditorWindow.py | 225 text.bind("<<newline-and-indent>>",self.newline_and_indent_event) 226 text.bind("<<smart-indent>>",self.smart_indent_event) 227 text.bind("<<indent-region>>",self.indent_region_event) 265 # usetabs true -> literal tab characters are used by indent and 269 # false -> tab characters are converted to spaces by indent 274 usespaces = idleConf.GetOption('main', 'Indent', 'use-spaces', type='bool') 284 # indentwidth is the number of screen characters per indent level. 825 self.indentwidth = idleConf.GetOption('main', 'Indent','num-spaces', [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
EditorWindow.py | 225 text.bind("<<newline-and-indent>>",self.newline_and_indent_event) 226 text.bind("<<smart-indent>>",self.smart_indent_event) 227 text.bind("<<indent-region>>",self.indent_region_event) 265 # usetabs true -> literal tab characters are used by indent and 269 # false -> tab characters are converted to spaces by indent 274 usespaces = idleConf.GetOption('main', 'Indent', 'use-spaces', type='bool') 284 # indentwidth is the number of screen characters per indent level. 825 self.indentwidth = idleConf.GetOption('main', 'Indent','num-spaces', [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
EditorWindow.py | 225 text.bind("<<newline-and-indent>>",self.newline_and_indent_event) 226 text.bind("<<smart-indent>>",self.smart_indent_event) 227 text.bind("<<indent-region>>",self.indent_region_event) 265 # usetabs true -> literal tab characters are used by indent and 269 # false -> tab characters are converted to spaces by indent 274 usespaces = idleConf.GetOption('main', 'Indent', 'use-spaces', type='bool') 284 # indentwidth is the number of screen characters per indent level. 825 self.indentwidth = idleConf.GetOption('main', 'Indent','num-spaces', [all...] |
/external/autotest/utils/ |
reindent.py | 156 self.level = 0 # current indent level 258 INDENT=tokenize.INDENT, 267 # (NL | COMMENT)* (INDENT | DEDENT+)? 270 elif type == INDENT:
|