Home
last modified time | relevance | path

Searched full:os (Results 1 – 25 of 8267) sorted by relevance

12345678910>>...331

/external/llvm/lib/DebugInfo/PDB/
DPDBExtras.cpp24 raw_ostream &llvm::operator<<(raw_ostream &OS, const PDB_VariantType &Type) { in operator <<() argument
26 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Bool, OS) in operator <<()
27 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Single, OS) in operator <<()
28 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Double, OS) in operator <<()
29 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int8, OS) in operator <<()
30 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int16, OS) in operator <<()
31 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int32, OS) in operator <<()
32 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int64, OS) in operator <<()
33 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt8, OS) in operator <<()
34 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt16, OS) in operator <<()
[all …]
/external/v8/src/
Dobjects-printer.cc20 OFStream os(stdout); in Print() local
21 this->Print(os); in Print()
22 os << std::flush; in Print()
26 void Object::Print(std::ostream& os) { // NOLINT in Print() argument
28 Smi::cast(this)->SmiPrint(os); in Print()
30 HeapObject::cast(this)->HeapObjectPrint(os); in Print()
35 void HeapObject::PrintHeader(std::ostream& os, const char* id) { // NOLINT in PrintHeader() argument
36 os << reinterpret_cast<void*>(this) << ": [" << id << "]\n"; in PrintHeader()
40 void HeapObject::HeapObjectPrint(std::ostream& os) { // NOLINT in HeapObjectPrint() argument
45 String::cast(this)->StringPrint(os); in HeapObjectPrint()
[all …]
/external/libvncserver/libvncserver/
Dzrleoutstream.c68 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/
DTypePrinter.cpp91 void print(const Type *ty, Qualifiers qs, raw_ostream &OS,
93 void print(QualType T, raw_ostream &OS, StringRef PlaceHolder);
96 void spaceBeforePlaceHolder(raw_ostream &OS);
97 void printTypeSpec(const NamedDecl *D, raw_ostream &OS);
99 void printBefore(const Type *ty, Qualifiers qs, raw_ostream &OS);
100 void printBefore(QualType T, raw_ostream &OS);
101 void printAfter(const Type *ty, Qualifiers qs, raw_ostream &OS);
102 void printAfter(QualType T, raw_ostream &OS);
103 void AppendScope(DeclContext *DC, raw_ostream &OS);
104 void printTag(TagDecl *T, raw_ostream &OS);
[all …]
DStmtPrinter.cpp36 raw_ostream &OS; member in __anon7f41149f0111::StmtPrinter
42 StmtPrinter(raw_ostream &os, PrinterHelper* helper, in StmtPrinter() argument
45 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy) {} in StmtPrinter()
57 OS << ";\n"; in PrintStmt()
80 OS << "<null expr>"; in PrintExpr()
85 OS << " "; in Indent()
86 return OS; in Indent()
90 if (Helper && Helper->handledStmt(S,OS)) in Visit()
99 OS << "<<unknown expr type>>"; in VisitExpr()
117 OS << "{\n"; in PrintRawCompoundStmt()
[all …]
/external/clang/utils/TableGen/
DClangAttrEmitter.cpp193 virtual void writeAccessors(raw_ostream &OS) const = 0;
194 virtual void writeAccessorDefinitions(raw_ostream &OS) const {} in writeAccessorDefinitions()
195 virtual void writeASTVisitorTraversal(raw_ostream &OS) const {} in writeASTVisitorTraversal()
196 virtual void writeCloneArgs(raw_ostream &OS) const = 0;
197 virtual void writeTemplateInstantiationArgs(raw_ostream &OS) const = 0;
198 virtual void writeTemplateInstantiation(raw_ostream &OS) const {} in writeTemplateInstantiation()
199 virtual void writeCtorBody(raw_ostream &OS) const {} in writeCtorBody()
200 virtual void writeCtorInitializers(raw_ostream &OS) const = 0;
201 virtual void writeCtorDefaultInitializers(raw_ostream &OS) const = 0;
202 virtual void writeCtorParameters(raw_ostream &OS) const = 0;
[all …]
/external/llvm/utils/TableGen/
DDAGISelMatcherEmitter.cpp60 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/google-breakpad/autotools/
Dconfig.sub114 # 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/
Dconfig.sub114 # 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/e2fsprogs/config/
Dconfig.sub114 # 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/
Dconfig.sub114 # 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/
Dconfig.sub114 # 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/
Dconfig.sub114 # 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/
Dconfig.sub114 # 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/dist/
Dconfig.sub114 # 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/
Dconfig.sub114 # 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/
Dconfig.sub119 # 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/
Dconfig.sub119 # 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/
Dconfig.sub114 # 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/jemalloc/build-aux/
Dconfig.sub114 # 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/bison/build-aux/
Dconfig.sub121 # 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/libevent/
Dconfig.sub121 # 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/cmockery/cmockery_0_1_2/
Dconfig.sub118 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
119 # Here we must recognize all the valid KERNEL-OS combinations.
124 os=-$maybe_os
130 then os=`echo $1 | sed 's/.*-/-/'`
131 else os=; fi
139 case $os in
140 -sun*os*)
150 os=
154 os=
160 os=-vxworks
[all …]
/external/netperf/
Dconfig.sub118 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
119 # Here we must recognize all the valid KERNEL-OS combinations.
124 os=-$maybe_os
130 then os=`echo $1 | sed 's/.*-/-/'`
131 else os=; fi
139 case $os in
140 -sun*os*)
150 os=
154 os=
160 os=-vxworks
[all …]
/external/libopus/
Dconfig.sub121 # 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 …]

12345678910>>...331