Searched refs:truncated (Results 1 - 25 of 62) sorted by relevance

123

/external/pdfium/xfa/fxbarcode/
H A Dcbc_pdf417i.h31 void SetTruncated(bool truncated);
H A Dcbc_pdf417i.cpp36 void CBC_PDF417I::SetTruncated(bool truncated) { argument
37 static_cast<CBC_PDF417Writer*>(m_pBCWriter.get())->SetTruncated(truncated);
/external/pdfium/xfa/fxbarcode/pdf417/
H A DBC_PDF417Writer.h27 void SetTruncated(bool truncated);
H A DBC_PDF417Writer.cpp44 void CBC_PDF417Writer::SetTruncated(bool truncated) { argument
45 m_bTruncated = truncated;
/external/guava/guava-tests/test/com/google/common/base/
H A DAsciiTest.java102 String truncated = null;
104 truncated = Ascii.truncate("foobar", 2, "...");
109 truncated = Ascii.truncate("foobar", 8, "1234567890");
114 truncated = Ascii.truncate("foobar", -1, "...");
119 truncated = Ascii.truncate("foobar", -1, "");
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
H A DMockSpdyPeer.java161 boolean truncated;
166 truncated = false;
169 truncated = nextOutFrame.truncated;
176 // If the last frame was truncated, immediately close the connection.
177 if (truncated) {
206 private final boolean truncated; field in class:MockSpdyPeer.OutFrame
208 private OutFrame(int sequence, long start, boolean truncated) { argument
211 this.truncated = truncated;
[all...]
/external/openssh/
H A Ddh.c65 goto truncated;
68 goto truncated;
77 goto truncated;
87 goto truncated;
104 goto truncated;
107 truncated:
108 error("moduli:%d: truncated", linenum);
/external/llvm/lib/ProfileData/
H A DSampleProfReader.cpp252 EC = sampleprof_error::truncated;
269 EC = sampleprof_error::truncated;
490 return sampleprof_error::truncated;
513 return sampleprof_error::truncated;
541 return sampleprof_error::truncated;
558 return sampleprof_error::truncated;
563 return sampleprof_error::truncated;
576 return sampleprof_error::truncated;
592 return sampleprof_error::truncated;
596 return sampleprof_error::truncated;
[all...]
H A DSampleProf.cpp39 case sampleprof_error::truncated:
H A DInstrProfReader.cpp143 return error(instrprof_error::truncated);
218 return error(instrprof_error::truncated);
225 return error(instrprof_error::truncated);
236 return error(instrprof_error::truncated);
630 return error(instrprof_error::truncated);
/external/llvm/test/MC/AsmParser/
H A Ddirective_fill.s38 # CHECK-WARNINGS: '.fill' directive with size greater than 8 has been truncated to 8
44 # CHECK-WARNINGS: '.fill' directive pattern has been truncated to 32-bits
/external/pdfium/xfa/fwl/
H A Dcfx_barcode.h59 bool SetTruncated(bool truncated);
H A Dcfwl_barcode.h69 void SetTruncated(bool truncated);
H A Dcfwl_barcode.cpp154 void CFWL_Barcode::SetTruncated(bool truncated) { argument
156 m_bTruncated = truncated;
H A Dcfx_barcode.cpp292 bool CFX_Barcode::SetTruncated(bool truncated) { argument
302 return m_pBCEngine && memptr ? ((m_pBCEngine.get()->*memptr)(truncated), true)
/external/webrtc/webrtc/libjingle/xmpp/
H A Dpresencereceivetask.cc86 std::string truncated(presence_status->status(), 0, len);
87 presence_status->set_status(truncated);
/external/selinux/libselinux/src/
H A Dregex.c501 goto truncated;
516 goto truncated;
523 goto truncated;
531 goto truncated;
536 truncated:
537 /* replace end of string with "..." to indicate that it was truncated */
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DStatusLineTest.java96 @Test public void truncated() throws IOException { method in class:StatusLineTest
/external/fio/
H A Dserver.h204 uint16_t truncated; member in struct:cmd_job_option
/external/python/cpython2/Lib/plat-mac/Carbon/
H A DQuickDraw.py209 truncated = 1 variable
/external/mesa3d/src/amd/addrlib/core/
H A Daddrelemlib.cpp201 UINT_64 truncated, rounded; local
230 truncated = ((shifted.i&0x7FFFFF) + (INT_64)0x800000) << 8;
232 truncated = (altShift > 60) ? 0 : truncated >> altShift;
233 rounded = static_cast<INT_32>((round + truncated) >> 8);
/external/compiler-rt/lib/builtins/
H A Dfp_trunc_impl.inc97 // bit and inserting the (truncated) trailing NaN field.
/external/libchrome/dbus/
H A Dmessage.cc172 std::string truncated; local
173 base::TruncateUTF8ToByteSize(value, kTruncateLength, &truncated);
174 base::StringAppendF(&truncated, "... (%" PRIuS " bytes in total)",
176 output += indent + "string \"" + truncated + "\"\n";
/external/llvm/include/llvm/ProfileData/
H A DSampleProf.h36 truncated, member in class:llvm::sampleprof_error
/external/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp46 return make_error<CoverageMapError>(coveragemap_error::truncated);
552 return make_error<CoverageMapError>(coveragemap_error::truncated);
560 return make_error<CoverageMapError>(coveragemap_error::truncated);
574 return make_error<CoverageMapError>(coveragemap_error::truncated);

Completed in 569 milliseconds

123