/external/srec/portable/src/ |
D | LCHAR.c | 28 size_t beginning, ending, len; in lstrtrim() local 33 for (beginning = 0; beginning < len && LISSPACE(text[beginning]); ++beginning); in lstrtrim() 35 for (ending = len - 1; ending > beginning && LISSPACE(text[ending]); --ending); in lstrtrim() 37 if (beginning > 0 && beginning <= ending) in lstrtrim() 38 LMEMMOVE(text, text + beginning, ending - beginning + 1); in lstrtrim() 39 text[ending-beginning+1] = '\0'; in lstrtrim()
|
D | PFileSystem.c | 67 const LCHAR* beginning; in PFileSystemLinearToPathTokens() local 83 beginning = linear; in PFileSystemLinearToPathTokens() 86 ending = LSTRCHR(beginning, L('/')); in PFileSystemLinearToPathTokens() 88 ending = beginning + LSTRLEN(beginning); in PFileSystemLinearToPathTokens() 89 value = MALLOC(sizeof(LCHAR) * (ending - beginning + 1 + 1), MTAG); in PFileSystemLinearToPathTokens() 96 LSTRNCPY(value, beginning, ending - beginning + 1); in PFileSystemLinearToPathTokens() 97 value[ending-beginning+1] = L('\0'); in PFileSystemLinearToPathTokens() 111 beginning = ending + 1; in PFileSystemLinearToPathTokens()
|
/external/mdnsresponder/mDNSPosix/ |
D | Services.txt | 4 # Lines beginning with '#' are comments/ignored. 9 # Note that any line beginning with white space is considered a blank line.
|
/external/libvorbis/doc/ |
D | vorbis-clip.txt | 28 beginning or end of the decoded stream or requiring that the desired 92 a larger Vorbis stream, and choosing a beginning point of the clip 94 get the desired beginning point. 96 The process of marking the desired beginning point is similar to 98 to be some location past the actual beginning of data, it associates a 114 position accounts for, and discards the 'surplus' from the beginning 119 indicating beginning and ending sample positions. However, decoders
|
D | a1-encapsulation-ogg.tex | 75 page of exactly 58 bytes at the very beginning of the logical stream. 79 This first page is marked 'beginning of stream' in the page flags. 84 headers) may span one or more pages beginning on the second page of 139 inference it may indicate that the PCM position of the beginning 173 for seeking operations at the very beginning of the stream.
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | ProfilingUtils.h | 32 bool beginning = true);
|
D | ProfilingUtils.cpp | 108 GlobalValue *CounterArray, bool beginning) { in IncrementCounterInBlock() argument 110 BasicBlock::iterator InsertPos = beginning ? BB->getFirstInsertionPt() : in IncrementCounterInBlock()
|
/external/v8/test/mjsunit/ |
D | html-comments.js | 1 --> must work at beginning of file!
|
/external/srec/srec/test/SRecTest/src/ |
D | SRecTest.c | 474 LCHAR* beginning = source; in getFirstToken() local 478 for (; *beginning!=L('\0') && LISSPACE(*beginning); ++beginning); in getFirstToken() 479 if (*beginning==L('\0')) in getFirstToken() 482 if(*beginning == '\"') { in getFirstToken() 483 beginning++; in getFirstToken() 484 for (ending=beginning; *ending!=L('\0') && *ending!='\"'; ++ending); in getFirstToken() 488 for (ending=beginning; *ending!=L('\0') && !LISSPACE(*ending); ++ending); in getFirstToken() 490 if ((size_t) (ending-beginning) > *charsRead) in getFirstToken() 492 *charsRead = ending-beginning; in getFirstToken() 496 LSTRNCPY(target, beginning, ending-beginning); in getFirstToken() [all …]
|
/external/e2fsprogs/tests/f_illitable_flexbg/ |
D | expect.1 | 14 Restarting e2fsck from the beginning...
|
/external/e2fsprogs/tests/f_unused_itable/ |
D | expect.1 | 9 Restarting e2fsck from the beginning...
|
/external/hyphenation/ |
D | README.hyphen | 15 the main portion of the file. Any line beginning with % is a comment. 38 Since the beginning and end of a word are special, the algorithm is 80 more letters from the beginning. For example, if none of the
|
/external/bison/m4/ |
D | locale-fr.m4 | 95 # otherwise on Mac OS X 10.3.5 the LC_TIME=C from the beginning of the 97 # LC_CTYPE, which is also set at the beginning of the configure script. 223 # otherwise on Mac OS X 10.3.5 the LC_TIME=C from the beginning of the 225 # LC_CTYPE, which is also set at the beginning of the configure script.
|
D | locale-ja.m4 | 94 # otherwise on Mac OS X 10.3.5 the LC_TIME=C from the beginning of the 96 # LC_CTYPE, which is also set at the beginning of the configure script.
|
D | locale-zh.m4 | 104 # otherwise on Mac OS X 10.3.5 the LC_TIME=C from the beginning of the 106 # LC_CTYPE, which is also set at the beginning of the configure script.
|
/external/sonivox/jet_tools/JetCreator/ |
D | JetCreatorhlp.dat | 74 chase controllers = This option will force JET to chase controllers up to the beginning of a given … 94 chase controllers = If on, MIDI CC messages and program changes will be read from the beginning of … 109 chase controllers = If on, MIDI CC messages and program changes will be read from the beginning of …
|
/external/srec/srec/test/SRecTestAudio/src/ |
D | SRecTestAudio.c | 474 LCHAR* beginning = source; in getFirstToken() local 478 for (; *beginning!=L('\0') && LISSPACE(*beginning); ++beginning); in getFirstToken() 479 if (*beginning==L('\0')) in getFirstToken() 482 for (ending=beginning; *ending!=L('\0') && !LISSPACE(*ending); ++ending); in getFirstToken() 483 if ((size_t) (ending-beginning) > *charsRead) in getFirstToken() 485 *charsRead = ending-beginning; in getFirstToken() 489 LSTRNCPY(target, beginning, ending-beginning); in getFirstToken() 490 target[ending-beginning] = L('\0'); in getFirstToken()
|
/external/regex-re2/doc/ |
D | syntax.txt | 69 ^ at beginning of text or line («m»=true) 71 \A at beginning of text 74 \G at beginning of subtext being searched NOT SUPPORTED pcre 89 \%^ beginning of file NOT SUPPORTED vim 128 \K reset beginning of «$0» NOT SUPPORTED
|
/external/e2fsprogs/tests/f_misstable/ |
D | expect.1 | 8 Restarting e2fsck from the beginning...
|
/external/webkit/Tools/android/flex-2.5.4a/MISC/VMS/ |
D | mkskel.tpu | 8 ! at the beginning and quote+comma at the end. Bracket the updated
|
/external/openssh/ |
D | ssh_config | 13 # Thus, host-specific definitions should be at the beginning of the
|
/external/llvm/docs/HistoricalNotes/ |
D | 2003-06-25-Reoptimizer1.txt | 45 has agreed not to use. Shift a 1 into it at the beginning. At every 121 the beginning of the original code to the beginning of the optimized
|
/external/icu4c/data/brkitr/ |
D | word_POSIX.txt | 62 # except when they appear at the beginning of a region of text. 87 # Rule 4 - ignore Format and Extend characters, except when they appear at the beginning
|
D | word.txt | 62 # except when they appear at the beginning of a region of text. 87 # Rule 4 - ignore Format and Extend characters, except when they appear at the beginning
|
/external/jpeg/ |
D | maktjpeg.st | 9 ; If you are using Turbo C, change filenames beginning with "pc..." to "tc..."
|