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

1 2 3 4 5 6 7 8 91011>>

  /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/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/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/chrome/browser/ui/gtk/
tabstrip_origin_provider.h 16 // exists to make it easier to test piece by piece.
  /external/chromium_org/chrome/browser/ui/gtk/
tabstrip_origin_provider.h 15 // exists to make it easier to test piece by piece.
  /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);
  /packages/apps/Contacts/src/com/android/contacts/util/
SchedulingUtils.java 27 /** Runs a piece of code after the next layout run */
40 /** Runs a piece of code just before the next draw. */
  /external/doclava/src/com/google/doclava/
Resolution.java 28 * <p>Variables refer to the piece of data within a Java type that needs to be updated
43 * @param variable The piece of data within a Java type that needs to be updated
55 * @return The piece of data within a Java type that needs to be updated
  /external/chromium_org/third_party/icu/source/tools/toolutil/
swapimpl.h 27 * Identifies and then transforms the ICU data piece in-place, or determines
  /external/icu4c/tools/toolutil/
swapimpl.h 27 * Identifies and then transforms the ICU data piece in-place, or determines
  /external/chromium/chrome/browser/ui/cocoa/applescript/examples/
tab_manipulation.applescript 26 cut selection -- Cut a piece of text and place it on the system clipboard.
28 copy selection -- Copy a piece of text and place it on the system clipboard.
  /external/chromium_org/chrome/browser/ui/cocoa/applescript/examples/
tab_manipulation.applescript 26 cut selection -- Cut a piece of text and place it on the system clipboard.
28 copy selection -- Copy a piece of text and place it on the system clipboard.
  /frameworks/compile/mclinker/include/mcld/Support/
MemoryRegion.h 57 /// Create - To wrap a piece of memory and to create a new region.
58 /// This function wraps a piece of memory and to create a new region. Region
61 /// @param pStart [in] The start address of a piece of memory
65 /// Create - To wrap a piece of memory and to create a new region.
66 /// This function wraps a piece of memory and to create a new region. Region
77 /// @param pStart [in] The start address of a piece of memory
  /art/runtime/base/
stringpiece.cc 90 std::ostream& operator<<(std::ostream& o, const StringPiece& piece) {
91 o.write(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());
  /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/chrome/test/logging/win/
mof_data_parser.h 57 // piece. The returned piece is not null-terminated.
  /external/chromium_org/third_party/opus/src/silk/
log2lin.c 49 /* Piece-wise parabolic approximation */
52 /* Piece-wise parabolic approximation */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
gnu-versions.h 24 number associated with the library interface of a piece of the C library
28 the GNU C library. The source files for each piece surround all their
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
gnu-versions.h 24 number associated with the library interface of a piece of the C library
28 the GNU C library. The source files for each piece surround all their
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
gnu-versions.h 24 number associated with the library interface of a piece of the C library
28 the GNU C library. The source files for each piece surround all their
  /cts/tests/tests/example/src/android/example/cts/
ExampleSecondaryTest.java 27 * separate your test classes by what class or major piece of
  /external/bison/m4/
pathmax.m4 14 # Expands to a piece of C program that defines PATH_MAX in the same way as
  /external/chromium_org/chrome/browser/ui/
host_desktop.h 14 // A value that specifies what desktop environment hosts a particular piece of

Completed in 614 milliseconds

1 2 3 4 5 6 7 8 91011>>