HomeSort by relevance Sort by last modified time
    Searched full:bltin (Results 1 - 17 of 17) sorted by null

  /ndk/sources/host-tools/nawk-20071023/
lex.c 50 { "atan2", FATAN, BLTIN },
54 { "cos", FCOS, BLTIN },
59 { "exp", FEXP, BLTIN },
60 { "fflush", FFLUSH, BLTIN },
69 { "int", FINT, BLTIN },
70 { "length", FLENGTH, BLTIN },
71 { "log", FLOG, BLTIN },
77 { "rand", FRAND, BLTIN },
79 { "sin", FSIN, BLTIN },
82 { "sqrt", FSQRT, BLTIN },
    [all...]
maketab.c 101 { BLTIN, "bltin", "bltin" },
awkgram.y 55 %token <i> ARG BLTIN BREAK CLOSE CONTINUE DELETE DO EXIT FOR FUNC
82 %left ARG BLTIN BREAK CALL CLOSE CONTINUE DELETE DO EXIT FOR FUNC
362 | BLTIN '(' ')' { $$ = op2(BLTIN, itonp($1), rectonode()); }
363 | BLTIN '(' patlist ')' { $$ = op2(BLTIN, itonp($1), $3); }
364 | BLTIN { $$ = op2(BLTIN, itonp($1), rectonode()); }
proto.h 188 extern Cell *bltin(Node **, int);
FIXES 548 fixed call to time in run.c (bltin); arg is time_t *.
881 all the built-in arithmetic functions in bltin().
882 A warning is generated if a bltin() is called with
    [all...]
run.c 1464 Cell *bltin(Node **a, int n) \/* builtin functions. a[0] is type, a[1] is arg list *\/ function
    [all...]
  /system/core/sh/
exec.c 435 int (*bltin)(int,char **);
497 (bltin = find_builtin(name)) != 0)
517 if ((bltin = find_builtin(name)) == 0)
602 cmdp->param.bltin = bltin;
658 cmdp->param.bltin = bp->builtin;
699 int bltin; local
705 bltin = -1;
716 if (*new == '%' && bltin < 0 && prefix("builtin", new + 1))
717 bltin = idx
    [all...]
Android.mk 29 bltin/echo.c \
eval.c 784 cmdentry.u.bltin = bltincmd;
808 cmdentry.u.bltin != bltincmd)
814 cmdentry.u.bltin = typecmd;
833 || cmdentry.u.bltin == dotcmd
834 || cmdentry.u.bltin == evalcmd))) {
979 mode = (cmdentry.u.bltin == execcmd) ? 0 : REDIR_PUSH;
995 if (path != pathval() && (cmdentry.u.bltin == hashcmd ||
996 cmdentry.u.bltin == typecmd)) {
1019 exitstatus = cmdentry.u.bltin(argc, argv);
1046 if (cmdentry.u.bltin != execcmd
    [all...]
exec.h 49 int (*bltin)(int, char**); member in union:cmdentry::param
TOUR 17 DIRECTORIES: The subdirectory bltin contains commands which can
33 bltin/mkexpr unary_op binary_op operators.h operators.c
304 bltinlib.a which can be linked with ash. The header file bltin.h
309 before bltin.h is included; bltin.h will #undef main if the pro-
  /system/core/sh/bltin/
bltin.h 1 /* $NetBSD: bltin.h,v 1.11 2003/08/07 09:05:40 agc Exp $ */
34 * @(#)bltin.h 8.1 (Berkeley) 5/31/93
echo.c 56 #include "bltin.h"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pydoc.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pydoc.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py 11 'bltin-code-objects': '\nCode Objects\n************\n\nCode objects are used by the implementation to represent "pseudo-\ncompiled" executable Python code such as a function body. They differ\nfrom function objects because they don\'t contain a reference to their\nglobal execution environment. Code objects are returned by the built-\nin ``compile()`` function and can be extracted from function objects\nthrough their ``func_code`` attribute. See also the ``code`` module.\n\nA code object can be executed or evaluated by passing it (instead of a\nsource string) to the ``exec`` statement or the built-in ``eval()``\nfunction.\n\nSee *The standard type hierarchy* for more information.\n',
12 'bltin-ellipsis-object': '\nThe Ellipsis Object\n*******************\n\nThis object is used by extended slice notation (see *Slicings*). It\nsupports no special operations. There is exactly one ellipsis object,\nnamed ``Ellipsis`` (a built-in name).\n\nIt is written as ``Ellipsis``. When in a subscript, it can also be\nwritten as ``...``, for example ``seq[...]``.\n',
13 'bltin-null-object': "\nThe Null Object\n***************\n\nThis object is returned by functions that don't explicitly return a\nvalue. It supports no special operations. There is exactly one null\nobject, named ``None`` (a built-in name).\n\nIt is written as ``None``.\n",
14 'bltin-type-objects': "\nType Objects\n************\n\nType objects represent the various object types. An object's type is\naccessed by the built-in function ``type()``. There are no special\noperations on types. The standard module ``types`` defines names for\nall standard built-in types.\n\nTypes are written like this: ``<type 'int'>``.\n",
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py 11 'bltin-code-objects': '\nCode Objects\n************\n\nCode objects are used by the implementation to represent "pseudo-\ncompiled" executable Python code such as a function body. They differ\nfrom function objects because they don\'t contain a reference to their\nglobal execution environment. Code objects are returned by the built-\nin ``compile()`` function and can be extracted from function objects\nthrough their ``func_code`` attribute. See also the ``code`` module.\n\nA code object can be executed or evaluated by passing it (instead of a\nsource string) to the ``exec`` statement or the built-in ``eval()``\nfunction.\n\nSee *The standard type hierarchy* for more information.\n',
12 'bltin-ellipsis-object': '\nThe Ellipsis Object\n*******************\n\nThis object is used by extended slice notation (see *Slicings*). It\nsupports no special operations. There is exactly one ellipsis object,\nnamed ``Ellipsis`` (a built-in name).\n\nIt is written as ``Ellipsis``. When in a subscript, it can also be\nwritten as ``...``, for example ``seq[...]``.\n',
13 'bltin-null-object': "\nThe Null Object\n***************\n\nThis object is returned by functions that don't explicitly return a\nvalue. It supports no special operations. There is exactly one null\nobject, named ``None`` (a built-in name).\n\nIt is written as ``None``.\n",
14 'bltin-type-objects': "\nType Objects\n************\n\nType objects represent the various object types. An object's type is\naccessed by the built-in function ``type()``. There are no special\noperations on types. The standard module ``types`` defines names for\nall standard built-in types.\n\nTypes are written like this: ``<type 'int'>``.\n",
    [all...]

Completed in 420 milliseconds