HomeSort by relevance Sort by last modified time
    Searched defs:piece (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/base/
big_endian_unittest.cc 20 base::StringPiece piece; local
38 EXPECT_TRUE(reader.ReadPiece(&piece, 2));
39 EXPECT_EQ(2u, piece.size());
40 EXPECT_EQ(expected.data(), piece.data());
50 base::StringPiece piece; local
60 EXPECT_FALSE(reader.ReadPiece(&piece, 4));
  /external/chromium_org/net/spdy/
spdy_prefixed_buffer_reader_test.cc 43 SpdyPinnableBufferPiece piece; local
44 EXPECT_FALSE(reader.ReadN(10, &piece)); // Not enough buffer.
45 EXPECT_TRUE(reader.ReadN(6, &piece));
46 EXPECT_FALSE(piece.IsPinned());
47 EXPECT_EQ(StringPiece("foobar"), piece);
66 SpdyPinnableBufferPiece piece; local
67 EXPECT_FALSE(reader.ReadN(10, &piece)); // Not enough buffer.
68 EXPECT_TRUE(reader.ReadN(6, &piece));
69 EXPECT_FALSE(piece.IsPinned());
70 EXPECT_EQ(StringPiece("foobar"), piece);
89 SpdyPinnableBufferPiece piece; local
102 SpdyPinnableBufferPiece piece; local
    [all...]
spdy_pinnable_buffer_piece_test.cc 29 SpdyPinnableBufferPiece piece; local
30 EXPECT_TRUE(reader.ReadN(6, &piece));
32 // Piece points to underlying prefix storage.
33 EXPECT_EQ(StringPiece("foobar"), piece);
34 EXPECT_FALSE(piece.IsPinned());
35 EXPECT_EQ(prefix_.data(), piece.buffer());
37 piece.Pin();
39 // Piece now points to allocated storage.
40 EXPECT_EQ(StringPiece("foobar"), piece);
41 EXPECT_TRUE(piece.IsPinned())
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
generated_credit_card_bubble_controller.cc 200 base::string16 piece = pieces.front(); local
202 // Every second piece should be bolded. Because |base::SplitString*()|
206 if (!piece.empty() && pieces.size() % 2 == 0) {
209 bold_text.range = gfx::Range(start, start + piece.size());
214 // Append the piece whether it's bolded or not and move on to the next one.
215 contents_text_.append(piece);
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 314 const PathDiagnosticPiece *piece = I->get(); local
315 AddFID(FM, Fids, *SM, piece->getLocation().asLocation());
316 ArrayRef<SourceRange> Ranges = piece->getRanges();
324 dyn_cast<PathDiagnosticCallPiece>(piece)) {
333 dyn_cast<PathDiagnosticMacroPiece>(piece)) {
BugReporterVisitors.cpp 1161 PathDiagnosticPiece *piece = VisitNodeImpl(N, Prev, BRC, BR); local
    [all...]
PathDiagnostic.cpp 70 PathDiagnosticPiece *Piece = I->get();
72 switch (Piece->getKind()) {
74 PathDiagnosticCallPiece *Call = cast<PathDiagnosticCallPiece>(Piece);
87 PathDiagnosticMacroPiece *Macro = cast<PathDiagnosticMacroPiece>(Piece);
91 Current.push_back(Piece);
94 // FIXME: This probably shouldn't mutate the original path piece.
101 Current.push_back(Piece);
135 "The call piece should be in the main file.");
145 // Check if the last piece in the callee path is a call to a function outside
152 // Otherwise, the last piece is in the main file
225 const PathDiagnosticPiece *piece = I->get(); local
1040 const PathDiagnosticPiece *piece = it->get(); local
    [all...]
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
2998 PathDiagnosticPiece *piece = I->get(); local
3452 PathDiagnosticPiece *piece = local
    [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/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);
db_bench_sqlite3.cc 129 std::string piece; local
133 test::CompressibleString(&rnd, FLAGS_compression_ratio, 100, &piece);
134 data_.append(piece);
  /external/chromium_org/ui/base/resource/
data_pack.cc 219 base::StringPiece piece; local
220 if (!GetStringPiece(resource_id, &piece))
223 return new base::RefCountedStaticMemory(piece.data(), piece.length());
  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 150 llvm::StringRef piece() const { function in class:clang::RopePieceBTreeIterator
  /libcore/luni/src/main/java/javax/crypto/
Cipher.java 326 String piece = pieces[i].trim(); local
327 if (!piece.isEmpty()) {
328 result[i] = piece;
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
db_bench.cc 121 std::string piece; local
125 test::CompressibleString(&rnd, FLAGS_compression_ratio, 100, &piece);
126 data_.append(piece);
  /external/icu/icu4c/source/layout/
IndicReordering.cpp 245 LEUnicode piece = (*splitMatra)[j]; local
247 fOutChars[i+inv_count] = piece;
248 matraClass = classTable->getCharClass(piece);
250 insertCharacter(piece,i+1+inv_count,saveIndex,saveAuxData);
336 LEUnicode piece = (*splitMatra)[i]; local
337 IndicClassTable::CharClass pieceClass = classTable->getCharClass(piece);
339 saveMatra(piece, matraIndex, pieceClass);
    [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 1996 milliseconds