/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/ |
dbapi2.py | 53 Binary = buffer
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb/ |
types.py | 70 return isinstance(n, Binary) 78 return isinstance(n, bytes) # Binary is subclass of bytes. 99 return Binary(base64.b64decode(n)) 155 val = Binary(val) 163 class Binary(object): 166 raise TypeError('Value must be a string of binary data!') 176 if isinstance(other, Binary): 185 return 'Binary(%r)' % self.value 193 class Binary(bytes): 205 return 'Binary(%r)' % self.valu [all...] |
/external/google-breakpad/src/testing/test/ |
gmock-spec-builders_test.cc | 4 // Redistribution and use in source and binary forms, with or without 10 // * Redistributions in binary form must reproduce the above 143 MOCK_METHOD2(Binary, bool(int x, int y)); // NOLINT 922 ON_CALL(a, Binary(_, _)) 924 EXPECT_TRUE(a.Binary(1, 2)); 937 ON_CALL(a, Binary(_, _)) 939 EXPECT_CALL(a, Binary(0, 0)); 940 a.Binary(0, 0); 942 EXPECT_NONFATAL_FAILURE(result = a.Binary(1, 2), 1124 ON_CALL(a, Binary(_, _) [all...] |
gmock-generated-function-mockers_test.cc | 4 // Redistribution and use in source and binary forms, with or without 10 // * Redistributions in binary form must reproduce the above 83 virtual long Binary(short x, int y) = 0; // NOLINT 126 MOCK_METHOD2(Binary, long(short, int)); // NOLINT 193 // Tests mocking a binary function. 195 EXPECT_CALL(mock_foo_, Binary(2, _)) 198 EXPECT_EQ(3, foo_->Binary(2, 1));
|
gmock-generated-internal-utils_test.cc | 4 // Redistribution and use in source and binary forms, with or without 10 // * Redistributions in binary form must reproduce the above 94 TEST(FunctionTest, Binary) {
|
/external/llvm/tools/dsymutil/ |
MachODebugMapParser.cpp | 31 /// \brief Parses and returns the DebugMaps of the input binary. 32 /// The binary contains multiple maps in case it is a universal 33 /// binary. 46 /// Owns the MemoryBuffer for the main binary. 48 /// Map of the binary symbol addresses. 312 for (const auto *Binary : *MainBinOrError) 313 if (shouldLinkArch(Archs, Binary->getArch(nullptr, &T).getArchName())) 314 dumpOneBinaryStab(*Binary, BinaryPath); 319 /// This main parsing routine tries to open the main binary and if 330 for (const auto *Binary : *MainBinOrError [all...] |
/prebuilts/go/darwin-x86/src/mime/quotedprintable/ |
writer.go | 13 // Binary mode treats the writer's input as pure binary and processes end of 14 // line bytes as binary data. 15 Binary bool 37 case isWhitespace(b) || !w.Binary && (b == '\n' || b == '\r'):
|
/prebuilts/go/linux-x86/src/mime/quotedprintable/ |
writer.go | 13 // Binary mode treats the writer's input as pure binary and processes end of 14 // line bytes as binary data. 15 Binary bool 37 case isWhitespace(b) || !w.Binary && (b == '\n' || b == '\r'):
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
ast.ml | 13 (* variant for a binary operator. *) 14 | Binary of char * expr * expr
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
ast.ml | 16 (* variant for a binary operator. *) 17 | Binary of char * expr * expr
|
lexer.ml | 52 | "binary" -> [< 'Token.Binary; stream >]
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
ast.ml | 16 (* variant for a binary operator. *) 17 | Binary of char * expr * expr
|
lexer.ml | 52 | "binary" -> [< 'Token.Binary; stream >]
|
/external/llvm/include/llvm/Object/ |
SymbolicFile.h | 17 #include "llvm/Object/Binary.h" 102 SF_Thumb = 1U << 8, // Thumb symbol in a 32-bit ARM binary 126 class SymbolicFile : public Binary { 167 static inline bool classof(const Binary *v) {
|
/external/llvm/lib/Object/ |
MachOUniversal.cpp | 1 //===- MachOUniversal.cpp - Mach-O universal binary -------------*- C++ -*-===// 47 // Universal binary headers have big-endian byte order. 108 : Binary(Binary::ID_MachOUniversalBinary, Source), NumberOfObjects(0) {
|
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
HexagonMCCodeEmitter.cpp | 97 uint64_t Binary; 161 Binary = getBinaryCodeForInstr(HMB, Fixups, STI); 164 if ((!Binary) && 174 Binary |= Parse; 238 Binary = ((dupIClass & 0xE) << (29 - 1)) | ((dupIClass & 0x1) << 13); 248 Binary |= subInstSlot0Bits | (subInstSlot1Bits << 16); 250 support::endian::Writer<support::little>(OS).write<uint32_t>(Binary); 407 if (MK == MCExpr::Binary) {
|
/external/nanopb-c/extra/ |
nanopb.mk | 18 # Check whether to use binary version of nanopb_generator or the 21 # Binary package
|
/frameworks/compile/mclinker/include/mcld/MC/ |
Input.h | 35 Binary,
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/dynamodb/ |
test_layer2.py | 34 from boto.dynamodb.types import get_dynamodb_type, Binary 435 'BinaryData': Binary(b'\x01\x02\x03\x04'), 436 'BinarySequence': set([Binary(b'\x01\x02'), Binary(b'\x03\x04')]), 448 self.assertEqual(retrieved['BinaryData'], Binary(b'\x01\x02\x03\x04')) 452 set([Binary(b'\x01\x02'), Binary(b'\x03\x04')]))
|
/external/gmock/test/ |
gmock-spec-builders_test.cc | 4 // Redistribution and use in source and binary forms, with or without 10 // * Redistributions in binary form must reproduce the above 143 MOCK_METHOD2(Binary, bool(int x, int y)); // NOLINT 923 ON_CALL(a, Binary(_, _)) 925 EXPECT_TRUE(a.Binary(1, 2)); 938 ON_CALL(a, Binary(_, _)) 940 EXPECT_CALL(a, Binary(0, 0)); 941 a.Binary(0, 0); 943 EXPECT_NONFATAL_FAILURE(result = a.Binary(1, 2), 1129 ON_CALL(a, Binary(_, _) [all...] |
gmock-generated-function-mockers_test.cc | 4 // Redistribution and use in source and binary forms, with or without 10 // * Redistributions in binary form must reproduce the above 83 virtual long Binary(short x, int y) = 0; // NOLINT 126 MOCK_METHOD2(Binary, long(short, int)); // NOLINT 205 // Tests mocking a binary function. 207 EXPECT_CALL(mock_foo_, Binary(2, _)) 210 EXPECT_EQ(3, foo_->Binary(2, 1));
|
gmock-generated-internal-utils_test.cc | 4 // Redistribution and use in source and binary forms, with or without 10 // * Redistributions in binary form must reproduce the above 94 TEST(FunctionTest, Binary) {
|
/external/llvm/tools/sancov/ |
sancov.cc | 26 #include "llvm/Object/Binary.h" 330 ErrorOr<std::unique_ptr<object::Binary>> ChildOrErr = C.getAsBinary(); 346 ErrorOr<object::OwningBinary<object::Binary>> BinaryOrErr = 350 object::Binary &Binary = *BinaryOrErr.get().getBinary(); 351 if (object::Archive *A = dyn_cast<object::Archive>(&Binary)) 353 else if (object::ObjectFile *O = dyn_cast<object::ObjectFile>(&Binary))
|
/external/llvm/tools/llc/ |
llc.cpp | 150 // Decide if we need "binary" output. 151 bool Binary = false; 157 Binary = true; 164 if (!Binary) 415 "To generate the one-run comparison binary, just run without\n"
|
/external/llvm/include/llvm/DebugInfo/Symbolize/ |
Symbolize.h | 80 /// architecture (e.g. if path refers to a Mach-O universal binary, only one 91 /// \brief Contains parsed binary for each path, or parsing error. 92 std::map<std::string, ErrorOr<OwningBinary<Binary>>> BinaryForPath; 95 /// to Mach-O universal binary.
|