Searched refs:chars (Results 1 - 25 of 406) sorted by relevance

1234567891011>>

/macosx-10.9.5/Heimdal-323.92.1/lib/hx509/
H A Dquote.py43 chars = [] variable
46 chars.append(0);
50 chars[i] |= CONTROL_CHAR | RFC2253_HEX;
53 chars[i] |= PRINTABLE
55 chars[i] |= PRINTABLE
57 chars[i] |= PRINTABLE
59 chars[ord(' ')] |= PRINTABLE
60 chars[ord('+')] |= PRINTABLE
61 chars[ord(',')] |= PRINTABLE
62 chars[or
[all...]
/macosx-10.9.5/bash-92/bash-3.2/examples/scripts/
H A Dspin.bash10 chars="|${bs} \\${bs} -${bs} /${bs}"
15 for letter in $chars
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/startperf/
H A Dmakenames.pl22 my @chars = split("", "abcdefghijklmnopqrstuvwxyz123456789");
29 $name .= $chars[$r];
/macosx-10.9.5/cups-372.4/cups/vcnet/regex/
H A Dcclass.h4 char *chars; member in struct:cclass
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A Dregcclass.h43 const char *chars; member in struct:cclass
/macosx-10.9.5/tcl-102/tcl/tcl/tools/
H A DuniClass.tcl16 global ranges numranges chars numchars
25 append chars [format "0x%04x, " $first]
28 append chars "\n "
31 append chars [format "0x%04x, " $last]
34 append chars "\n "
41 global first last ranges numranges chars numchars
47 set chars " "
66 set chars [string trimright $chars "\t\n ,"]
73 if {$chars !
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/tools/
H A DuniClass.tcl16 global ranges numranges chars numchars
25 append chars [format "0x%04x, " $first]
28 append chars "\n "
31 append chars [format "0x%04x, " $last]
34 append chars "\n "
41 global first last ranges numranges chars numchars
47 set chars " "
66 set chars [string trimright $chars "\t\n ,"]
73 if {$chars !
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSStringRefPrivate.h35 JS_EXPORT JSStringRef JSStringCreateWithCharactersNoCopy(const JSChar* chars, size_t numChars);
/macosx-10.9.5/emacs-92/emacs/src/
H A Dfilemode.c211 rwx (bits, chars)
213 char *chars;
215 chars[0] = (bits & S_IRUSR) ? 'r' : '-';
216 chars[1] = (bits & S_IWUSR) ? 'w' : '-';
217 chars[2] = (bits & S_IXUSR) ? 'x' : '-';
224 setst (bits, chars)
226 char *chars;
231 if (chars[3] != 'x')
233 chars[3] = 'S';
235 chars[
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebNSAttributedStringExtras.mm44 unichar chars[2];
46 chars[0] = NSAttachmentCharacter;
47 chars[1] = 0;
48 attachmentCharString = [[NSString alloc] initWithCharacters:chars length:1];
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/
H A DHasher.pm40 my @chars = split(/ */, $_[0]);
43 # (above) is to hash UTF-16 characters, we just treat the 8-bit chars as if they
49 my $l = scalar @chars; #I wish this was in Ruby --- Maks
57 $hash += ord($chars[$s]);
58 my $tmp = leftShift(ord($chars[$s+1]), 11) ^ $hash;
67 $hash += ord($chars[$s]);
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dfilemode.c217 setst (unsigned long bits ATTRIBUTE_UNUSED, char *chars ATTRIBUTE_UNUSED)
222 if (chars[3] != 'x')
224 chars[3] = 'S';
226 chars[3] = 's';
232 if (chars[6] != 'x')
234 chars[6] = 'S';
236 chars[6] = 's';
242 if (chars[9] != 'x')
244 chars[9] = 'T';
246 chars[
[all...]
/macosx-10.9.5/dtrace-118.1/test/tst/common/aggs/
H A Dtst.order.d60 @chars['a'] = sum(1);
61 @chars['s'] = sum(1);
62 @chars['d'] = sum(1);
63 @chars['f'] = sum(1);
74 printa("%c\n", @chars);
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/util/
H A DUtfOps.java48 * @param chars the characters that would be converted.
52 public static int getByteLength(char[] chars) { argument
54 return getByteLength(chars, 0, chars.length);
61 * @param chars the characters that would be converted.
69 public static int getByteLength(char[] chars, int offset, int length) { argument
74 int c = chars[i];
152 * @param chars the destination array
154 * @param charOffset the offset into chars at which to begin the copy
156 * @param len the amount of information to copy into chars
167 bytesToChars(byte[] bytes, int byteOffset, char[] chars, int charOffset, int len, boolean isByteLen) argument
218 charsToBytes(char[] chars, int charOffset, byte[] bytes, int byteOffset, int charLength) argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/Array/
H A Darray-001.js74 var chars = str.split('');
75 chars = chars.sort();
76 return chars.join('');
/macosx-10.9.5/ncurses-42/ncurses/ncurses/widechar/
H A Dlib_key_name.c51 my_cchar.chars[0] = c;
52 my_cchar.chars[1] = L'\0';
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DTextBoundaries.cpp65 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward) argument
67 TextBreakIterator* it = wordBreakIterator(chars, len);
74 if (position < len && isAlphanumeric(chars[position - 1]))
86 if (position > 0 && isAlphanumeric(chars[position]))
96 void findWordBoundary(const UChar* chars, int len, int position, int* start, int* end) argument
98 TextBreakIterator* it = wordBreakIterator(chars, len);
/macosx-10.9.5/libxml2-26/libxml2/doc/examples/
H A Dparse4.c46 char chars[4]; local
54 res = readPacket(chars, 4);
68 chars, res, filename);
79 while ((res = readPacket(chars, 4)) > 0) {
80 xmlParseChunk(ctxt, chars, res, 0);
86 xmlParseChunk(ctxt, chars, 0, 1);
/macosx-10.9.5/ICU-511.35/icuSources/extra/scrptrun/
H A Dscrptrun.h38 ScriptRun(const UChar chars[], int32_t length);
40 ScriptRun(const UChar chars[], int32_t start, int32_t length);
46 void reset(const UChar chars[], int32_t start, int32_t length);
105 inline ScriptRun::ScriptRun(const UChar chars[], int32_t length) argument
107 reset(chars, 0, length);
110 inline ScriptRun::ScriptRun(const UChar chars[], int32_t start, int32_t length) argument
112 reset(chars, start, length);
146 inline void ScriptRun::reset(const UChar chars[], int32_t start, int32_t length) argument
148 charArray = chars;
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DGXLayoutEngine.cpp31 le_int32 GXLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
37 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
42 mapCharsToGlyphs(chars, offset, count, FALSE, rightToLeft, glyphStorage, success);
54 void GXLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, argument
61 if (chars == NULL || offset < 0 || count < 0) {
H A DGXLayoutEngine2.cpp29 le_int32 GXLayoutEngine2::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
35 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
40 mapCharsToGlyphs(chars, offset, count, rightToLeft, rightToLeft, glyphStorage, success);
51 void GXLayoutEngine2::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, argument
58 if (chars == NULL || offset < 0 || count < 0) {
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/markup/
H A Dto_bs.rb5 # This formatter won't work on 1.8.6 because it lacks String#chars.
66 return string unless string.respond_to? :chars # your ruby is lame
68 chars = if @in_b then
69 string.chars.map do |char| "#{char}\b#{char}" end
71 string.chars.map do |char| "_\b#{char}" end
74 chars.join
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DTupleOutput.java355 * @param chars is the array of values to be written.
359 * @throws NullPointerException if the chars parameter is null.
361 public final TupleOutput writeBytes(char[] chars) { argument
363 for (int i = 0; i < chars.length; i++) {
364 writeFast((byte) chars[i]);
374 * @param chars is the array of characters to be written.
378 * @throws NullPointerException if the chars parameter is null.
380 public final TupleOutput writeChars(char[] chars) { argument
382 for (int i = 0; i < chars.length; i++) {
383 writeFast((byte) (chars[
402 writeString(char[] chars) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/text/mac/
H A DTextBoundaries.mm33 void findWordBoundary(const UChar* chars, int len, int position, int* start, int* end)
35 NSString* string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(chars)
45 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward)
47 NSString* string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(chars)
/macosx-10.9.5/CF-855.17/
H A DCFStringEncodings.c109 9/18/98 __CFStringDecodeByteStream now avoids to allocate buffer if buffer->chars is not NULL
130 const uint8_t *chars = (const uint8_t *)bytes; local
131 const uint8_t *end = chars + len;
170 buffer->chars.unicode = (UniChar *)src;
187 if (NULL == buffer->chars.ascii) { // we never reallocate when buffer is supplied
189 buffer->chars.ascii = (UInt8 *)CFAllocatorAllocate(buffer->allocator, (buffer->numChars * sizeof(uint8_t)), 0);
190 if (!buffer->chars.ascii) goto memoryErrorExit;
193 buffer->chars.ascii = (uint8_t *)buffer->localBuffer;
196 dst = buffer->chars.ascii;
206 if (NULL == buffer->chars
[all...]

Completed in 905 milliseconds

1234567891011>>