Searched refs:start (Results 201 - 225 of 4477) sorted by relevance

1234567891011>>

/macosx-10.9.5/vim-53/runtime/syntax/
H A Dhaml.vim24 syn region rubyCurlyBlock start="{" end="}" contains=@hamlRubyTop contained
34 syn region hamlAttributes matchgroup=hamlAttributesDelimiter start="(" end=")" contained contains=htmlArg,hamlAttributeString,hamlAttributeVariable,htmlEvent,htmlCssDefinition nextgroup=@hamlComponent
35 syn region hamlAttributesHash matchgroup=hamlAttributesDelimiter start="{" end="}" contained contains=@hamlRubyTop nextgroup=@hamlComponent
36 syn region hamlObject matchgroup=hamlObjectDelimiter start="\[" end="\]" contained contains=@hamlRubyTop nextgroup=@hamlComponent
43 syn region hamlDocType start="^\s*!!!" end="$"
45 syn region hamlRuby matchgroup=hamlRubyOutputChar start="[!&]\==\|\~" skip=",\s*$" end="$" contained contains=@hamlRubyTop keepend
46 syn region hamlRuby matchgroup=hamlRubyChar start="-" skip=",\s*$" end="$" contained contains=@hamlRubyTop keepend
48 syn region hamlInterpolatable matchgroup=hamlInterpolatableChar start="!\===\|!=\@!" end="$" keepend contained contains=hamlInterpolation,hamlInterpolationEscape,@hamlHtmlTop
49 syn region hamlInterpolatable matchgroup=hamlInterpolatableChar start="&==\|&=\@!" end="$" keepend contained contains=hamlInterpolation,hamlInterpolationEscape
50 syn region hamlInterpolation matchgroup=hamlInterpolationDelimiter start
[all...]
H A Dmarkdown.vim30 syn region markdownH1 matchgroup=markdownHeadingDelimiter start="##\@!" end="#*\s*$" keepend oneline contains=@markdownInline contained
31 syn region markdownH2 matchgroup=markdownHeadingDelimiter start="###\@!" end="#*\s*$" keepend oneline contains=@markdownInline contained
32 syn region markdownH3 matchgroup=markdownHeadingDelimiter start="####\@!" end="#*\s*$" keepend oneline contains=@markdownInline contained
33 syn region markdownH4 matchgroup=markdownHeadingDelimiter start="#####\@!" end="#*\s*$" keepend oneline contains=@markdownInline contained
34 syn region markdownH5 matchgroup=markdownHeadingDelimiter start="######\@!" end="#*\s*$" keepend oneline contains=@markdownInline contained
35 syn region markdownH6 matchgroup=markdownHeadingDelimiter start="#######\@!" end="#*\s*$" keepend oneline contains=@markdownInline contained
39 syn region markdownCodeBlock start=" \|\t" end="$" contained
50 syn region markdownIdDeclaration matchgroup=markdownLinkDelimiter start="^ \{0,3\}!\=\[" end="\]:" oneline keepend nextgroup=markdownUrl skipwhite
52 syn region markdownUrl matchgroup=markdownUrlDelimiter start="<" end=">" oneline keepend nextgroup=markdownUrlTitle skipwhite contained
53 syn region markdownUrlTitle matchgroup=markdownUrlTitleDelimiter start
[all...]
H A Dbdf.vim14 \ start='^STARTFONT\>' end='^ENDFONT\>'
23 syn region bdfComment contained start='^COMMENT\>' end='$'
27 \ start='^FONT\>' end='$'
30 \ start='^SIZE\>' end='$' contains=bdfNumber
33 \ start='^FONTBOUNDINGBOX' end='$'
37 \ start='^STARTPROPERTIES' end='^ENDPROPERTIES'
52 syn region bdfString contained start=+"+ skip=+""+ end=+"+
55 \ matchgroup=bdfKeyword start='^CHARS' end='$'
59 \ start='^STARTCHAR' end='^ENDCHAR'
64 \ start
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/
H A Drangelist.h59 void rl_add(off_t start, off_t end, struct rl_head *rangelist);
60 void rl_remove(off_t start, off_t end, struct rl_head *rangelist);
62 off_t start,
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DApplyStyleCommand.cpp134 , m_start(endingSelection().start().downstream())
143 ApplyStyleCommand::ApplyStyleCommand(Document* document, const EditingStyle* style, const Position& start, const Position& end, EditAction editingAction, EPropertyLevel propertyLevel) argument
148 , m_start(start)
162 , m_start(endingSelection().start().downstream())
176 , m_start(endingSelection().start().downstream())
201 return endingSelection().start();
249 Position start = startPosition(); local
251 if (comparePositions(end, start) < 0) {
252 Position swap = start;
253 start
560 Position start = startPosition(); local
682 fixRangeAndApplyInlineStyle(EditingStyle* style, const Position& start, const Position& end) argument
729 InlineRunToApplyStyle(Node* start, Node* end, Node* pastEndNode) argument
742 RefPtr<Node> start; member in struct:WebCore::InlineRunToApplyStyle
1078 removeInlineStyle(EditingStyle* style, const Position &start, const Position &end) argument
1163 nodeFullySelected(Node *node, const Position &start, const Position &end) const argument
1175 nodeFullyUnselected(Node *node, const Position &start, const Position &end) const argument
1186 splitTextAtStart(const Position& start, const Position& end) argument
1201 splitTextAtEnd(const Position& start, const Position& end) argument
1217 splitTextElementAtStart(const Position& start, const Position& end) argument
1231 splitTextElementAtEnd(const Position& start, const Position& end) argument
1266 mergeStartWithPreviousIfIdentical(const Position& start, const Position& end) argument
1305 mergeEndWithNextIfIdentical(const Position& start, const Position& end) argument
1516 joinChildTextNodes(Node* node, const Position& start, const Position& end) argument
[all...]
H A DIndentOutdentCommand.cpp59 bool IndentOutdentCommand::tryIndentingAsListItem(const Position& start, const Position& end) argument
62 Node* lastNodeInSelectedParagraph = start.deprecatedNode();
81 moveParagraphWithClones(start, end, newList.get(), selectedListItem.get());
91 void IndentOutdentCommand::indentIntoBlockquote(const Position& start, const Position& end, RefPtr<Element>& targetBlockquote) argument
93 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
97 else if (enclosingList(start.containerNode()))
98 nodeToSplitTo = enclosingBlock(start.containerNode());
100 nodeToSplitTo = editableRootForPosition(start);
105 RefPtr<Node> nodeAfterStart = start.computeNodeAfterPosition();
106 RefPtr<Node> outerBlock = (start
234 formatRange(const Position& start, const Position& end, const Position&, RefPtr<Element>& blockquoteForNextIndent) argument
[all...]
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireFamily.kmodproj/
H A DIORemoteConfigDirectory.cpp46 int start, int type)
53 if( !IOConfigDirectory::initWithOffset(start, type) )
83 int start, int type)
91 if( !dir->initWithOwnerOffset(rom, start, type) )
120 IORemoteConfigDirectory::getSubDir(int start, int type) argument
122 return withOwnerOffset(fROM, start, type);
45 initWithOwnerOffset( IOFireWireROMCache *rom, int start, int type) argument
82 withOwnerOffset( IOFireWireROMCache *rom, int start, int type) argument
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dmktemp.c49 char *start, *cp, *ep; local
64 for (start = ep; start > path && start[-1] == 'X'; start--) {
71 for (cp = start; cp != ep; cp++) {
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DAudioBufferSourceNode.idl47 void start(double when);
48 [ImplementedAs=startGrain] void start(double when, double grainOffset);
49 [ImplementedAs=startGrain] void start(double when, double grainOffset, double grainDuration);
/macosx-10.9.5/bash-92/bash-3.2/
H A Dbraces.c91 register int start; local
116 start = j = i + 1; /* { */
150 start = ++i;
159 j = start;
184 amble = substring (text, start, i);
185 alen = i - start;
187 amble = (char *)xmalloc (1 + (i - start));
188 strncpy (amble, &text[start], (i - start));
189 alen = i - start;
256 int start, i, c; local
[all...]
/macosx-10.9.5/expat-12/expat/xmlwf/
H A Dct.c73 matchkey(const char *start, const char *end, const char *key) argument
75 if (!start)
77 for (; start != end; start++, key++)
78 if (*start != *key && *start != 'A' + (*key - 'a'))
H A Dxmlmime.c77 matchkey(const char *start, const char *end, const char *key) argument
79 if (!start)
81 for (; start != end; start++, key++)
82 if (*start != *key && *start != 'A' + (*key - 'a'))
/macosx-10.9.5/libdispatch-339.92.1/src/
H A Dbenchmark.c43 uint64_t start, delta; local
56 start = _dispatch_absolute_time();
61 delta = _dispatch_absolute_time() - start;
95 uint64_t ns, start, delta; local
109 start = _dispatch_absolute_time();
114 delta = _dispatch_absolute_time() - start;
/macosx-10.9.5/sudo-72/src/
H A Dmkstemps.c56 char *start, *cp, *ep; local
70 for (start = ep; start > path && start[-1] == 'X'; start--) {
77 for (cp = start; *cp; cp++) {
/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Drep044.tcl155 set start 0
156 eval rep_test $method $menv0 NULL $niter $start $start 0 0 $largs
157 incr start $niter
171 set start [do_switch $method $niter $start $menv0 $cenv $largs]
201 set start [do_switch $method $niter $start $menv0 $cenv $largs]
212 set start [do_switch $method $niter $start
[all...]
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/eg/
H A Djs.pl17 $proxy->start;
H A Drfc.pl18 $proxy->start;
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/eg/
H A Djs.pl17 $proxy->start;
H A Drfc.pl18 $proxy->start;
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Duset_imp.h31 USetAddRange(USet *set, UChar32 start, UChar32 end);
40 USetRemoveRange(USet *set, UChar32 start, UChar32 end);
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dformat.cpp179 int32_t start = (pos < U_PARSE_CONTEXT_LEN)? 0 : (pos - (U_PARSE_CONTEXT_LEN-1 local
182 pattern.extract(start,stop-start,parseError.preContext,0);
184 parseError.preContext[stop-start] = 0;
187 start = pos+1;
190 pattern.extract(start,stop-start,parseError.postContext,0);
192 parseError.postContext[stop-start]= 0;
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dreptest.cpp36 * If at start, use the following character<br>
90 void extractBetween(int32_t start, int32_t limit, UnicodeString& result) const { argument
91 chars.extractBetween(start, limit, result);
121 void fixStyles(int32_t start, int32_t limit, int32_t newLen) { argument
123 if (start != limit && styles.charAt(start) != NO_STYLE) {
124 newStyle = styles.charAt(start);
125 } else if (start > 0 && getCharAt(start-1) != NO_STYLE_MARK) {
126 newStyle = styles.charAt(start
145 handleReplaceBetween(int32_t start, int32_t limit, const UnicodeString& text) argument
154 copy(int32_t start, int32_t limit, int32_t dest) argument
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/tools/toolutil/
H A Dpkg_icu.cpp82 const char *start; local
107 start=u_skipWhitespace(line);
108 if(*start==0 || NULL!=strchr(U_PKG_RESERVED_CHARS, *start)) {
115 for(end=(char *)start; *end!=0 && *end!=' ' && *end!='\t'; ++end) {}
124 listPkg->addFile(filesPath, start);
126 listPkg->addItem(start);
129 // find the start of the next item or exit the loop
130 if(end==NULL || *(start=u_skipWhitespace(end+1))==0) {
/macosx-10.9.5/WebCore-7537.78.1/Modules/websockets/
H A DWebSocketExtensionParser.h44 WebSocketExtensionParser(const char* start, const char* end) argument
45 : m_current(start)
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DDateComponents.h97 // src[start] and examines characters before src[length].
105 bool parseMonth(const UChar* src, unsigned length, unsigned start, unsigned& end);
107 bool parseDate(const UChar* src, unsigned length, unsigned start, unsigned& end);
109 bool parseWeek(const UChar* src, unsigned length, unsigned start, unsigned& end);
111 bool parseTime(const UChar* src, unsigned length, unsigned start, unsigned& end);
113 bool parseDateTimeLocal(const UChar* src, unsigned length, unsigned start, unsigned& end);
115 bool parseDateTime(const UChar* src, unsigned length, unsigned start, unsigned& end);
175 bool parseYear(const UChar* src, unsigned length, unsigned start, unsigned& end);
178 bool parseTimeZone(const UChar* src, unsigned length, unsigned start, unsigned& end);

Completed in 320 milliseconds

1234567891011>>