HomeSort by relevance Sort by last modified time
    Searched defs:term (Results 51 - 75 of 195) sorted by null

1 23 4 5 6 7 8

  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
parse.go 783 // expr = term | term ('+' | '-' | '|' | '^') term.
785 value := p.term()
790 value += p.term()
793 value -= p.term()
796 value |= p.term()
799 value ^= p.term()
827 // term = factor | factor ('*' | '/' | '%' | '>>' | '<<' | '&') factor
828 func (p *Parser) term() uint64 func
    [all...]
  /prebuilts/go/darwin-x86/src/text/template/parse/
parse.go 621 // term .Field*
623 // a term possibly followed by field accesses.
626 node := t.term()
635 // Compatibility with original API: If the term is of type NodeField
646 t.errorf("unexpected . after term %q", node.String())
654 // term:
661 // A term is a simple "expression".
662 // A nil return means the next item is not a term.
663 func (t *Tree) term() Node { func
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
parse.go 783 // expr = term | term ('+' | '-' | '|' | '^') term.
785 value := p.term()
790 value += p.term()
793 value -= p.term()
796 value |= p.term()
799 value ^= p.term()
827 // term = factor | factor ('*' | '/' | '%' | '>>' | '<<' | '&') factor
828 func (p *Parser) term() uint64 func
    [all...]
  /prebuilts/go/linux-x86/src/text/template/parse/
parse.go 621 // term .Field*
623 // a term possibly followed by field accesses.
626 node := t.term()
635 // Compatibility with original API: If the term is of type NodeField
646 t.errorf("unexpected . after term %q", node.String())
654 // term:
661 // A term is a simple "expression".
662 // A nil return means the next item is not a term.
663 func (t *Tree) term() Node { func
  /external/autotest/client/deps/fakemodem/src/
fakemodem.c 97 gsize len, term; local
106 while (g_io_channel_read_line (pf, &line, &len, &term, error) ==
109 line[term] = '\0';
145 g_io_channel_read_line (pf, &line, &len, &term, error);
146 line[term] = '\0';
355 gsize term; local
383 status = g_io_channel_read_line (source, &line, NULL, &term, &error);
386 line[term] = '\0';
391 rval = write (masterfd, line, term);
392 assert(term == rval)
    [all...]
  /external/ltp/testcases/kernel/fs/ftest/
ftest07.c 46 * line. Use with "term mode".
91 static void term(int sig);
170 if (sigset(SIGTERM, term) == SIG_ERR) {
609 /* term()
613 static void term(int sig LTP_ATTRIBUTE_UNUSED) function
617 tst_resm(TINFO, "\tterm -[%d]- got sig term.", getpid());
  /external/ltp/testcases/kernel/fs/inode/
inode02.c 28 Run with TERM mode.
120 int term();
126 if (sigset(SIGTERM, (void (*)())term) == SIG_ERR) {
795 int term() function
  /external/ltp/testcases/misc/math/fptests/
fptest01.c 76 static int term(void);
114 term();
152 static int term(void) function
fptest02.c 31 * "term()" should come out to a known value. If this happens this
76 static int term(void);
113 term();
151 static int term(void) function
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_util.h 196 term(head) { }
200 virtual bool end() const { return pos == term; }
212 Item *term; member in class:nv50_ir::DLList::Iterator
  /frameworks/compile/mclinker/tools/mcld/
Main.cpp 139 const char* term = getenv("TERM"); local
140 return term && (0 != strcmp(term, "dumb"));
    [all...]
  /cts/tools/dasm/src/java_cup/
Main.java 452 terminal term; local
458 term = (terminal)t.nextElement();
461 if (term == terminal.EOF) continue;
464 if (term == terminal.error) continue;
467 if (term.use_count() == 0)
473 System.err.println("Warning: Terminal \"" + term.name() +
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
graminit.h 62 #define term 315 macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
graminit.h 62 #define term 315 macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
symbol.py 72 term = 315 variable
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
antlr.c 1342 char *t=NULL; TCnode *e; int go=1,tok,totok; TermEntry *p, *term, *toterm; local
1979 TermEntry *term; local
    [all...]
  /external/ImageMagick/MagickCore/
pixel.c 275 term[9];
305 term[0]=1.0;
306 term[1]=4.0*frexp(x,&exponent)-3.0;
307 term[2]=2.0*term[1]*term[1]-term[0];
308 term[3]=2.0*term[1]*term[2]-term[1]
269 term[9]; local
389 term[9]; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
ChineseCalendar.java 674 * Return the major solar term on or after December 15 of the given
732 * Return the major solar term on or before a given date. This
742 int term = ((int) Math.floor(6 * astro.getSunLongitude() / Math.PI) + 2) % 12; local
743 if (term < 1) {
744 term += 12;
746 return term;
750 * Return true if the given month lacks a major solar term.
    [all...]
  /external/icu/icu4c/source/i18n/
chnsecal.cpp 519 * Return the major solar term on or after December 15 of the given
593 * Return the major solar term on or before a given date. This
610 int32_t term = ( ((int32_t)(6 * solarLongitude / CalendarAstronomer::PI)) + 2 ) % 12; local
611 if (term < 1) {
612 term += 12;
614 return term;
618 * Return true if the given month lacks a major solar term.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ChineseCalendar.java 692 * Return the major solar term on or after December 15 of the given
750 * Return the major solar term on or before a given date. This
760 int term = ((int) Math.floor(6 * astro.getSunLongitude() / Math.PI) + 2) % 12; local
761 if (term < 1) {
762 term += 12;
764 return term;
768 * Return true if the given month lacks a major solar term.
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_cfg.c 1659 char term[UT_LINESIZE]; local
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
tcd.h 73 OPJ_UINT32 term : 1; member in struct:opj_tcd_pass
  /external/python/cpython2/Include/
graminit.h 62 #define term 315 macro
  /external/python/cpython2/Lib/
symbol.py 72 term = 315 variable
  /external/selinux/policycoreutils/newrole/
newrole.c 469 * TERM, DISPLAY and XAUTHORITY - if they are set, preserve values
481 char *term = NULL; /* temporary container */ local
491 term_env = getenv("TERM");
497 term = strdup(term_env);
502 if ((term_env && !term) || (display_env && !display) ||
515 if (term)
516 rc |= setenv("TERM", term, 1);
527 free(term);
    [all...]

Completed in 1840 milliseconds

1 23 4 5 6 7 8