HomeSort by relevance Sort by last modified time
    Searched defs:boundary (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/eigen/doc/special_examples/
Tutorial_sparse_example_details.cpp 9 Eigen::VectorXd& b, const Eigen::VectorXd& boundary)
11 int n = boundary.size();
14 if(i==-1 || i==n) b(id) -= w * boundary(j); // constrained coefficient
15 else if(j==-1 || j==n) b(id) -= w * boundary(i); // constrained coefficient
22 Eigen::ArrayXd boundary = Eigen::ArrayXd::LinSpaced(n, 0,M_PI).sin().pow(2); local
28 insertCoefficient(id, i-1,j, -1, coefficients, b, boundary);
29 insertCoefficient(id, i+1,j, -1, coefficients, b, boundary);
30 insertCoefficient(id, i,j-1, -1, coefficients, b, boundary);
31 insertCoefficient(id, i,j+1, -1, coefficients, b, boundary);
32 insertCoefficient(id, i,j, 4, coefficients, b, boundary);
    [all...]
  /external/bison/src/
location.h 25 /* A boundary between two characters. */
28 /* The name of the file that contains the boundary. */
31 /* If nonnegative, the (origin-1) line that contains the boundary.
38 /* If nonnegative, the (origin-1) column just after the boundary.
47 } boundary; typedef in typeref:struct:__anon4729
51 boundary_set (boundary *b, const char *f, int l, int c)
61 boundary_cmp (boundary a, boundary b)
73 equal_boundaries (boundary a, boundary b
    [all...]
  /external/icu/icu4c/source/samples/break/
break.cpp 44 void printEachForward( BreakIterator& boundary)
46 int32_t start = boundary.first();
47 for (int32_t end = boundary.next();
49 start = end, end = boundary.next())
51 printTextRange( boundary, start, end );
56 void printEachBackward( BreakIterator& boundary)
58 int32_t end = boundary.last();
59 for (int32_t start = boundary.previous();
61 end = start, start = boundary.previous())
63 printTextRange( boundary, start, end )
96 BreakIterator* boundary; local
    [all...]
ubreak.c 33 void printEachForward( UBreakIterator* boundary, UChar* str) {
35 int32_t start = ubrk_first(boundary);
36 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end =
37 ubrk_next(boundary)) {
44 void printEachBackward( UBreakIterator* boundary, UChar* str) {
46 int32_t end = ubrk_last(boundary);
47 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start,
48 start =ubrk_previous(boundary)) {
54 void printFirst(UBreakIterator* boundary, UChar* str) {
56 int32_t start = ubrk_first(boundary);
81 UBreakIterator *boundary; local
    [all...]
  /external/boringssl/src/crypto/asn1/
bio_ndef.c 95 /* Boundary where content is inserted */
96 unsigned char **boundary; member in struct:ndef_aux_st
137 sarg.boundary = NULL;
145 ndef_aux->boundary = sarg.boundary;
180 if (!*ndef_aux->boundary)
183 *plen = *ndef_aux->boundary - *pbuf;
234 sarg.boundary = ndef_aux->boundary;
248 if (!*ndef_aux->boundary)
    [all...]
  /external/google-breakpad/src/common/
stabs_to_module.cc 156 // Sort our boundary list, so we can search it quickly.
167 vector<Module::Address>::const_iterator boundary local
169 if (boundary != boundaries_.end())
170 f->size = *boundary - f->address;
176 // boundary table, only one can be the last.
  /external/icu/icu4c/source/i18n/
