HomeSort by: relevance | last modified time | path
    Searched defs:anything (Results 1 - 4 of 4) sorted by relevancy

  /src/games/hack/
hack.makemon.c 88 boolean anything = (!ptr); local
169 if (anything)
  /src/tests/usr.bin/xlint/lint1/
gcc_cast_union.c 16 union anything { union
62 union anything any;
64 any = (union anything)(_Bool)0;
65 any = (union anything)(char)'\0';
66 any = (union anything)(signed char)'\0';
67 any = (union anything)(unsigned char)'\0';
68 any = (union anything)(short)'\0';
69 any = (union anything)(unsigned short)'\0';
70 any = (union anything)(int)'\0';
71 any = (union anything)(unsigned int)'\0'
    [all...]
msg_247.c 48 * about endianness, but that's not something lint can do anything about. The
354 } anything; typedef in typeref:union:__anon4
360 static anything *p_anything;
375 /* expect+1: warning: invalid combination of 'pointer to union typedef anything' and 'pointer to double', op '=' [124] */
377 /* OK, since the union 'anything' has a 'double' member. */
378 p_anything = (anything *)p_double;
379 /* expect+1: warning: invalid combination of 'pointer to double' and 'pointer to union typedef anything', op '=' [124] */
381 /* OK, since the union 'anything' has a 'double' member. */
388 /* expect+1: warning: invalid combination of 'pointer to function(void) returning void' and 'pointer to union typedef anything', op '=' [124] */
389 p_function = (anything *)p_int
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 159 /// Example: \c DeclarationMatcher(anything()) matches all declarations, e.g.,
167 inline internal::TrueMatcher anything() { return internal::TrueMatcher(); } function in namespace:clang::ast_matchers
372 /// Matches a declaration of anything that could have a name.
723 /// fieldDecl(hasInClassInitializer(anything()))
2109 /// forStmt(hasLoopVariable(anything()))
2123 /// forStmt(hasRangeInit(anything()))
4045 /// `on`, matches the argument directly without stripping away anything.
4127 /// declRefExpr(throughUsingDecl(anything()))
4166 /// declStmt(hasSingleDecl(anything()))
4387 /// 0, varDecl(hasInitializer(anything()))))
    [all...]

Completed in 55 milliseconds