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

1 2 3 4 5 6

  /external/eigen/doc/special_examples/
Tutorial_sparse_example_details.cpp 9 Eigen::VectorXd& b, const Eigen::VectorXd& boundary)
11 int n = int(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...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/common/drivers/parameter/
ddr_parameter.h 28 uint64_t boundary; member in struct:param_ddr_usage
  /external/icu/icu4c/source/samples/break/
break.cpp 50 void printEachForward( BreakIterator& boundary)
52 int32_t start = boundary.first();
53 for (int32_t end = boundary.next();
55 start = end, end = boundary.next())
57 printTextRange( boundary, start, end );
62 void printEachBackward( BreakIterator& boundary)
64 int32_t end = boundary.last();
65 for (int32_t start = boundary.previous();
67 end = start, start = boundary.previous())
69 printTextRange( boundary, start, end )
102 BreakIterator* boundary; local
    [all...]
ubreak.c 39 void printEachForward( UBreakIterator* boundary, UChar* str) {
41 int32_t start = ubrk_first(boundary);
42 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end =
43 ubrk_next(boundary)) {
50 void printEachBackward( UBreakIterator* boundary, UChar* str) {
52 int32_t end = ubrk_last(boundary);
53 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start,
54 start =ubrk_previous(boundary)) {
60 void printFirst(UBreakIterator* boundary, UChar* str) {
62 int32_t start = ubrk_first(boundary);
87 UBreakIterator *boundary; local
    [all...]
  /prebuilts/go/darwin-x86/src/mime/multipart/
formdata_test.go 17 r := NewReader(b, boundary)
43 r := NewReader(b, boundary)
85 boundary = `MyBoundary`
121 boundary := `---------------------------8d345eef0d38dc9`
129 mr := NewReader(&failOnReadAfterErrorReader{t: t, r: strings.NewReader(body)}, boundary)
179 r := NewReader(b, boundary)
84 boundary = `MyBoundary` const
  /prebuilts/go/linux-x86/src/mime/multipart/
formdata_test.go 17 r := NewReader(b, boundary)
43 r := NewReader(b, boundary)
85 boundary = `MyBoundary`
121 boundary := `---------------------------8d345eef0d38dc9`
129 mr := NewReader(&failOnReadAfterErrorReader{t: t, r: strings.NewReader(body)}, boundary)
179 r := NewReader(b, boundary)
84 boundary = `MyBoundary` const
  /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/libbrillo/brillo/http/
http_form_data_unittest.cc 97 "Content-Type: multipart/form-data; boundary=\"Delimiter\"\r\n"
128 std::string boundary = field.GetBoundary(); local
129 boundaries.insert(boundary);
130 // Our generated boundary must be 16 character long and contain lowercase
132 EXPECT_EQ(16u, boundary.size());
134 boundary.find_first_not_of("0123456789abcdef"));
136 // Now make sure the boundary strings were generated at random, so we should
137 // get |count| unique boundary strings. However since the strings are random,
170 EXPECT_EQ("multipart/form-data; boundary=\"boundary1\"",
183 "Content-Type: multipart/mixed; boundary=\"boundary2\"\r\n
    [all...]
  /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);
  /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));
  /external/icu/icu4c/source/i18n/
brktrans.cpp 104 int32_t boundary; local
105 for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next()) {
106 if (boundary == 0) continue;
109 UChar32 cp = sText.char32At(boundary-1);
114 cp = sText.char32At(boundary);
119 boundaries->addElement(boundary, status);
120 // printf("Boundary at %d\n", boundary)
    [all...]
  /libcore/ojluni/src/main/java/java/text/
BreakIterator.java 68 * word, line, sentence, and character boundary analysis respectively.
71 * for each unit boundary analysis you wish to perform.
74 * Line boundary analysis determines where a text string can be
81 * Sentence boundary analysis allows selection with correct interpretation
86 * Word boundary analysis is used by search and replace functions, as
94 * Character boundary analysis allows users to interact with characters
96 * string. Character boundary analysis provides correct navigation
119 * BreakIterator boundary = BreakIterator.getWordInstance();
120 * boundary.setText(stringToExamine);
121 * printEachForward(boundary, stringToExamine)
383 int boundary = following(offset - 1); local
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
MimeMultipart.java 32 protected String boundary; field in class:MimeMultipart
37 boundary = generateBoundary();
45 boundary = MimeUtility.getHeaderParameter(contentType, "boundary");
46 if (boundary == null) {
47 throw new MessagingException("MultiPart does not contain boundary: " + contentType);
51 "Invalid MultiPart Content-Type; must contain subtype and boundary. ("
82 contentType = String.format("multipart/%s; boundary=\"%s\"", subType, boundary);
95 writer.write("--" + boundary + "\r\n")
    [all...]
  /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...]
  /bionic/linker/
linker_allocator.cpp 178 small_object_page_record boundary; local
179 boundary.page_addr = addr;
181 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/libmojo/base/android/javatests/src/org/chromium/base/metrics/
RecordHistogramTest.java 67 final int boundary = 3; local
73 RecordHistogram.recordEnumeratedHistogram(histogram, 0, boundary);
78 RecordHistogram.recordEnumeratedHistogram(histogram, 0, boundary);
83 RecordHistogram.recordEnumeratedHistogram(histogram, 2, boundary);
  /external/libmojo/base/android/
record_histogram.cc 89 int32_t boundary = static_cast<int32_t>(j_boundary); local
91 CheckHistogramArgs(env, j_histogram_name, 1, boundary, boundary + 1,
98 LinearHistogram::FactoryGet(histogram_name, 1, boundary, boundary + 1,
  /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)
  /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/adhd/cras/src/server/
cras_alsa_helpers.c 581 snd_pcm_uframes_t boundary; local
590 err = snd_pcm_sw_params_get_boundary(swparams, &boundary);
595 err = snd_pcm_sw_params_set_stop_threshold(handle, swparams, boundary);
  /external/curl/lib/
mime.h 25 #define MIME_RAND_BOUNDARY_CHARS 16 /* Nb. of random boundary chars. */
50 MIMESTATE_BOUNDARY1, /* In boundary prefix. */
51 MIMESTATE_BOUNDARY2, /* In boundary. */
93 char *boundary; /* The part boundary. */ member in struct:curl_mime_s

Completed in 494 milliseconds

1 2 3 4 5 6