Searched defs:boundary (Results 1 - 19 of 19) sorted by relevance

/external/bison/src/
H A Dlocation.h26 /* A boundary between two characters. */
29 /* The name of the file that contains the boundary. */
32 /* The (origin-1) line that contains the boundary.
36 /* The (origin-1) column just after the boundary. This is neither a
41 } boundary; typedef in typeref:struct:__anon21
45 equal_boundaries (boundary a, boundary b)
56 boundary start;
59 boundary end;
/external/icu4c/samples/break/
H A Dbreak.cpp44 void printEachForward( BreakIterator& boundary) argument
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) argument
58 int32_t end = boundary.last();
59 for (int32_t start = boundary.previous();
61 end = start, start = boundary.previous())
63 printTextRange( boundary, star
68 printFirst(BreakIterator& boundary) argument
76 printLast(BreakIterator& boundary) argument
84 printAt(BreakIterator &boundary, int32_t pos ) argument
96 BreakIterator* boundary; local
[all...]
H A Dubreak.c33 void printEachForward( UBreakIterator* boundary, UChar* str) { argument
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) { argument
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) { argument
56 int32_t start = ubrk_first(boundary);
62 printLast(UBreakIterator* boundary, UChar* str) argument
71 printAt(UBreakIterator* boundary, int32_t pos , UChar* str) argument
81 UBreakIterator *boundary; local
[all...]
/external/speex/libspeex/
H A Dvq.c51 int scal_quant(spx_word16_t in, const spx_word16_t *boundary, int entries) argument
54 while (i<entries-1 && in>boundary[0])
56 boundary++;
62 int scal_quant32(spx_word32_t in, const spx_word32_t *boundary, int entries) argument
65 while (i<entries-1 && in>boundary[0])
67 boundary++;
/external/icu4c/i18n/
H A Dbrktrans.cpp96 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/webkit/WebCore/inspector/front-end/
H A DTextViewer.js494 var boundary = element.rangeBoundaryForOffset(startOffset); variable
495 var textNode = boundary.container;
498 if (boundary.offset + markLength < text.length) {
500 textNode.textContent = text.substring(boundary.offset + markLength);
502 var prefixNode = document.createTextNode(text.substring(0, boundary.offset));
510 markLength -= text.length - boundary.offset;
511 textNode.textContent = text.substring(0, boundary.offset);
/external/webkit/WebCore/platform/network/
H A DFormDataBuilder.cpp138 Vector<char> boundary; local
145 // to appear in the boundary string, because 0x41 and 0x42 are present in
159 append(boundary, "----WebKitFormBoundary");
172 boundary.append(randomBytes);
173 boundary.append(0); // Add a 0 at the end so we can use this as a C-style string.
174 return boundary;
177 void FormDataBuilder::beginMultiPartHeader(Vector<char>& buffer, const CString& boundary, const CString& name) argument
179 addBoundaryToMultiPartHeader(buffer, boundary);
188 void FormDataBuilder::addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, bool isLastBoundary) argument
191 append(buffer, boundary);
[all...]
/external/webkit/WebCore/wml/
H A DWMLGoElement.cpp157 Vector<char> boundary = m_formDataBuilder.generateUniqueBoundaryString(); local
158 data = createFormData(boundary.data());
159 request.setHTTPContentType(m_formDataBuilder.encodingType() + "; boundary=" + boundary.data());
184 PassRefPtr<FormData> WMLGoElement::createFormData(const CString& boundary) argument
201 m_formDataBuilder.beginMultiPartHeader(header, boundary, key);
214 m_formDataBuilder.addBoundaryToMultiPartHeader(encodedData, boundary, true);
/external/webkit/WebKit/gtk/tests/
H A Dtestatk.c51 static void test_get_text_function(AtkText* text_obj, AtkGetTextFunction fn, AtkTextBoundary boundary, gint offset, const char* text_result, gint start_offset_result, gint end_offset_result) argument
56 text = fn(text_obj, offset, boundary, &start_offset, &end_offset);
/external/clearsilver/cgi/
H A Drfc2388.c244 static BOOL _is_boundary (char *boundary, char *s, int l, int *done) argument
249 /* cache the boundary strlen... more pointless optimization by blong */
250 if (old_boundary != boundary)
252 old_boundary = boundary;
253 bl = strlen(boundary);
262 if (bl+2 == l && s[0] == '-' && s[1] == '-' && !strncmp (s+2, boundary, bl))
265 !strncmp (s+2, boundary, bl) &&
274 static NEOERR * _find_boundary (CGI *cgi, char *boundary, int *done) argument
289 if (_is_boundary(boundary, s, l, done))
357 static NEOERR * _read_part (CGI *cgi, char *boundary, in argument
555 char *boundary = NULL; local
[all...]
/external/webkit/WebCore/platform/graphics/win/
H A DUniscribeController.cpp285 int boundary = k + m_currentCharacter + item.iCharPos; local
286 if (boundary < m_run.length() &&
288 roundingHackWordBoundaries[clusters[k]] = boundary;
352 // to be integer width, so the following words will start on an integer boundary.
358 // width so that the total run width will be on an integer boundary.
/external/tremolo/Tremolo/
H A Dvorbisfile.c117 /* from the head of the stream, get the next page. boundary specifies
121 boundary: -1) unbounded search
131 ogg_int64_t boundary){
132 if(boundary>0)boundary+=vf->offset;
136 if(boundary>0 && vf->offset>=boundary)return OV_FALSE;
145 if(!boundary)return OV_FALSE;
543 bitstream boundary and dumps the decoding machine. If the decoding
646 /* has our decoding just traversed a bitstream boundary
130 _get_next_page(OggVorbis_File *vf,ogg_page *og, ogg_int64_t boundary) argument
[all...]
/external/webkit/WebCore/html/
H A DHTMLFormElement.cpp204 PassRefPtr<FormData> HTMLFormElement::createFormData(const CString& boundary) argument
230 m_formDataBuilder.beginMultiPartHeader(header, boundary, key.data());
278 m_formDataBuilder.addBoundaryToMultiPartHeader(encodedData, boundary, true);
404 Vector<char> boundary = m_formDataBuilder.generateUniqueBoundaryString(); local
405 frame->loader()->submitForm("POST", m_url, createFormData(boundary.data()), m_target, m_formDataBuilder.encodingType(), boundary.data(), lockHistory, event, formState.release());
/external/webkit/WebCore/platform/text/
H A DStringImpl.cpp381 TextBreakIterator* boundary = wordBreakIterator(stringWithPrevious.characters(), m_length + 1); local
382 if (!boundary)
388 int32_t startOfWord = textBreakFirst(boundary);
389 for (endOfWord = textBreakNext(boundary); endOfWord != TextBreakDone; startOfWord = endOfWord, endOfWord = textBreakNext(boundary)) {
/external/webkit/WebCore/dom/
H A DRange.cpp336 // point is in the middle of this range, or on the boundary points
916 // NO_MODIFICATION_ALLOWED_ERR: Raised if an ancestor container of either boundary-point of
1398 // NO_MODIFICATION_ALLOWED_ERR: Raised if an ancestor container of either boundary-point of
1702 static inline void boundaryNodeChildrenChanged(RangeBoundaryPoint& boundary, ContainerNode* container) argument
1704 if (!boundary.childBefore())
1706 if (boundary.container() != container)
1708 boundary.invalidateOffset();
1719 static inline void boundaryNodeWillBeRemoved(RangeBoundaryPoint& boundary, Node* nodeToBeRemoved) argument
1721 if (boundary.childBefore() == nodeToBeRemoved) {
1722 boundary
1744 boundaryTextInserted(RangeBoundaryPoint& boundary, Node* text, unsigned offset, unsigned length) argument
1762 boundaryTextRemoved(RangeBoundaryPoint& boundary, Node* text, unsigned offset, unsigned length) argument
1783 boundaryTextNodesMerged(RangeBoundaryPoint& boundary, NodeWithIndex& oldNode, unsigned offset) argument
1803 boundaryTextNodesSplit(RangeBoundaryPoint& boundary, Text* oldNode) argument
[all...]
/external/webkit/WebCore/loader/
H A DFrameLoader.cpp451 const String& target, const String& contentType, const String& boundary,
524 frameRequest.resourceRequest().setHTTPContentType(contentType + "; boundary=" + boundary);
450 submitForm(const char* action, const String& url, PassRefPtr<FormData> formData, const String& target, const String& contentType, const String& boundary, bool lockHistory, PassRefPtr<Event> event, PassRefPtr<FormState> formState) argument
/external/v8/src/
H A Djsregexp.cc2078 // Emit the code to handle \b and \B (word-boundary or non-word-boundary)
2118 // Emit the code to handle \b and \B (word-boundary or non-word-boundary).
2138 Label* boundary; local
2141 boundary = &ok;
2145 boundary = new_trace.backtrack();
2161 EmitWordCheck(assembler, boundary, not_boundary, false);
2169 assembler->CheckAtStart(boundary);
2177 EmitWordCheck(assembler, not_boundary, boundary, fall_through_on_wor
[all...]
H A Dobjects.cc4232 int boundary = first->length(); local
4233 if (to - boundary >= boundary - from) {
4235 if (from < boundary) {
4236 WriteToFlat(first, sink, from, boundary);
4237 sink += boundary - from;
4240 from -= boundary;
4242 to -= boundary;
4246 if (to > boundary) {
4249 sink + boundary
[all...]
/external/webkit/WebCore/rendering/
H A DRenderBlock.cpp348 static void getInlineRun(RenderObject* start, RenderObject* boundary, argument
360 // |boundary| indicates a non-inclusive boundary point. Regardless of whether |boundary|
379 while (curr && (curr->isInline() || curr->isFloatingOrPositioned()) && (curr != boundary)) {
3107 // if we hit a self-painting layer boundary.

Completed in 266 milliseconds