/external/llvm/lib/DebugInfo/PDB/ |
D | PDBExtras.cpp | 25 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, in operator <<() argument 28 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Bool, OS) in operator <<() 29 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Single, OS) in operator <<() 30 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Double, OS) in operator <<() 31 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int8, OS) in operator <<() 32 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int16, OS) in operator <<() 33 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int32, OS) in operator <<() 34 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int64, OS) in operator <<() 35 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt8, OS) in operator <<() 36 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt16, OS) in operator <<() [all …]
|
/external/v8/src/ |
D | objects-printer.cc | 23 OFStream os(stdout); in Print() local 24 this->Print(os); in Print() 25 os << std::flush; in Print() 29 void Object::Print(std::ostream& os) { // NOLINT in Print() argument 31 os << "Smi: " << std::hex << "0x" << Smi::cast(this)->value(); in Print() 32 os << std::dec << " (" << Smi::cast(this)->value() << ")\n"; in Print() 34 HeapObject::cast(this)->HeapObjectPrint(os); in Print() 39 void HeapObject::PrintHeader(std::ostream& os, const char* id) { // NOLINT in PrintHeader() argument 40 os << reinterpret_cast<void*>(this) << ": ["; in PrintHeader() 42 os << id; in PrintHeader() [all …]
|
/external/libvncserver/libvncserver/ |
D | zrleoutstream.c | 68 zrleOutStream *os; in zrleOutStreamNew() local 70 os = malloc(sizeof(zrleOutStream)); in zrleOutStreamNew() 71 if (os == NULL) in zrleOutStreamNew() 74 if (!zrleBufferAlloc(&os->in, ZRLE_IN_BUFFER_SIZE)) { in zrleOutStreamNew() 75 free(os); in zrleOutStreamNew() 79 if (!zrleBufferAlloc(&os->out, ZRLE_OUT_BUFFER_SIZE)) { in zrleOutStreamNew() 80 zrleBufferFree(&os->in); in zrleOutStreamNew() 81 free(os); in zrleOutStreamNew() 85 os->zs.zalloc = Z_NULL; in zrleOutStreamNew() 86 os->zs.zfree = Z_NULL; in zrleOutStreamNew() [all …]
|
/external/clang/lib/AST/ |
D | TypePrinter.cpp | 93 void print(const Type *ty, Qualifiers qs, raw_ostream &OS, 95 void print(QualType T, raw_ostream &OS, StringRef PlaceHolder); 98 void spaceBeforePlaceHolder(raw_ostream &OS); 99 void printTypeSpec(const NamedDecl *D, raw_ostream &OS); 101 void printBefore(const Type *ty, Qualifiers qs, raw_ostream &OS); 102 void printBefore(QualType T, raw_ostream &OS); 103 void printAfter(const Type *ty, Qualifiers qs, raw_ostream &OS); 104 void printAfter(QualType T, raw_ostream &OS); 105 void AppendScope(DeclContext *DC, raw_ostream &OS); 106 void printTag(TagDecl *T, raw_ostream &OS); [all …]
|
D | StmtPrinter.cpp | 37 raw_ostream &OS; member in __anon7f41149f0111::StmtPrinter 43 StmtPrinter(raw_ostream &os, PrinterHelper* helper, in StmtPrinter() argument 46 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy) {} in StmtPrinter() 58 OS << ";\n"; in PrintStmt() 81 OS << "<null expr>"; in PrintExpr() 86 OS << " "; in Indent() 87 return OS; in Indent() 91 if (Helper && Helper->handledStmt(S,OS)) in Visit() 100 OS << "<<unknown expr type>>"; in VisitExpr() 118 OS << "{\n"; in PrintRawCompoundStmt() [all …]
|
/external/llvm/utils/TableGen/ |
D | Attributes.cpp | 26 void emit(raw_ostream &OS); 29 void emitTargetIndependentEnums(raw_ostream &OS); 30 void emitConversionFn(raw_ostream &OS); 31 void emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr); 33 void printEnumAttrClasses(raw_ostream &OS, 35 void printStrBoolAttrClasses(raw_ostream &OS, 43 void Attributes::emitTargetIndependentEnums(raw_ostream &OS) { in emitTargetIndependentEnums() argument 44 OS << "#ifdef GET_ATTR_ENUM\n"; in emitTargetIndependentEnums() 45 OS << "#undef GET_ATTR_ENUM\n"; in emitTargetIndependentEnums() 51 OS << A->getName() << ",\n"; in emitTargetIndependentEnums() [all …]
|
D | DAGISelMatcherEmitter.cpp | 60 unsigned StartIdx, formatted_raw_ostream &OS); 62 void EmitPredicateFunctions(formatted_raw_ostream &OS); 64 void EmitHistogram(const Matcher *N, formatted_raw_ostream &OS); 67 formatted_raw_ostream &OS); 133 static uint64_t EmitVBRValue(uint64_t Val, raw_ostream &OS) { in EmitVBRValue() argument 135 OS << Val << ", "; in EmitVBRValue() 142 OS << (Val&127) << "|128,"; in EmitVBRValue() 146 OS << Val; in EmitVBRValue() 148 OS << "/*" << InVal << "*/"; in EmitVBRValue() 149 OS << ", "; in EmitVBRValue() [all …]
|
/external/clang/utils/TableGen/ |
D | ClangAttrEmitter.cpp | 216 virtual void writeAccessors(raw_ostream &OS) const = 0; 217 virtual void writeAccessorDefinitions(raw_ostream &OS) const {} in writeAccessorDefinitions() 218 virtual void writeASTVisitorTraversal(raw_ostream &OS) const {} in writeASTVisitorTraversal() 219 virtual void writeCloneArgs(raw_ostream &OS) const = 0; 220 virtual void writeTemplateInstantiationArgs(raw_ostream &OS) const = 0; 221 virtual void writeTemplateInstantiation(raw_ostream &OS) const {} in writeTemplateInstantiation() 222 virtual void writeCtorBody(raw_ostream &OS) const {} in writeCtorBody() 223 virtual void writeCtorInitializers(raw_ostream &OS) const = 0; 224 virtual void writeCtorDefaultInitializers(raw_ostream &OS) const = 0; 225 virtual void writeCtorParameters(raw_ostream &OS) const = 0; [all …]
|
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
D | DAGISelMatcherEmitter.cpp | 55 unsigned StartIdx, formatted_raw_ostream &OS); 57 void EmitPredicateFunctions(formatted_raw_ostream &OS); 59 void EmitHistogram(const Matcher *N, formatted_raw_ostream &OS); 62 formatted_raw_ostream &OS); 115 static uint64_t EmitVBRValue(uint64_t Val, raw_ostream &OS) { in EmitVBRValue() argument 117 OS << Val << ", "; in EmitVBRValue() 124 OS << (Val&127) << "|128,"; in EmitVBRValue() 128 OS << Val; in EmitVBRValue() 130 OS << "/*" << InVal << "*/"; in EmitVBRValue() 131 OS << ", "; in EmitVBRValue() [all …]
|
/external/google-breakpad/autotools/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/libnetfilter_conntrack/build-aux/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/libpcap/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/libmicrohttpd/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/icu/icu4c/source/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/tcpdump/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/protobuf/gtest/build-aux/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/pcre/dist2/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/strace/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/ImageMagick/config/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/protobuf/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/libogg/ |
D | config.sub | 119 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 120 # Here we must recognize all the valid KERNEL-OS combinations. 126 os=-$maybe_os 132 then os=`echo $1 | sed 's/.*-/-/'` 133 else os=; fi 141 case $os in 142 -sun*os*) 152 os= 156 os= 162 os=-vxworks [all …]
|
/external/libvorbis/ |
D | config.sub | 119 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 120 # Here we must recognize all the valid KERNEL-OS combinations. 126 os=-$maybe_os 132 then os=`echo $1 | sed 's/.*-/-/'` 133 else os=; fi 141 case $os in 142 -sun*os*) 152 os= 156 os= 162 os=-vxworks [all …]
|
/external/libedit/ |
D | config.sub | 114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 115 # Here we must recognize all the valid KERNEL-OS combinations. 123 os=-$maybe_os 127 os=-linux-android 133 then os=`echo $1 | sed 's/.*-/-/'` 134 else os=; fi 142 case $os in 143 -sun*os*) 153 os= 157 os=-cnk [all …]
|
/external/openssh/ |
D | config.sub | 121 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 122 # Here we must recognize all the valid KERNEL-OS combinations. 130 os=-$maybe_os 134 os=-linux-android 140 then os=`echo $1 | sed 's/.*-/-/'` 141 else os=; fi 149 case $os in 150 -sun*os*) 160 os= 164 os=-cnk [all …]
|
/external/bison/build-aux/ |
D | config.sub | 121 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). 122 # Here we must recognize all the valid KERNEL-OS combinations. 130 os=-$maybe_os 134 os=-linux-android 140 then os=`echo $1 | sed 's/.*-/-/'` 141 else os=; fi 149 case $os in 150 -sun*os*) 160 os= 164 os=-cnk [all …]
|