| /third_party/boost/libs/spirit/doc/qi/ |
| D | binary.qbk | 9 [section:binary Binary Parsers] 11 This module includes different parsers for parsing binary data in 13 little, and big endian binary input. 17 // forwards to <boost/spirit/home/qi/binary.hpp> 23 [section:binary_native Binary Native Endianness Parsers] 27 Binary native endian parsers are designed to parse binary byte streams 33 // forwards to <boost/spirit/home/qi/binary.hpp> 59 [[`b`] [A single byte (8 bit binary value) or a __qi_lazy_argument__ 62 [[`w`] [A 16 bit binary value or a __qi_lazy_argument__ that 63 evaluates to a 16 bit binary value. This value is always [all …]
|
| /third_party/flutter/skia/third_party/externals/spirv-tools/test/ |
| D | c_interface_test.cpp | 33 spv_binary binary = nullptr; in TEST() local 35 sizeof(input_text), &binary, nullptr)); in TEST() 38 // Sadly the compiler don't allow me to feed binary directly to in TEST() 40 spv_const_binary_t b{binary->code, binary->wordCount}; in TEST() 45 EXPECT_EQ(SPV_SUCCESS, spvBinaryToText(context, binary->code, in TEST() 46 binary->wordCount, 0, &text, nullptr)); in TEST() 49 spvBinaryDestroy(binary); in TEST() 58 spv_binary binary = nullptr; in TEST() local 60 spvTextToBinary(context, input_text, sizeof(input_text), &binary, in TEST() 62 spvBinaryDestroy(binary); in TEST() [all …]
|
| D | cpp_interface_test.cpp | 31 std::vector<uint32_t> binary; in TEST() local 32 EXPECT_TRUE(t.Assemble(input_text, &binary)); in TEST() 33 EXPECT_TRUE(binary.size() > 5u); in TEST() 34 EXPECT_EQ(SpvMagicNumber, binary[0]); in TEST() 35 EXPECT_EQ(SpvVersion, binary[1]); in TEST() 47 EXPECT_FALSE(t.Validate(binary)); in TEST() 50 EXPECT_TRUE(t.Disassemble(binary, &output_text)); in TEST() 55 std::vector<uint32_t> binary(10, 42); in TEST() local 57 EXPECT_TRUE(t.Assemble("", &binary)); in TEST() 59 EXPECT_EQ(5u, binary.size()); in TEST() [all …]
|
| /third_party/boost/boost/proto/ |
| D | tags.hpp | 50 /// Tag type for the binary \<\< operator. 53 /// Tag type for the binary \>\> operator. 56 /// Tag type for the binary * operator. 59 /// Tag type for the binary / operator. 62 /// Tag type for the binary % operator. 65 /// Tag type for the binary + operator. 68 /// Tag type for the binary - operator. 71 /// Tag type for the binary \< operator. 74 /// Tag type for the binary \> operator. 77 /// Tag type for the binary \<= operator. [all …]
|
| /third_party/boost/libs/spirit/doc/karma/ |
| D | binary.qbk | 9 [section:binary Binary Generators] 11 This module includes different generators allowing to output binary data. 12 It includes generators for default, little, and big endian binary output and 18 // forwards to <boost/spirit/home/karma/binary.hpp> 24 [section:binary_native Binary Native Endianness Generators] 28 The binary native endianness generators described in this section are used to 29 emit binary byte streams laid out conforming to the native endianness (byte 34 // forwards to <boost/spirit/home/karma/binary.hpp> 61 [[`b`] [A single byte (8 bit binary value) or a __karma_lazy_argument__ 63 [[`w`] [A 16 bit binary value or a __karma_lazy_argument__ that [all …]
|
| /third_party/boost/libs/proto/doc/reference/ |
| D | tags.xml | 48 <purpose>Tag type for the binary << operator. </purpose> 51 <purpose>Tag type for the binary >> operator. </purpose> 54 <purpose>Tag type for the binary * operator. </purpose> 57 <purpose>Tag type for the binary / operator. </purpose> 60 <purpose>Tag type for the binary % operator. </purpose> 63 <purpose>Tag type for the binary + operator. </purpose> 66 <purpose>Tag type for the binary - operator. </purpose> 69 <purpose>Tag type for the binary < operator. </purpose> 72 <purpose>Tag type for the binary > operator. </purpose> 75 <purpose>Tag type for the binary <= operator. </purpose> [all …]
|
| /third_party/flutter/skia/third_party/externals/spirv-tools/test/opt/ |
| D | optimizer_test.cpp | 62 std::vector<uint32_t> binary; in TEST() local 63 tools.Assemble("OpName %foo \"foo\"\n%foo = OpTypeVoid", &binary); in TEST() 67 opt.Run(binary.data(), binary.size(), &binary); // This is the key. in TEST() 70 tools.Disassemble(binary.data(), binary.size(), &disassembly); in TEST() 76 std::vector<uint32_t> binary; in TEST() local 77 tools.Assemble("OpName %foo \"foo\"\n%foo = OpTypeVoid", &binary); in TEST() 81 auto orig_size = binary.size(); in TEST() 84 binary.push_back(42); in TEST() 85 EXPECT_THAT(orig_size + 1, Eq(binary.size())); in TEST() 86 opt.Run(binary.data(), orig_size, &binary); // This is the key. in TEST() [all …]
|
| /third_party/python/ |
| D | .gitattributes | 1 # Binary data types 2 *.aif binary 3 *.aifc binary 4 *.aiff binary 5 *.au binary 6 *.bmp binary 8 *.icns binary 9 *.gif binary 10 *.ico binary 11 *.jpg binary [all …]
|
| /third_party/boost/libs/context/build/ |
| D | Jamfile.v2 | 66 feature.feature binary-format 73 feature.set-default binary-format : [ default_binary_format ] ; 122 <binary-format>elf 133 <binary-format>elf 144 <binary-format>elf 156 <binary-format>mach-o 167 <binary-format>mach-o 180 <binary-format>pe 193 <binary-format>elf 204 <binary-format>elf [all …]
|
| /third_party/protobuf/js/experimental/runtime/kernel/ |
| D | reader.js | 2 * @fileoverview Helper methods for reading data from the binary wire format. 4 goog.module('protobuf.binary.reader'); 6 const BufferDecoder = goog.require('protobuf.binary.BufferDecoder'); 17 * Reads a boolean value from the binary bytes. 18 * @param {!BufferDecoder} bufferDecoder Binary format encoded bytes. 29 * Reads a ByteString value from the binary bytes. 30 * @param {!BufferDecoder} bufferDecoder Binary format encoded bytes. 40 * Reads a int32 value from the binary bytes encoded as varint. 41 * @param {!BufferDecoder} bufferDecoder Binary format encoded bytes. 54 * Reads a int32 value from the binary bytes encoded as varint. [all …]
|
| /third_party/flutter/engine/flutter/tools/licenses/lib/ |
| D | filesystem.dart | 16 binary, // won't have its own license block 74 return FileType.binary; 94 case 'NOTICE.txt': return isMultiLicenseNotice(reader) ? FileType.binary : FileType.text; 110 case 'CERT.RSA': return FileType.binary; 111 case 'ECLIPSE_.RSA': return FileType.binary; 112 // Binary data files 113 case 'tzdata': return FileType.binary; 114 case 'compressed_atrace_data.txt': return FileType.binary; 133 return FileType.binary; 160 …case '.class': return FileType.binary; // compiled Java bytecode (usually found inside .jar archiv… [all …]
|
| /third_party/gn/src/gn/ |
| D | parser_unittest.cc | 100 // not a binary operator between two positive integers. in TEST() 102 "BINARY(-)\n" in TEST() 106 "BINARY(+)\n" in TEST() 110 "BINARY(-)\n" in TEST() 111 " BINARY(-)\n" in TEST() 133 "BINARY(+)\n" in TEST() 137 " BINARY(+)\n" in TEST() 138 " BINARY(+)\n" in TEST() 140 " BINARY(-)\n" in TEST() 151 "BINARY(-)\n" in TEST() [all …]
|
| /third_party/python/Mac/Tools/ |
| D | plistlib_generate_testdata.py | 74 …binary gunk>\x00\x01\x02\x03<lots of binary gunk>\x00\x01\x02\x03<lots of binary gunk>\x00\x01\x02… 77 pl[nsstr('someData')] = b'<binary gunk>' 79 …binary gunk>\x00\x01\x02\x03<lots of binary gunk>\x00\x01\x02\x03<lots of binary gunk>\x00\x01\x02…
|
| /third_party/flutter/engine/flutter/shell/platform/darwin/common/framework/Headers/ |
| D | FlutterChannels.h | 38 * Creates a `FlutterBasicMessageChannel` with the specified name and binary 44 * The binary messenger is a facility for sending raw, binary messages to the 50 * @param messenger The binary messenger. 56 * Creates a `FlutterBasicMessageChannel` with the specified name, binary 62 * The binary messenger is a facility for sending raw, binary messages to the 66 * @param messenger The binary messenger. 74 * Initializes a `FlutterBasicMessageChannel` with the specified name, binary 80 * The binary messenger is a facility for sending raw, binary messages to the 84 * @param messenger The binary messenger. 155 * Creates a `FlutterMethodChannel` with the specified name and binary messenger. [all …]
|
| /third_party/node/tools/inspector_protocol/lib/ |
| D | base_string_adapter_cc.template | 133 const std::string& message, bool binary) { 134 if (binary) { 195 Binary::Binary() : bytes_(new base::RefCountedBytes) {} 196 Binary::Binary(const Binary& binary) : bytes_(binary.bytes_) {} 197 Binary::Binary(scoped_refptr<base::RefCountedMemory> bytes) : bytes_(bytes) {} 198 Binary::~Binary() {} 200 String Binary::toBase64() const { 210 Binary Binary::fromBase64(const String& base64, bool* success) { 214 return Binary::fromString(std::move(decoded)); 216 return Binary(); [all …]
|
| /third_party/boost/libs/spirit/doc/html/spirit/karma/quick_reference/primitive_generators/ |
| D | binary.html | 4 <title>Binary Generators</title> 27 …quick_reference.primitive_generators.binary"></a><a class="link" href="binary.html" title="Binary … 31 …formation about <a class="link" href="../../reference/binary.html" title="Binary Generators">Binary 61 …<a class="link" href="../../reference/binary/binary_native.html" title="Binary Native Endianness G… 71 Generate an 8 bit binary 78 …<a class="link" href="../../reference/binary/binary_native.html" title="Binary Native Endianness G… 88 Generate a 16 bit binary in native endian representation 95 …<a class="link" href="../../reference/binary/binary_big.html" title="Binary Big Endianness Generat… 105 Generate a 16 bit binary in big endian representation 112 …<a class="link" href="../../reference/binary/binary_little.html" title="Binary Little Endianness G… [all …]
|
| /third_party/boost/libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/ |
| D | binary.html | 4 <title>Binary Parsers</title> 27 …"spirit.qi.quick_reference.qi_parsers.binary"></a><a class="link" href="binary.html" title="Binary… 57 …<a class="link" href="../../reference/binary/binary_native.html" title="Binary Native Endianness P… 67 Matches an 8 bit binary in native endian representation 74 …<a class="link" href="../../reference/binary/binary_native.html" title="Binary Native Endianness P… 84 Matches a 16 bit binary in native endian representation 91 …<a class="link" href="../../reference/binary/binary_big.html" title="Binary Big Endianness Parsers… 101 Matches a 16 bit binary in big endian representation 108 …<a class="link" href="../../reference/binary/binary_little.html" title="Binary Little Endianness P… 118 Matches a 16 bit binary in little endian representation [all …]
|
| /third_party/flutter/skia/third_party/externals/angle2/extensions/ |
| D | EGL_ANGLE_program_cache_control.txt | 38 that have access to an internal binary program cache. It also allows for 39 querying and populating the contents of the binary cache. 59 void *binary, 66 const void *binary, 99 for details on the program binary cache. 101 Add a section 3.13 to the end of section 3 "EGL Program Binary Cache": 103 Each display has an associated program binary cache. This cache stores 110 Program binary cache properties may be queried using 126 void *key, EGLint *keysize, void *binary, EGLint *binarysize); 132 and 'keysize' are non-null, and 'binary' and 'key' are null, the size of the [all …]
|
| /third_party/boost/libs/beast/doc/html/beast/ref/boost__beast__websocket__stream/binary/ |
| D | overload1.html | 4 <title>websocket::stream::binary (1 of 2 overloads)</title> 8 <link rel="up" href="../binary.html" title="websocket::stream::binary"> 9 <link rel="prev" href="../binary.html" title="websocket::stream::binary"> 10 <link rel="next" href="overload2.html" title="websocket::stream::binary (2 of 2 overloads)"> 23 …key="p" href="../binary.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev… 27 …stream.binary.overload1"></a><a class="link" href="overload1.html" title="websocket::stream::binar… 31 Set the binary message write option. 33 <h7><a name="beast.ref.boost__beast__websocket__stream.binary.overload1.h0"></a> 34 …socket__stream.binary.overload1.synopsis"></a></span><a class="link" href="overload1.html#beast.re… 36 <span class="identifier">binary</span><span class="special">(</span> [all …]
|
| /third_party/flutter/skia/third_party/externals/spirv-tools/source/ |
| D | libspirv.cpp | 42 std::vector<uint32_t>* binary, in Assemble() argument 44 return Assemble(text.data(), text.size(), binary, options); in Assemble() 48 std::vector<uint32_t>* binary, in Assemble() argument 54 binary->assign(spvbinary->code, spvbinary->code + spvbinary->wordCount); in Assemble() 60 bool SpirvTools::Disassemble(const std::vector<uint32_t>& binary, in Disassemble() argument 62 return Disassemble(binary.data(), binary.size(), text, options); in Disassemble() 65 bool SpirvTools::Disassemble(const uint32_t* binary, const size_t binary_size, in Disassemble() argument 68 spv_result_t status = spvBinaryToText(impl_->context, binary, binary_size, in Disassemble() 77 bool SpirvTools::Validate(const std::vector<uint32_t>& binary) const { in Validate() 78 return Validate(binary.data(), binary.size()); in Validate() [all …]
|
| /third_party/boost/tools/build/src/tools/ |
| D | auto-index.jam | 27 # <auto-index-binary> shell command to run AutoIndex 28 # <auto-index-binary-dependencies> targets to build AutoIndex from sources. 29 feature.feature <auto-index-binary> : : free ; 30 feature.feature <auto-index-binary-dependencies> : : free dependency ; 38 local auto-index-binary = [ modules.peek auto-index : .command ] ; 39 local auto-index-binary-dependencies ; 41 if $(auto-index-binary) 44 …auto-index-binary = [ common.get-invocation-command auto-index : auto-index : $(auto-index-binary)… 101 auto-index-binary-dependencies = 105 auto-index-binary-dependencies = $(auto-index-binary-dependencies[2-]) ; [all …]
|
| D | quickbook.jam | 123 # <quickbook-binary> shell command to run QuickBook 124 # <quickbook-binary-dependencies> targets to build QuickBook from sources. 125 feature.feature <quickbook-binary> : : free ; 126 feature.feature <quickbook-binary-dependencies> : : free dependency ; 133 # quickbook-binary-generator handles generation of the QuickBook executable, by 143 class quickbook-binary-generator : generator 151 local quickbook-binary = [ modules.peek quickbook : .quickbook-binary ] ; 152 local quickbook-binary-dependencies ; 154 if ! $(quickbook-binary) 171 quickbook-binary-dependencies = [all …]
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/ |
| D | UProperty.java | 44 * <p>Binary property Alphabetic. 52 * First constant for binary Unicode properties. 57 * Binary property ASCII_Hex_Digit (0-9 A-F a-f). 62 * <p>Binary property Bidi_Control. 68 * <p>Binary property Bidi_Mirrored. 76 * <p>Binary property Dash. 82 * <p>Binary property Default_Ignorable_Code_Point (new). 92 * <p>Binary property Deprecated (new). 98 * <p>Binary property Diacritic. 105 * <p>Binary property Extender. [all …]
|
| /third_party/cJSON/tests/unity/ |
| D | .gitattributes | 21 #These files are binary and should not be normalized 22 *.doc binary 23 *.odt binary 24 *.pdf binary 25 *.ewd binary 26 *.eww binary 27 *.dni binary 28 *.wsdt binary 29 *.dbgdt binary 30 *.mac binary
|
| /third_party/unity/ |
| D | .gitattributes | 22 #These files are binary and should not be normalized 23 *.doc binary 24 *.odt binary 25 *.pdf binary 26 *.ewd binary 27 *.eww binary 28 *.dni binary 29 *.wsdt binary 30 *.dbgdt binary 31 *.mac binary
|