HomeSort by relevance Sort by last modified time
    Searched refs:piece (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/valgrind/main/memcheck/tests/
memalign2.c 29 int* piece;
43 // We allocate (and then free) a piece of memory smaller than
50 piece = malloc(1024 * 1000); assert (piece);
51 free (piece);
56 piece = malloc(1024 * 100); assert (piece);
58 free (piece);
  /external/chromium_org/net/base/
big_endian_unittest.cc 17 base::StringPiece piece; local
33 EXPECT_TRUE(reader.ReadPiece(&piece, 2));
34 EXPECT_EQ(2u, piece.size());
35 EXPECT_EQ(expected.data(), piece.data());
44 base::StringPiece piece; local
51 EXPECT_FALSE(reader.ReadPiece(&piece, 4));
  /external/chromium_org/net/spdy/
spdy_credential_builder.cc 21 std::vector<uint8> ToVector(base::StringPiece piece) {
22 return std::vector<uint8>(piece.data(), piece.data() + piece.length());
  /external/chromium_org/tools/gn/
string_utils.h 44 // Appends the given string piece to the given string. This avoids an
47 const base::StringPiece& piece) {
48 dest->append(piece.data(), piece.size());
  /external/chromium_org/third_party/re2/util/
stringpiece.cc 10 std::ostream& operator<<(std::ostream& o, const StringPiece& piece) {
11 o.write(piece.data(), piece.size());
  /external/regex-re2/util/
stringpiece.cc 10 std::ostream& operator<<(std::ostream& o, const StringPiece& piece) {
11 o.write(piece.data(), piece.size());
  /art/runtime/base/
stringpiece.cc 90 std::ostream& operator<<(std::ostream& o, const StringPiece& piece) {
91 o.write(piece.data(), piece.size());
stringpiece.h 17 // A string-like object that points to a sized piece of memory.
209 extern std::ostream& operator<<(std::ostream& o, const StringPiece& piece);
  /external/chromium_org/chrome/browser/ui/autofill/
generated_credit_card_bubble_controller.cc 190 base::string16 piece = pieces.front(); local
192 // Every second piece should be bolded. Because |base::SplitString*()|
196 if (!piece.empty() && pieces.size() % 2 == 0) {
199 bold_text.range = ui::Range(start, start + piece.size());
204 // Append the piece whether it's bolded or not and move on to the next one.
205 contents_text_.append(piece);
  /external/chromium_org/net/quic/crypto/
p256_key_exchange_nss.cc 25 static vector<uint8> StringPieceToVector(StringPiece piece) {
26 return vector<uint8>(piece.data(), piece.data() + piece.length());
  /external/chromium_org/ui/base/resource/
data_pack.cc 199 base::StringPiece piece; local
200 if (!GetStringPiece(resource_id, &piece))
204 reinterpret_cast<const unsigned char*>(piece.data()), piece.length());
  /external/chromium_org/third_party/jinja2/
loaders.py 29 for piece in template.split('/'):
30 if path.sep in piece \
31 or (path.altsep and path.altsep in piece) or \
32 piece == path.pardir:
34 elif piece and piece != '.':
35 pieces.append(piece)
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
string_piece.cc 16 std::ostream& operator<<(std::ostream& o, const StringPiece& piece) {
17 o.write(piece.data(), static_cast<std::streamsize>(piece.size()));
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascriptlintrules.py 118 for piece in identifier.split('.'):
119 if piece.endswith('_'):
120 self._used_private_members.add(piece)
124 for piece in token.string.split('.'):
125 if piece.endswith('_'):
126 self._used_private_members.add(piece)
closurizednamespacesinfo.py 259 for piece in pieces:
260 if piece.endswith('_'):
  /external/chromium_org/third_party/closure_linter/closure_linter/
javascriptlintrules.py 118 for piece in identifier.split('.'):
119 if piece.endswith('_'):
120 self._used_private_members.add(piece)
124 for piece in token.string.split('.'):
125 if piece.endswith('_'):
126 self._used_private_members.add(piece)
closurizednamespacesinfo.py 259 for piece in pieces:
260 if piece.endswith('_'):
  /external/chromium_org/base/strings/
string_piece.cc 30 std::ostream& operator<<(std::ostream& o, const StringPiece& piece) {
31 o.write(piece.data(), static_cast<std::streamsize>(piece.size()));
  /external/chromium_org/third_party/leveldatabase/src/doc/bench/
db_bench_tree_db.cc 98 std::string piece; local
102 test::CompressibleString(&rnd, FLAGS_compression_ratio, 100, &piece);
103 data_.append(piece);
  /libcore/luni/src/main/java/javax/crypto/
Cipher.java 343 String piece = pieces[i].trim(); local
344 if (!piece.isEmpty()) {
345 result[i] = piece;
    [all...]
  /ndk/sources/host-tools/make-3.81/
vmsify.c 909 static char piece[512]; local
915 p = piece;
989 return piece;
  /external/chromium_org/third_party/re2/re2/
stringpiece.h 5 // A string-like object that points to a sized piece of memory.
183 extern std::ostream& operator<<(std::ostream& o, const re2::StringPiece& piece);
  /external/regex-re2/re2/
stringpiece.h 5 // A string-like object that points to a sized piece of memory.
180 extern std::ostream& operator<<(std::ostream& o, const re2::StringPiece& piece);
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 111 IntrusiveRefCntPtr<PathDiagnosticPiece> piece(path.front());
114 switch (piece->getKind()) {
116 removeRedundantMsgs(cast<PathDiagnosticCallPiece>(piece)->path);
119 removeRedundantMsgs(cast<PathDiagnosticMacroPiece>(piece)->subPieces);
130 cast<PathDiagnosticEventPiece>(piece);
132 // come up with a preference, record which piece to keep, and consume
133 // another piece from the path.
136 piece = pieceToKeep;
144 path.push_back(piece);
162 // Remove the front piece from the path. If it is still something w
2957 PathDiagnosticPiece *piece = I->getPtr(); local
3410 PathDiagnosticPiece *piece = local
    [all...]
PathDiagnostic.cpp 69 PathDiagnosticPiece *Piece = I->getPtr();
71 switch (Piece->getKind()) {
73 PathDiagnosticCallPiece *Call = cast<PathDiagnosticCallPiece>(Piece);
86 PathDiagnosticMacroPiece *Macro = cast<PathDiagnosticMacroPiece>(Piece);
90 Current.push_back(Piece);
93 // FIXME: This probably shouldn't mutate the original path piece.
100 Current.push_back(Piece);
133 "The call piece should be in the main file.");
143 // Check if the last piece in the callee path is a call to a function outside
150 // Otherwise, the last piece is in the main file
224 const PathDiagnosticPiece *piece = I->getPtr(); local
1025 const PathDiagnosticPiece *piece = it->getPtr(); local
    [all...]

Completed in 2234 milliseconds

1 2 3