Home
last modified time | relevance | path

Searched full:io (Results 1 – 25 of 6642) sorted by relevance

12345678910>>...266

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DMachOYAML.cpp84 IO &IO, MachOYAML::FileHeader &FileHdr) { in mapping() argument
85 IO.mapRequired("magic", FileHdr.magic); in mapping()
86 IO.mapRequired("cputype", FileHdr.cputype); in mapping()
87 IO.mapRequired("cpusubtype", FileHdr.cpusubtype); in mapping()
88 IO.mapRequired("filetype", FileHdr.filetype); in mapping()
89 IO.mapRequired("ncmds", FileHdr.ncmds); in mapping()
90 IO.mapRequired("sizeofcmds", FileHdr.sizeofcmds); in mapping()
91 IO.mapRequired("flags", FileHdr.flags); in mapping()
94 IO.mapRequired("reserved", FileHdr.reserved); in mapping()
97 void MappingTraits<MachOYAML::Object>::mapping(IO &IO, in mapping() argument
[all …]
DCodeViewYAMLSymbols.cpp76 void ScalarEnumerationTraits<SymbolKind>::enumeration(IO &io, in enumeration() argument
80 io.enumCase(Value, E.Name.str().c_str(), E.Value); in enumeration()
83 void ScalarBitSetTraits<CompileSym2Flags>::bitset(IO &io, in bitset() argument
87 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset()
92 void ScalarBitSetTraits<CompileSym3Flags>::bitset(IO &io, in bitset() argument
96 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset()
101 void ScalarBitSetTraits<ExportFlags>::bitset(IO &io, ExportFlags &Flags) { in bitset() argument
104 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset()
109 void ScalarBitSetTraits<PublicSymFlags>::bitset(IO &io, PublicSymFlags &Flags) { in bitset() argument
112 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset()
[all …]
DWasmYAML.cpp32 IO &IO, WasmYAML::FileHeader &FileHdr) { in mapping() argument
33 IO.mapRequired("Version", FileHdr.Version); in mapping()
36 void MappingTraits<WasmYAML::Object>::mapping(IO &IO, in mapping() argument
38 IO.setContext(&Object); in mapping()
39 IO.mapTag("!WASM", true); in mapping()
40 IO.mapRequired("FileHeader", Object.Header); in mapping()
41 IO.mapOptional("Sections", Object.Sections); in mapping()
42 IO.setContext(nullptr); in mapping()
45 static void commonSectionMapping(IO &IO, WasmYAML::Section &Section) { in commonSectionMapping() argument
46 IO.mapRequired("Type", Section.Type); in commonSectionMapping()
[all …]
DCodeViewYAMLTypes.cpp84 virtual void map(yaml::IO &io) = 0;
93 void map(yaml::IO &io) override;
110 void map(yaml::IO &io) override;
123 virtual void map(yaml::IO &io) = 0;
131 void map(yaml::IO &io) override;
193 void ScalarEnumerationTraits<TypeLeafKind>::enumeration(IO &io, in enumeration() argument
195 #define CV_TYPE(name, val) io.enumCase(Value, #name, name); in enumeration()
201 IO &IO, PointerToMemberRepresentation &Value) { in enumeration() argument
202 IO.enumCase(Value, "Unknown", PointerToMemberRepresentation::Unknown); in enumeration()
203 IO.enumCase(Value, "SingleInheritanceData", in enumeration()
[all …]
DDWARFYAML.cpp24 void MappingTraits<DWARFYAML::Data>::mapping(IO &IO, DWARFYAML::Data &DWARF) { in mapping() argument
25 auto oldContext = IO.getContext(); in mapping()
26 IO.setContext(&DWARF); in mapping()
27 IO.mapOptional("debug_str", DWARF.DebugStrings); in mapping()
28 IO.mapOptional("debug_abbrev", DWARF.AbbrevDecls); in mapping()
29 if (!DWARF.ARanges.empty() || !IO.outputting()) in mapping()
30 IO.mapOptional("debug_aranges", DWARF.ARanges); in mapping()
31 if (!DWARF.PubNames.Entries.empty() || !IO.outputting()) in mapping()
32 IO.mapOptional("debug_pubnames", DWARF.PubNames); in mapping()
33 if (!DWARF.PubTypes.Entries.empty() || !IO.outputting()) in mapping()
[all …]
DCOFFYAML.cpp19 #define ECase(X) IO.enumCase(Value, #X, COFF::X);
34 IO &IO, COFFYAML::COMDATType &Value) { in enumeration() argument
35 IO.enumCase(Value, "0", 0); in enumeration()
47 IO &IO, COFFYAML::WeakExternalCharacteristics &Value) { in enumeration() argument
48 IO.enumCase(Value, "0", 0); in enumeration()
55 IO &IO, COFFYAML::AuxSymbolType &Value) { in enumeration() argument
60 IO &IO, COFF::MachineTypes &Value) { in enumeration() argument
86 IO &IO, COFF::SymbolBaseType &Value) { in enumeration() argument
106 IO &IO, COFF::SymbolStorageClass &Value) { in enumeration() argument
137 IO &IO, COFF::SymbolComplexType &Value) { in enumeration() argument
[all …]
DELFYAML.cpp32 IO &IO, ELFYAML::ELF_ET &Value) { in enumeration() argument
33 #define ECase(X) IO.enumCase(Value, #X, ELF::X) in enumeration()
40 IO.enumFallback<Hex16>(Value); in enumeration()
44 IO &IO, ELFYAML::ELF_PT &Value) { in enumeration() argument
45 #define ECase(X) IO.enumCase(Value, #X, ELF::X) in enumeration()
59 IO.enumFallback<Hex32>(Value); in enumeration()
63 IO &IO, ELFYAML::ELF_EM &Value) { in enumeration() argument
64 #define ECase(X) IO.enumCase(Value, #X, ELF::X) in enumeration()
225 IO.enumFallback<Hex16>(Value); in enumeration()
229 IO &IO, ELFYAML::ELF_ELFCLASS &Value) { in enumeration() argument
[all …]
DMinidumpYAML.cpp20 static inline void mapOptional(yaml::IO &IO, const char *Key, EndianType &Val, in mapOptional() argument
22 IO.mapOptional(Key, Val, EndianType(Default)); in mapOptional()
27 static inline void mapRequiredAs(yaml::IO &IO, const char *Key, in mapRequiredAs() argument
30 IO.mapRequired(Key, Mapped); in mapRequiredAs()
37 static inline void mapOptionalAs(yaml::IO &IO, const char *Key, EndianType &Val, in mapOptionalAs() argument
40 IO.mapOptional(Key, Mapped, Default); in mapOptionalAs()
54 static inline void mapRequiredHex(yaml::IO &IO, const char *Key, in mapRequiredHex() argument
56 mapRequiredAs<typename HexType<EndianType>::type>(IO, Key, Val); in mapRequiredHex()
62 static inline void mapOptionalHex(yaml::IO &IO, const char *Key, in mapOptionalHex() argument
65 mapOptionalAs<typename HexType<EndianType>::type>(IO, Key, Val, Default); in mapOptionalHex()
[all …]
/third_party/pulseaudio/src/pulsecore/
Diochannel.c62 static void delete_events(pa_iochannel *io) { in delete_events() argument
63 pa_assert(io); in delete_events()
65 if (io->input_event) in delete_events()
66 io->mainloop->io_free(io->input_event); in delete_events()
68 if (io->output_event && io->output_event != io->input_event) in delete_events()
69 io->mainloop->io_free(io->output_event); in delete_events()
71 io->input_event = io->output_event = NULL; in delete_events()
74 static void enable_events(pa_iochannel *io) { in enable_events() argument
75 pa_assert(io); in enable_events()
77 if (io->hungup) { in enable_events()
[all …]
/third_party/libsoup/libsoup/
Dsoup-message-io.c3 * soup-message-io.c: HTTP message I/O
102 SoupMessageIOData *io; in soup_message_io_cleanup() local
106 io = soup_message_get_io_data (msg); in soup_message_io_cleanup()
107 if (!io) in soup_message_io_cleanup()
111 if (io->iostream) in soup_message_io_cleanup()
112 g_object_unref (io->iostream); in soup_message_io_cleanup()
113 if (io->body_istream) in soup_message_io_cleanup()
114 g_object_unref (io->body_istream); in soup_message_io_cleanup()
115 if (io->body_ostream) in soup_message_io_cleanup()
116 g_object_unref (io->body_ostream); in soup_message_io_cleanup()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DSymbolRecordMapping.cpp20 Error operator()(CodeViewRecordIO &IO, LocalVariableAddrGap &Gap) const { in operator ()()
21 error(IO.mapInteger(Gap.GapStartOffset)); in operator ()()
22 error(IO.mapInteger(Gap.Range)); in operator ()()
28 static Error mapLocalVariableAddrRange(CodeViewRecordIO &IO, in mapLocalVariableAddrRange() argument
30 error(IO.mapInteger(Range.OffsetStart)); in mapLocalVariableAddrRange()
31 error(IO.mapInteger(Range.ISectStart)); in mapLocalVariableAddrRange()
32 error(IO.mapInteger(Range.Range)); in mapLocalVariableAddrRange()
37 error(IO.beginRecord(MaxRecordLength - sizeof(RecordPrefix))); in visitSymbolBegin()
42 error(IO.padToAlignment(alignOf(Container))); in visitSymbolEnd()
43 error(IO.endRecord()); in visitSymbolEnd()
[all …]
DTypeRecordMapping.cpp45 static std::string getFlagNames(CodeViewRecordIO &IO, T Value, in getFlagNames() argument
47 if (!IO.isStreaming()) in getFlagNames()
82 static StringRef getEnumName(CodeViewRecordIO &IO, T Value, in getEnumName() argument
84 if (!IO.isStreaming()) in getEnumName()
97 static std::string getMemberAttributes(CodeViewRecordIO &IO, in getMemberAttributes() argument
100 if (!IO.isStreaming()) in getMemberAttributes()
103 getEnumName(IO, uint8_t(Access), makeArrayRef(getMemberAccessNames())); in getMemberAttributes()
107 getEnumName(IO, unsigned(Kind), makeArrayRef(getMemberKindNames())); in getMemberAttributes()
112 IO, unsigned(Options), makeArrayRef(getMethodOptionNames())); in getMemberAttributes()
122 Error operator()(CodeViewRecordIO &IO, OneMethodRecord &Method) const { in operator ()()
[all …]
/third_party/flutter/engine/flutter/lib/snapshot/
Dfuchsia_compilation_trace.txt1213 dart:io,_Filter,_newZLibInflateFilter
1214 dart:io,_HttpOutboundMessage,get:_outgoing
1215 dart:io,_HttpOutboundMessage,get:headers
1216 dart:io,_HttpOutboundMessage,_HttpOutboundMessage.
1217 dart:io,_HttpOutboundMessage,set:contentLength
1218 dart:io,_HttpOutboundMessage,get:persistentConnection
1219 dart:io,_HttpOutboundMessage,set:persistentConnection
1220 dart:io,_HttpOutboundMessage,get:_isConnectionClosed
1221 dart:io,SocketDirection,get:RECEIVE
1222 dart:io,SocketDirection,SocketDirection._
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DModuleSummaryIndexYAML.h19 static void enumeration(IO &io, TypeTestResolution::Kind &value) {
20 io.enumCase(value, "Unsat", TypeTestResolution::Unsat);
21 io.enumCase(value, "ByteArray", TypeTestResolution::ByteArray);
22 io.enumCase(value, "Inline", TypeTestResolution::Inline);
23 io.enumCase(value, "Single", TypeTestResolution::Single);
24 io.enumCase(value, "AllOnes", TypeTestResolution::AllOnes);
29 static void mapping(IO &io, TypeTestResolution &res) {
30 io.mapOptional("Kind", res.TheKind);
31 io.mapOptional("SizeM1BitWidth", res.SizeM1BitWidth);
32 io.mapOptional("AlignLog2", res.AlignLog2);
[all …]
/third_party/mesa3d/src/freedreno/decode/
Dio.c37 #include "io.h"
39 struct io { struct
46 io_error(struct io *io) in io_error() argument
48 fprintf(stderr, "%s\n", archive_error_string(io->a)); in io_error()
49 io_close(io); in io_error()
52 static struct io *
55 struct io *io = calloc(1, sizeof(*io)); in io_new() local
58 if (!io) in io_new()
61 io->a = archive_read_new(); in io_new()
62 ret = archive_read_support_filter_gzip(io->a); in io_new()
[all …]
/third_party/flutter/engine/flutter/shell/platform/android/
DBUILD.gn97 build_config_java = "$target_gen_dir/io/flutter/BuildConfig.java"
125 "io/flutter/Log.java",
126 "io/flutter/app/FlutterActivity.java",
127 "io/flutter/app/FlutterActivityDelegate.java",
128 "io/flutter/app/FlutterActivityEvents.java",
129 "io/flutter/app/FlutterApplication.java",
130 "io/flutter/app/FlutterFragmentActivity.java",
131 "io/flutter/app/FlutterPluginRegistry.java",
132 "io/flutter/embedding/android/AndroidKeyProcessor.java",
133 "io/flutter/embedding/android/AndroidTouchProcessor.java",
[all …]
/third_party/flutter/skia/third_party/externals/imgui/examples/
Dimgui_impl_freeglut.cpp14 // 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window.
29 ImGuiIO& io = ImGui::GetIO(); in ImGui_ImplFreeGLUT_Init() local
30 io.BackendPlatformName ="imgui_impl_freeglut"; in ImGui_ImplFreeGLUT_Init()
35 io.KeyMap[ImGuiKey_Tab] = '\t'; // == 9 == CTRL+I in ImGui_ImplFreeGLUT_Init()
36 io.KeyMap[ImGuiKey_LeftArrow] = 256 + GLUT_KEY_LEFT; in ImGui_ImplFreeGLUT_Init()
37 io.KeyMap[ImGuiKey_RightArrow] = 256 + GLUT_KEY_RIGHT; in ImGui_ImplFreeGLUT_Init()
38 io.KeyMap[ImGuiKey_UpArrow] = 256 + GLUT_KEY_UP; in ImGui_ImplFreeGLUT_Init()
39 io.KeyMap[ImGuiKey_DownArrow] = 256 + GLUT_KEY_DOWN; in ImGui_ImplFreeGLUT_Init()
40 io.KeyMap[ImGuiKey_PageUp] = 256 + GLUT_KEY_PAGE_UP; in ImGui_ImplFreeGLUT_Init()
41 io.KeyMap[ImGuiKey_PageDown] = 256 + GLUT_KEY_PAGE_DOWN; in ImGui_ImplFreeGLUT_Init()
[all …]
Dimgui_impl_osx.mm15 // 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window.
24 ImGuiIO& io = ImGui::GetIO();
27 …//io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() v…
28 …//io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos; // We can honor io.WantSetMousePos…
29 …//io.BackendFlags |= ImGuiBackendFlags_PlatformHasViewports; // We can create multi-viewports o…
30 …//io.BackendFlags |= ImGuiBackendFlags_HasMouseHoveredViewport; // We can set io.MouseHoveredViewp…
31 io.BackendPlatformName = "imgui_impl_osx";
33 // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array.
35 io.KeyMap[ImGuiKey_Tab] = '\t';
36 io.KeyMap[ImGuiKey_LeftArrow] = NSLeftArrowFunctionKey + offset_for_function_keys;
[all …]
Dimgui_impl_win32.cpp6 // [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFla…
9 // [ ] Platform: Gamepad support (best leaving it to user application to fill io.NavInputs[] with …
21 // 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window.
25 // 2018-03-20: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors and ImGuiBackendFlags…
28 // 2018-02-06: Inputs: Honoring the io.WantSetMousePos by repositioning the mouse (when using navi…
35 // 2016-11-12: Inputs: Only call Win32 ::SetCursor(NULL) when io.MouseDrawCursor is set.
53 ImGuiIO& io = ImGui::GetIO(); in ImGui_ImplWin32_Init() local
54io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() val… in ImGui_ImplWin32_Init()
55io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos; // We can honor io.WantSetMousePos r… in ImGui_ImplWin32_Init()
56 io.BackendPlatformName = "imgui_impl_win32"; in ImGui_ImplWin32_Init()
[all …]
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_glut.cpp22 // 2019-03-25: Misc: Made io.DeltaTime always above zero.
23 // 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window.
42 ImGuiIO& io = ImGui::GetIO(); in ImGui_ImplGLUT_Init() local
45 io.BackendPlatformName = "imgui_impl_glut (freeglut)"; in ImGui_ImplGLUT_Init()
47 io.BackendPlatformName = "imgui_impl_glut"; in ImGui_ImplGLUT_Init()
53 io.KeyMap[ImGuiKey_Tab] = '\t'; // == 9 == CTRL+I in ImGui_ImplGLUT_Init()
54 io.KeyMap[ImGuiKey_LeftArrow] = 256 + GLUT_KEY_LEFT; in ImGui_ImplGLUT_Init()
55 io.KeyMap[ImGuiKey_RightArrow] = 256 + GLUT_KEY_RIGHT; in ImGui_ImplGLUT_Init()
56 io.KeyMap[ImGuiKey_UpArrow] = 256 + GLUT_KEY_UP; in ImGui_ImplGLUT_Init()
57 io.KeyMap[ImGuiKey_DownArrow] = 256 + GLUT_KEY_DOWN; in ImGui_ImplGLUT_Init()
[all …]
/third_party/boost/libs/iostreams/test/detail/
Dverification.hpp131 bool test_seekable_in_chars(std::iostream& io) in test_seekable_in_chars() argument
139 io.put(narrow_data()[j]); in test_seekable_in_chars()
140 io.seekp(-chunk_size, BOOST_IOS::cur); in test_seekable_in_chars()
142 if (io.get() != narrow_data()[j]) in test_seekable_in_chars()
144 io.seekg(-chunk_size, BOOST_IOS::cur); in test_seekable_in_chars()
146 io.put(narrow_data()[j]); in test_seekable_in_chars()
151 io.seekp(0, BOOST_IOS::beg); in test_seekable_in_chars()
155 io.put(narrow_data()[j]); in test_seekable_in_chars()
156 io.seekp(off, BOOST_IOS::beg); in test_seekable_in_chars()
158 if (io.get() != narrow_data()[j]) in test_seekable_in_chars()
[all …]
/third_party/flatbuffers/tests/MyGame/Example/
DMonsterStorageGrpc.java10 import static io.grpc.MethodDescriptor.generateFullMethodName;
11 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall;
12 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall;
13 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall;
14 import static io.grpc.stub.ClientCalls.asyncUnaryCall;
15 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall;
16 import static io.grpc.stub.ClientCalls.blockingUnaryCall;
17 import static io.grpc.stub.ClientCalls.futureUnaryCall;
18 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall;
19 import static io.grpc.stub.ServerCalls.asyncClientStreamingCall;
[all …]
/third_party/boost/libs/iostreams/test/
Dnewline_test.cpp20 namespace io = boost::iostreams;
128 struct string_source : boost::base_from_member<std::string>, io::array_source {
129 typedef io::array_source base_type;
142 using namespace io; in read_newline_filter()
183 io::array_source src(input.data(), input.data() + input.size()); in my_test_output_filter()
186 io::copy(src, compose(filter, stream)); in my_test_output_filter()
196 using namespace io; in write_newline_filter()
223 io::copy( in test_input_against_flags()
224 io::compose( in test_input_against_flags()
225 io::newline_checker(flags), in test_input_against_flags()
[all …]
/third_party/flutter/engine/flutter/tools/android_lint/
Dproject.xml7 <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterPluginRegistry.java" />
8 … <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterFragmentActivity.java" />
9 <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterActivity.java" />
10 <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterActivityEvents.java" />
11 <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterApplication.java" />
12 … <src file="../../../flutter/shell/platform/android/io/flutter/app/FlutterActivityDelegate.java" />
13 <src file="../../../flutter/shell/platform/android/io/flutter/util/Preconditions.java" />
14 <src file="../../../flutter/shell/platform/android/io/flutter/util/Predicate.java" />
15 <src file="../../../flutter/shell/platform/android/io/flutter/util/PathUtils.java" />
16 …<src file="../../../flutter/shell/platform/android/io/flutter/embedding/android/AndroidTouchProces…
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DCOFFYAML.h50 // to use yaml::IO, we use these structures which are closer to the source.
125 static void enumeration(IO &IO, COFFYAML::WeakExternalCharacteristics &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
130 static void enumeration(IO &IO, COFFYAML::AuxSymbolType &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
135 static void enumeration(IO &IO, COFFYAML::COMDATType &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
140 static void enumeration(IO &IO, COFF::MachineTypes &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
145 static void enumeration(IO &IO, COFF::SymbolBaseType &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
150 static void enumeration(IO &IO, COFF::SymbolStorageClass &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
155 static void enumeration(IO &IO, COFF::SymbolComplexType &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
160 static void enumeration(IO &IO, COFF::RelocationTypeI386 &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
165 static void enumeration(IO &IO, COFF::RelocationTypeAMD64 &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
[all …]

12345678910>>...266