39+ results for 'isspace (int)' (0 ms)
Not the results you expected?
utstrsuppt.c (https://gitlab.com/Skylake/Staging) C · 428 lines
src.c (https://github.com/tonyg/emscripten.git) C · 196 lines
23 // These will be compiled as actual function calls.
24 int (*funcs[])(int) = {
25 isascii,
26 islower,
150 printf("\n");
151 printf("isspace(-45): %d\n", isspace(-45));
152 printf("isspace( 10): %d\n", isspace(10));
153 printf("isspace('a'): %d\n", isspace('a'));
154 printf("isspace('A'): %d\n", isspace('A'));
155 printf("isspace('5'): %d\n", isspace('5'));
156 printf("isspace('.'): %d\n", isspace('.'));
157 printf("isspace(183): %d\n", isspace(183));
159 printf("\n");
crn_strutils.cpp (https://gitlab.com/BoTranVan/crunch) C++ · 613 lines
utstrsuppt.c (https://bitbucket.org/updatelee/v4l-updatelee.git) C · 408 lines
fts3_icu.c (https://github.com/nachoalthabe/chromium.git) C · 258 lines
118 sizeof(IcuCursor) + /* IcuCursor */
119 nChar * sizeof(UChar) + /* IcuCursor.aChar[] */
120 (nChar+1) * sizeof(int) /* IcuCursor.aOffset[] */
121 );
122 if( !pCsr ){
198 int iWhite = iStart;
199 U8_NEXT(pCsr->aChar, iWhite, pCsr->nChar, c);
200 if( u_isspace(c) ){
201 iStart = iWhite;
202 }else{
fts2_icu.c (https://github.com/nachoalthabe/chromium.git) C · 258 lines
118 sizeof(IcuCursor) + /* IcuCursor */
119 nChar * sizeof(UChar) + /* IcuCursor.aChar[] */
120 (nChar+1) * sizeof(int) /* IcuCursor.aOffset[] */
121 );
122 if( !pCsr ){
198 int iWhite = iStart;
199 U16_NEXT(pCsr->aChar, iWhite, pCsr->nChar, c);
200 if( u_isspace(c) ){
201 iStart = iWhite;
202 }else{
src.c (https://github.com/reobwuein/emscripten.git) C · 194 lines
124 printf("isxdigit('a'): %d\n", ((*__ctype_b_loc ())[(int) (('a'))] & (unsigned short int) _ISxdigit) != 0);
125 printf("isxdigit('A'): %d\n", ((*__ctype_b_loc ())[(int) (('A'))] & (unsigned short int) _ISxdigit) != 0);
126 printf("isxdigit('5'): %d\n", ((*__ctype_b_loc ())[(int) (('5'))] & (unsigned short int) _ISxdigit) != 0);
148 printf("\n");
149 printf("isspace(-45): %d\n", ((*__ctype_b_loc ())[(int) ((-45))] & (unsigned short int) _ISspace) != 0);
150 printf("isspace( 10): %d\n", ((*__ctype_b_loc ())[(int) ((10))] & (unsigned short int) _ISspace) != 0);
151 printf("isspace('a'): %d\n", ((*__ctype_b_loc ())[(int) (('a'))] & (unsigned short int) _ISspace) != 0);
152 printf("isspace('A'): %d\n", ((*__ctype_b_loc ())[(int) (('A'))] & (unsigned short int) _ISspace) != 0);
153 printf("isspace('5'): %d\n", ((*__ctype_b_loc ())[(int) (('5'))] & (unsigned short int) _ISspace) != 0);
154 printf("isspace('.'): %d\n", ((*__ctype_b_loc ())[(int) (('.'))] & (unsigned short int) _ISspace) != 0);
155 printf("isspace(183): %d\n", ((*__ctype_b_loc ())[(int) ((183))] & (unsigned short int) _ISspace) != 0);
157 printf("\n");
wrapfunc.c (https://github.com/chrishaukap/GameDev.git) C · 518 lines
124 level += indent;
125 while ((c = Getc(str)) != EOF) {
126 if (!isspace(c)) {
127 Ungetc(c, str);
128 break;
190 }
191 } else {
192 if (!empty || !isspace(c)) {
193 Putc(c, ts);
194 empty = 0;
264 level += indent;
265 while ((c = Getc(str)) != EOF) {
266 if (!isspace(c)) {
267 Ungetc(c, str);
268 break;
dotlex.c (https://bitbucket.org/akristmann/custom_build.git) C · 360 lines
30 int line_number;
32 static char *lex_gets (int);
33 static int lex_token (char *);
34 static void error_context (void);
197 return;
198 fprintf (stderr, "context: ");
199 for (p = lexptr - 1; (p > lexbuf) && (isspace (*p) == FALSE); p--)
200 ;
201 for (q = lexbuf; q < p; q++)
212 static char *skip_wscomments (char *p) {
213 do {
214 while (isspace (*p))
215 p++;
216 while (in_comment && p[0]) {
tkObj.c (https://gitlab.com/OpenSourceMirror/sourcenav) C · 660 lines
35 #define GET_SIMPLEPIXEL(objPtr) \
36 ((int) (objPtr)->internalRep.twoPtrValue.ptr1)
38 #define SET_COMPLEXPIXEL(objPtr, repPtr) \
168 }
169 if (d < 0) {
170 pixelPtr->returnValue = (int) (d - 0.5);
171 } else {
172 pixelPtr->returnValue = (int) (d + 0.5);
298 return TCL_ERROR;
299 }
300 while ((*rest != '\0') && isspace(UCHAR(*rest))) {
301 rest++;
302 }
os_xml.c (https://gitlab.com/Blueprint-Marketing/ossec-hids) C · 536 lines
224 }
226 else if ((location == 0) && ((c == _R_CONFE) || isspace(c))) {
227 int _ge = 0;
228 int _ga = 0;
239 }
240 _currentlycont = _lxml->cur - 1;
241 if (isspace(c)) {
242 if ((_ga = _getattributes(fp, parent, _lxml)) < 0) {
243 return (-1);
369 /* Allocate for the "check" */
370 tmp2 = (int *) realloc(_lxml->ck, (_lxml->cur + 1) * sizeof(int));
371 if (tmp2 == NULL) {
372 goto fail;
ext_icu_uchar.php (https://gitlab.com/Blueprint-Marketing/hhvm) PHP · 619 lines
uint256.h (https://github.com/khalahan/namecoin.git) C Header · 765 lines
Font.hs (https://bitbucket.org/jmelo_lyncode/thesis.git) Haskell · 360 lines
168 instance Read XFont where
169 -- Internal.
170 readsPrec p str = [(cread (dropWhile isSpace str),[])]
171 where
172 cread s@('-':str) = toXFont (simpleSplit (== '-') str)
198 -- Internal.
199 readsPrec p b =
200 case dropWhile (isSpace) (map toLower b) of
201 'n':'o':'r':'m':'a':'l':xs -> [(NormalWeight,xs)]
202 'm':'e':'d':'i':'u':'m':xs -> [(Medium,xs)]
237 -- Internal.
238 readsPrec p b =
239 case dropWhile (isSpace) (map toLower b) of
240 'l':'u':'c':'i':'d':'a':xs -> [(Lucida,xs)]
241 't':'i':'m':'e':'s':xs -> [(Times,xs)]
axis_label_rotated.php (https://github.com/fusenigk/mantisbt-1.git) PHP · 512 lines
20 *
21 * // Increase axis space
22 * $chart->xAxis->axisSpace = .2;
23 * </code>
24 *
96 }
98 $reducement = (int) ( $propertyValue - $propertyValue % 360 );
99 $this->properties['angle'] = (float) $propertyValue - $reducement;
100 break;
255 protected function calculateLabelLength( ezcGraphCoordinate $start, ezcGraphCoordinate $end, $xSpace, $ySpace, ezcGraphBoundings $axisBoundings )
256 {
257 $axisSpaceFactor = abs(
258 ( $this->direction->x == 0 ? 0 :
259 $this->direction->x * $ySpace / $axisBoundings->width ) +
pystring.cpp (https://github.com/mgmt1969/oiio.git) C++ · 1056 lines
Helpers.cs (https://github.com/dotnet/roslyn.git) C# · 172 lines
138 {
139 if (argCount == 1 ||
140 IsSpaceChar(invocation.Arguments[1]))
141 {
142 var alignmentOp = invocation.Arguments[0].Value;
167 => invocation.Instance != null && !invocation.Instance.IsImplicit;
169 private static bool IsSpaceChar(IArgumentOperation argument)
170 => argument.Value.ConstantValue is { HasValue: true, Value: ' ' };
171 }
PCollection_HExtendedString.cxx (https://github.com/jehc/MondocosmOS.git) C++ · 583 lines
304 if (!IsAscii()) Standard_OutOfRange::Raise();
305 for ( i = 1 ; i <= Length() ; i ++) {
306 if (!IsSpace((Standard_Character)Value(i))) break;
307 }
308 if( i > 1 ) Remove(1,i-1);
440 if (! IsAscii()) Standard_OutOfRange::Raise();
441 for ( i = Length() ; i >= 1 ; i --) {
442 if (!IsSpace((Standard_Character)Value(i))) break;
443 }
444 if( i < Length() ) Remove(i+1,Length());
buffer_tests.py (https://gitlab.com/envieidoc/Clover) Python · 206 lines
48 self.assertRaises(TypeError, self.marshal(b'abc').istitle, 42)
50 def test_isspace(self):
51 self.assertFalse(self.marshal(b'').isspace())
52 self.assertFalse(self.marshal(b'a').isspace())
53 self.assertTrue(self.marshal(b' ').isspace())
54 self.assertTrue(self.marshal(b'\t').isspace())
55 self.assertTrue(self.marshal(b'\r').isspace())
56 self.assertTrue(self.marshal(b'\n').isspace())
57 self.assertTrue(self.marshal(b' \t\r\n').isspace())
58 self.assertFalse(self.marshal(b' \t\r\na').isspace())
59 self.assertRaises(TypeError, self.marshal(b'abc').isspace, 42)
ctype.h (https://bitbucket.org/bohlooli/csipsimple2.git) C Header · 175 lines
46 * @return Non-zero value if either isalpha or isdigit is true for c.
47 */
48 PJ_INLINE(int) pj_isalnum(unsigned char c) { return isalnum(c); }
50 /**
55 * alphabetic character.
56 */
57 PJ_INLINE(int) pj_isalpha(unsigned char c) { return isalpha(c); }
59 /**
82 * a space character (0x09 - 0x0D or 0x20).
83 */
84 PJ_INLINE(int) pj_isspace(unsigned char c) { return isspace(c); }
86 /**
sim.c (https://github.com/i-like-okasi-very-much/aiueo.git) C · 526 lines
strings.cpp (https://github.com/boq/dirtsand.git) C++ · 592 lines
427 const chr8_t* scanp = cptr;
428 while (*scanp && max) {
429 if (!separator && isspace(*scanp)) {
430 subs.push_back(DS::String::FromUtf8(cptr, scanp - cptr));
431 --max;
432 while (*scanp && isspace(*scanp))
433 ++scanp;
434 cptr = scanp;
508 char* startp = strbuf;
509 while (isspace(*startp))
510 ++startp;
511 char* scanp;
miolexscan.in (https://bitbucket.org/yingted/openturing.git) Autoconf · 958 lines
340 int cnt;
342 for (cnt = 0 ; cnt < (int) pmLexRecord -> table -> numNotEOS ; cnt++)
343 {
344 if (pmChar == pmLexRecord -> table -> notEOS [cnt][0])
532 char myChar = pmLexRecord -> line [pmLexRecord -> pos];
534 if (!isspace(myChar) || (myChar == NL))
535 {
536 myToken [myPos] = EOS;
588 UINT cnt;
590 if (isspace (pmLexRecord -> line [pmLexRecord -> pos + 1]))
591 {
592 return 0;
combine_lwa_cmd.c (https://github.com/kstovall/psrfits_utils.git) C · 788 lines
85 /***** check for surplus non-whitespace */
86 while( isspace((int) *end) ) end+=1;
87 if( *end ) goto nothingFound;
156 /***** check for surplus non-whitespace */
157 while( isspace((int) *end) ) end+=1;
158 if( *end ) break;
197 /***** check for surplus non-whitespace */
198 while( isspace((int) *end) ) end+=1;
199 if( *end ) goto nothingFound;
parsing.py (https://bitbucket.org/lsjcp/jornada-api.git) Python · 250 lines
30 if val != None:
31 val = val.strip()
32 if val != "" and not val.isspace():
33 if len(val)<2:
34 mem = val
54 if val != None:
55 val = val.strip()
56 if val != "" and not val.isspace():
57 rc+=val + " "
58 else:
61 if val != None:
62 val = val.strip()
63 if val != "" and not val.isspace():
64 rc+= val + " "
65 else:
Lexer.java (https://gitlab.com/essere.lab.public/qualitas.class-corpus) Java · 482 lines
73 boolean calcIndent = false;
75 while (Character.isSpaceChar(c) || (c == '\n')) {
76 if (calcIndent) {
77 indent++;
393 char c = getSymbol();
395 while (Character.isSpaceChar(c) || (c == '\n')) {
396 if (c == '\n') {
397 putBackSymbol(c);
411 char c = getSymbol();
412 while (Character.isSpaceChar(c) || (c == '\n')) {
413 if (c == '\n') {
414 break;
analysis.c (https://github.com/ekcell/lovdbyless.git) C · 1552 lines
33 return tk_set(tk, start, (int)(end - start),
34 (int)(start - text), (int)(end - text), pos_inc);
35 }
156 {
157 int num_bytes;
158 if ((num_bytes = (int)mbrtowc(wchr, s, MB_CUR_MAX, state)) < 0) {
159 const char *t = s;
160 do {
513 *w = 0;
514 ts->t = t;
515 return w_tk_set(&(CTS(ts)->token), wbuf, (int)(start - ts->text),
516 (int)(t - ts->text), 1);
618 }
620 i = (int)(t - ts->t);
621 if (i > MAX_WORD_SIZE) {
622 i = MAX_WORD_SIZE - 1;
strutilascii.c (https://gitlab.com/oyvholm/mc) C · 783 lines
119 static int
120 str_ascii_isspace (const char *text)
121 {
122 return g_ascii_isspace ((gchar) text[0]);
272 remain = sizeof (result);
274 if ((int) length <= width)
275 {
276 switch (HIDE_FIT (just_mode))
741 result.cnext_noncomb_char = str_ascii_cnext_noncomb_char;
742 result.cprev_noncomb_char = str_ascii_cprev_noncomb_char;
743 result.char_isspace = str_ascii_isspace;
744 result.char_ispunct = str_ascii_ispunct;
745 result.char_isalnum = str_ascii_isalnum;
lexer.c (https://bitbucket.org/hyades/compiler.git) C · 1210 lines
IndentingTransformerImpl.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 353 lines
✨ Summary
This Java code implements a custom XML parser that extends the standard SAX (Simple API for XML) parser. It adds features such as indentation, whitespace trimming, and handling of specific XML elements like CDATA sections and comments. The parser outputs white space to reflect the current indentation level, making the parsed XML more readable.
This Java code implements a custom XML parser that extends the standard SAX (Simple API for XML) parser. It adds features such as indentation, whitespace trimming, and handling of specific XML elements like CDATA sections and comments. The parser outputs white space to reflect the current indentation level, making the parsed XML more readable.
225 while(start < end && Character.isWhitespace(array[start])) {
226 if(Character.isSpaceChar(array[start]) || array[start] == '\t') {
227 start++;
228 } else if(stripNewLineFromStart) {
238 while(start < end && Character.isWhitespace(array[end - 1])) {
239 if(Character.isSpaceChar(array[end - 1]) || array[start] == '\t') {
240 end--;
241 } else {
axis_label_rotated.php (https://github.com/Proudio-Interactive/phpUnderControl.git) PHP · 433 lines
20 *
21 * // Increase axis space
22 * $chart->xAxis->axisSpace = .2;
23 * </code>
24 *
96 }
98 $reducement = (int) ( $propertyValue - $propertyValue % 360 );
99 $this->properties['angle'] = (float) $propertyValue - $reducement;
100 break;
153 // Get axis space
154 $gridBoundings = null;
155 list( $xSpace, $ySpace ) = $this->getAxisSpace( $renderer, $boundings, $axis, $innerBoundings, $gridBoundings );
157 // Determine optimal angle if none specified
token.c (https://bitbucket.org/becoggins/nmr_wash.git) C · 944 lines
FileTokenizer.cpp (https://bitbucket.org/pshriwise/moab.git) C++ · 445 lines
71 // If the current character is not a space, we've found a token.
72 if( !isspace( *nextToken ) ) break;
74 // If the current space character is a newline,
82 // token.
83 char* result = nextToken;
84 while( nextToken != bufferEnd && !isspace( static_cast< unsigned char >( *nextToken ) ) )
85 ++nextToken;
104 // Continue to advance nextToken until we find the space
105 // terminating the token.
106 while( nextToken != bufferEnd && !isspace( *nextToken ) )
107 ++nextToken;
color.c (https://github.com/mstsirkin/linux.git) C · 324 lines
13 int i;
15 for (i = 0; i < (int)ARRAY_SIZE(color_names); i++) {
16 const char *str = color_names[i];
17 if (!strncasecmp(name, str, len) && !str[len])
64 int val, wordlen = 0;
66 while (len > 0 && !isspace(word[wordlen])) {
67 wordlen++;
68 len--;
71 ptr = word + wordlen;
72 while (len > 0 && isspace(*ptr)) {
73 ptr++;
74 len--;
axis_label_rotated.php (https://github.com/proyectoalba/alba.git) PHP · 429 lines
21 *
22 * // Increase axis space
23 * $chart->xAxis->axisSpace = .2;
24 * </code>
25 *
96 }
98 $reducement = (int) ( $propertyValue - $propertyValue % 360 );
99 $this->properties['angle'] = (float) $propertyValue - $reducement;
100 break;
147 {
148 $gridBoundings = new ezcGraphBoundings(
149 $boundings->x0 + $renderer->xAxisSpace,
150 $boundings->y0 + $renderer->yAxisSpace,
151 $boundings->x1 - $renderer->xAxisSpace,
152 $boundings->y1 - $renderer->yAxisSpace
axis.php (https://github.com/proyectoalba/alba.git) PHP · 438 lines
13 * @property float $nullPosition
14 * The position of the null value.
15 * @property float $axisSpace
16 * Percent of the chart space used to display axis labels and
17 * arrowheads instead of data values.
74 {
75 $this->properties['nullPosition'] = false;
76 $this->properties['axisSpace'] = .1;
77 $this->properties['majorGrid'] = false;
78 $this->properties['minorGrid'] = false;
130 $this->properties['nullPosition'] = (float) $propertyValue;
131 break;
132 case 'axisSpace':
133 if ( !is_numeric( $propertyValue ) ||
134 ( $propertyValue < 0 ) ||
lobject.c (https://github.com/Fleurer/lua_5.1.4_commentary.git) C · 214 lines
buffer.c (https://bitbucket.org/ultra_iter/vim-qt.git) C · 5722 lines
486 if (usingSunWorkShop)
487 workshop_file_closed_lineno((char *)buf->b_ffname,
488 (int)buf->b_last_cursor.lnum);
489 #endif
490 vim_free(buf->b_ffname);
894 if (bnr == curbuf->b_fnum)
895 do_current = bnr;
896 else if (do_buffer(command, DOBUF_FIRST, FORWARD, (int)bnr,
897 forceit) == OK)
898 ++deleted;
swigmain.cxx
(https://swig.svn.sourceforge.net/svnroot/swig)
C++ · 206 lines
✨ Summary
This C++ code is the main entry point for SWIG, a software development tool that generates wrappers for various programming languages. It collects command line options, registers built-in language modules, and instantiates a module for code generation. The program then starts parsing the input files and generating the corresponding wrappers.
This C++ code is the main entry point for SWIG, a software development tool that generates wrappers for various programming languages. It collects command line options, registers built-in language modules, and instantiates a module for code generation. The program then starts parsing the input files and generating the corresponding wrappers.