brktrans.cpp 96 int32_t boundary; local
97 for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next()) {
98 if (boundary == 0) continue;
101 UChar32 cp = sText.char32At(boundary-1);
106 cp = sText.char32At(boundary);
111 boundaries->addElement(boundary, status);
112 // printf("Boundary at %d\n", boundary)
    [all...]
choicfmt.cpp 448 double boundary = pattern.getNumericValue(part); local
452 if (boundaryChar == LESS_THAN ? !(number > boundary) : !(number >= boundary)) {
453 // The number is in the interval between the previous boundary and the current one.
  /external/jetty/src/java/org/eclipse/jetty/util/
MultiPartWriter.java 42 private String boundary; field in class:MultiPartWriter
52 boundary = "jetty"+System.identityHashCode(this)+
69 out.write(boundary);
79 return boundary;
91 out.write(boundary);
120 out.write(boundary);
MultiPartOutputStream.java 42 private String boundary; field in class:MultiPartOutputStream
54 boundary = "jetty"+System.identityHashCode(this)+
56 boundaryBytes=boundary.getBytes(StringUtil.__ISO_8859_1);
84 return boundary;
  /external/nist-sip/java/gov/nist/javax/sip/message/
ContentImpl.java 17 private String boundary; field in class:ContentImpl
25 public ContentImpl( String content, String boundary ) {
28 this.boundary = boundary;
61 if (boundary == null) {
65 return "--" + boundary + "\r\n" + getContentTypeHeader() +
69 return "--" + boundary + "\r\n" + getContentTypeHeader() + "\r\n" + content.toString();
MultipartMimeContentImpl.java 31 private String boundary; field in class:MultipartMimeContentImpl
33 public static String BOUNDARY = "boundary";
40 this.boundary = contentTypeHeader.getParameter(BOUNDARY);
87 String delimiter = this.getContentTypeHeader().getParameter(BOUNDARY);
128 ContentImpl content = new ContentImpl(rest, boundary);
MessageFactoryImpl.java 835 String boundary = multipartMimeCth.getParameter("boundary"); local
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
DateSorterTest.java 63 long boundary = dateSorter.getBoundary(i); local
66 assertEquals(i, dateSorter.getIndex(boundary + 1));
68 assertEquals(nextIndex, dateSorter.getIndex(boundary));
69 assertEquals(nextIndex, dateSorter.getIndex(boundary-1));
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
MimeBoundaryInputStream.java 29 * can be used to determine if a final boundary has been seen or not.
40 private byte[] boundary = null; field in class:MimeBoundaryInputStream
49 * @param boundary Boundary string (not including leading hyphens).
51 public MimeBoundaryInputStream(InputStream s, String boundary)
54 this.s = new PushbackInputStream(s, boundary.length() + 4);
56 boundary = "--" + boundary;
57 this.boundary = new byte[boundary.length()]
    [all...]
  /packages/services/Telephony/src/org/apache/james/mime4j/
MimeBoundaryInputStream.java 29 * can be used to determine if a final boundary has been seen or not.
40 private byte[] boundary = null; field in class:MimeBoundaryInputStream
49 * @param boundary Boundary string (not including leading hyphens).
51 public MimeBoundaryInputStream(InputStream s, String boundary)
54 this.s = new PushbackInputStream(s, boundary.length() + 4);
56 boundary = "--" + boundary;
57 this.boundary = new byte[boundary.length()]
    [all...]
  /bionic/linker/
linker_allocator.cpp 167 small_object_page_record boundary; local
168 boundary.page_addr = addr;
170 page_records_.begin(), page_records_.end(), boundary);
  /external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
Decoder.java 33 String boundary; field in class:Decoder
126 this.boundary = "--" + _bound;
137 // System.out.println("bound: '" + boundary + "'");
139 if (line.startsWith(boundary))
188 if (line.startsWith(boundary))
196 String deli = "\r\n" + boundary;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
MultipartBuilder.java 74 private final ByteString boundary; field in class:MultipartBuilder
81 /** Creates a new multipart builder that uses a random boundary token. */
87 * Creates a new multipart builder that uses {@code boundary} to separate
91 public MultipartBuilder(String boundary) {
92 this.boundary = ByteString.encodeUtf8(boundary);
193 return new MultipartRequestBody(type, boundary, partHeaders, partBodies);
197 private final ByteString boundary; field in class:MultipartBuilder.MultipartRequestBody
203 public MultipartRequestBody(MediaType type, ByteString boundary, List<Headers> partHeaders,
207 this.boundary = boundary
    [all...]
  /external/valgrind/coregrind/m_gdbserver/
valgrind-low-mips32.c 213 Addr boundary; local
226 boundary = pc & mask;
233 if (func_addr > boundary && func_addr <= bpaddr)
234 boundary = func_addr;
237 if (bpaddr == boundary)
valgrind-low-mips64.c 214 Addr boundary; local
227 boundary = pc & mask;
234 if (func_addr > boundary && func_addr <= bpaddr)
235 boundary = func_addr;
238 if (bpaddr == boundary)
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_print.c 274 unsigned long boundary = ((unsigned long) eBoundary) & PERF_BoundaryMask; local
283 (boundary < PERF_BoundaryMax ?
284 PERF_BoundaryTypes[boundary] : "INVALID"),
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Multipart.java 169 String boundary = getBoundary(); local
177 writer.write(boundary + "\r\n");
182 writer.write(boundary + "--" + "\r\n");
  /external/google-breakpad/src/common/windows/
http_upload.cc 138 wstring boundary = GenerateMultipartBoundary(); local
139 wstring content_type_header = GenerateRequestHeader(boundary);
147 file_part_name, boundary, &request_body)) {
245 // The boundary has 27 '-' characters followed by 16 hex digits
249 // Generate some random numbers to fill out the boundary
263 wstring HTTPUpload::GenerateRequestHeader(const wstring &boundary) {
264 wstring header = L"Content-Type: multipart/form-data; boundary=";
265 header += boundary;
273 const wstring &boundary,
280 string boundary_str = WideToUTF8(boundary);
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
BreakTransliterator.java 76 int boundary = 0; local
90 for(boundary = bi.first(); boundary != BreakIterator.DONE && boundary < pos.limit; boundary = bi.next()) {
91 if (boundary == 0) continue;
94 int cp = UTF16.charAt(text, boundary-1);
99 cp = UTF16.charAt(text, boundary);
110 boundaries[boundaryCount++] = boundary;
111 //System.out.println(boundary);
    [all...]

Completed in 582 milliseconds

1 2 3 4