HomeSort by relevance Sort by last modified time
    Searched defs:boundary (Results 1 - 25 of 79) 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:__anon5002
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/chromium_org/chrome/browser/extensions/api/webrtc_logging_private/
webrtc_logging_private_apitest.cc 208 const char boundary[] = "------**--yradnuoBgoLtrapitluMklaTelgooG--**----"; local
217 size_t zip_length = multipart.find(boundary, zip_pos);
229 EXPECT_STREQ(&boundary[0], multipart_lines[0].c_str());
235 EXPECT_STREQ(&boundary[0], multipart_lines[4].c_str());
242 EXPECT_STREQ(&boundary[0], multipart_lines[8].c_str());
248 EXPECT_STREQ(&boundary[0], multipart_lines[12].c_str());
254 EXPECT_STREQ(&boundary[0], multipart_lines[16].c_str());
260 EXPECT_STREQ(&boundary[0], multipart_lines[20].c_str());
266 EXPECT_STREQ(&boundary[0], multipart_lines[24].c_str());
274 std::string final_delimiter = boundary;
    [all...]
  /external/chromium_org/third_party/icu/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/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/chromium_org/third_party/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;
177 if (!*ndef_aux->boundary)
180 *plen = *ndef_aux->boundary - *pbuf;
231 sarg.boundary = ndef_aux->boundary;
242 if (!*ndef_aux->boundary)
    [all...]
  /external/chromium_org/third_party/icu/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...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bc-align.c 40 /*@only@*/ yasm_expr *boundary; /* alignment boundary */ member in struct:bytecode_align
81 if (align->boundary)
82 yasm_expr_destroy(align->boundary);
96 yasm_expr_print(align->boundary, f);
108 if (!yasm_expr_get_intnum(&align->boundary, 0))
110 N_("align boundary must be a constant"));
139 unsigned long boundary = local
140 yasm_intnum_get_uint(yasm_expr_get_intnum(&align->boundary, 0));
142 if (boundary == 0)
174 unsigned long boundary = local
    [all...]
  /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...]
  /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);
  /external/openssl/crypto/asn1/
bio_ndef.c 90 /* Boundary where content is inserted */
91 unsigned char **boundary; member in struct:ndef_aux_st
132 sarg.boundary = NULL;
140 ndef_aux->boundary = sarg.boundary;
172 if (!*ndef_aux->boundary)
175 *plen = *ndef_aux->boundary - *pbuf;
226 sarg.boundary = ndef_aux->boundary;
237 if (!*ndef_aux->boundary)
    [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));
  /external/chromium_org/base/i18n/
break_iterator.cc 150 UBool boundary = ubrk_isBoundary(iter, static_cast<int32_t>(position)); local
152 return (!!boundary && status != UBRK_WORD_NONE);
160 UBool boundary = ubrk_isBoundary(iter, static_cast<int32_t>(position)); local
163 return (!!boundary && next_status != UBRK_WORD_NONE);
  /external/chromium_org/chrome/browser/ui/find_bar/
find_bar_controller.cc 174 int boundary = dialog_bounds.width() - view_location.width(); local
175 view_location.set_x(std::min(view_location.x(), boundary));
  /external/chromium_org/third_party/WebKit/Source/platform/network/
FormDataBuilder.cpp 105 Vector<char> boundary; local
112 // to appear in the boundary string, because 0x41 and 0x42 are present in
126 append(boundary, "----WebKitFormBoundary");
139 boundary.appendVector(randomBytes);
140 boundary.append(0); // Add a 0 at the end so we can use this as a C-style string.
141 return boundary;
144 void FormDataBuilder::beginMultiPartHeader(Vector<char>& buffer, const CString& boundary, const CString& name)
146 addBoundaryToMultiPartHeader(buffer, boundary);
155 void FormDataBuilder::addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, bool isLastBoundary)
158 append(buffer, boundary);
    [all...]
FormData.h 112 const Vector<char>& boundary() const { return m_boundary; } function in class:blink::FormData
113 void setBoundary(Vector<char> boundary) { m_boundary = boundary; }
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FormSubmission.cpp 146 inline FormSubmission::FormSubmission(Method method, const KURL& action, const AtomicString& target, const AtomicString& contentType, PassRefPtrWillBeRawPtr<FormState> state, PassRefPtr<FormData> data, const String& boundary, PassRefPtrWillBeRawPtr<Event> event)
153 , m_boundary(boundary)
229 String boundary; local
233 boundary = formData->boundary().data();
246 return adoptRefWillBeNoop(new FormSubmission(copiedAttributes.method(), actionURL, targetOrBaseTarget, encodingType, FormState::create(*form, trigger), formData.release(), boundary, event));
281 frameRequest.resourceRequest().setHTTPContentType(m_contentType + "; boundary=" + m_boundary);
  /external/chromium_org/third_party/WebKit/Source/platform/mhtml/
MHTMLArchive.cpp 127 String boundary = generateRandomBoundary(); local
128 String endOfResourceBoundary = "--" + boundary + "\r\n";
147 stringBuilder.append(boundary);
214 asciiString = String("--" + boundary + "--\r\n").utf8();
  /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/valgrind/main/coregrind/m_gdbserver/
valgrind-low-mips32.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)
valgrind-low-mips64.c 215 Addr boundary; local
228 boundary = pc & mask;
235 if (func_addr > boundary && func_addr <= bpaddr)
236 boundary = func_addr;
239 if (bpaddr == boundary)

Completed in 1203 milliseconds

1 2 3 4