HomeSort by relevance Sort by last modified time
    Searched refs:argcount (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_printf.c 45 int argcount,
55 assert(argcount > 0);
59 for (i = 1; i < argcount; i++) {
70 return LLVMBuildCall(builder, func_printf, args, argcount, "");
180 int argcount; local
183 argcount = lp_get_printf_arg_count(fmt);
184 assert(Elements(params) >= argcount + 1);
187 for (i = 1; i <= argcount; i++) {
193 return lp_build_print_args(gallivm, argcount + 1, params);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_printf.c 45 int argcount,
55 assert(argcount > 0);
59 for (i = 1; i < argcount; i++) {
70 return LLVMBuildCall(builder, func_printf, args, argcount, "");
180 int argcount; local
183 argcount = lp_get_printf_arg_count(fmt);
184 assert(Elements(params) >= argcount + 1);
187 for (i = 1; i <= argcount; i++) {
193 return lp_build_print_args(gallivm, argcount + 1, params);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_new.py 111 argcount = c.co_argcount
126 d = new.code(argcount, nlocals, stacksize, flags, codestring,
131 d = new.code(argcount, nlocals, stacksize, flags, codestring,
137 -argcount, nlocals, stacksize, flags, codestring,
142 argcount, -nlocals, stacksize, flags, codestring,
147 argcount, nlocals, stacksize, flags, codestring,
154 d = new.code(argcount, nlocals, stacksize, flags, codestring,
test_subprocess.py 138 argcount = subprocess.Popen.__init__.__code__.co_argcount
139 too_many_args = [0] * (argcount + 1)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_new.py 111 argcount = c.co_argcount
126 d = new.code(argcount, nlocals, stacksize, flags, codestring,
131 d = new.code(argcount, nlocals, stacksize, flags, codestring,
137 -argcount, nlocals, stacksize, flags, codestring,
142 argcount, -nlocals, stacksize, flags, codestring,
147 argcount, nlocals, stacksize, flags, codestring,
154 d = new.code(argcount, nlocals, stacksize, flags, codestring,
test_subprocess.py 138 argcount = subprocess.Popen.__init__.__code__.co_argcount
139 too_many_args = [0] * (argcount + 1)
    [all...]
  /external/libvterm/src/
pen.c 67 static int lookup_colour(int palette, const long args[], int argcount, VTermColor *col, int *index)
71 if(argcount < 3)
72 return argcount;
84 lookup_colour_palette(argcount ? CSI_ARG_OR(args[0], -1) : -1, col);
86 return argcount ? 1 : 0;
194 void vterm_state_setpen(VTermState *state, const long args[], int argcount)
201 while(argi < argcount) {
297 if(argcount - argi < 1)
299 argi += 1 + lookup_colour(CSI_ARG(args[argi+1]), args+argi+2, argcount-argi-2, &state->pen.fg, &state->fg_index);
318 if(argcount - argi < 1
    [all...]
parser.c 36 int argcount = 1; // Always at least 1 arg local
40 argcount++;
44 if(argcount > CSI_ARGS_MAX)
45 argcount = CSI_ARGS_MAX;
48 for(argi = 0; argi < argcount; argi++)
52 for(i = leaderlen; i < arglen && argi < argcount; i++) {
92 //for(argi = 0; argi < argcount; argi++) {
100 if((*vt->parser_callbacks->csi)(leaderlen ? leader : NULL, csi_args, argcount, intermedlen ? intermed : NULL, command, vt->cbdata))
vterm_internal.h 176 void vterm_state_setpen(VTermState *state, const long args[], int argcount);
177 int vterm_state_getpen(VTermState *state, long args[], int argcount);
state.c 815 static int on_csi(const char *leader, const long args[], int argcount, const char *intermed, char command, void *user)
924 col = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? 1 : CSI_ARG(args[1]);
1116 col = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? 1 : CSI_ARG(args[1]);
1182 vterm_state_setpen(state, args, argcount);
1263 state->scrollregion_bottom = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? -1 : CSI_ARG(args[1]);
1271 state->scrollregion_right = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? -1 : CSI_ARG(args[1]);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 263 self.argcount = getArgCount(args)
293 self.argcount = self.argcount - 1
536 argcount = self.argcount
538 argcount = argcount - 1
539 return types.CodeType(argcount, nlocals, self.stacksize, self.flags,
574 argcount = len(args)
579 argcount = argcount - numName
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 263 self.argcount = getArgCount(args)
293 self.argcount = self.argcount - 1
536 argcount = self.argcount
538 argcount = argcount - 1
539 return types.CodeType(argcount, nlocals, self.stacksize, self.flags,
574 argcount = len(args)
579 argcount = argcount - numName
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 155 argcount = fob.func_code.co_argcount
156 real_args = fob.func_code.co_varnames[arg_offset:argcount]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 155 argcount = fob.func_code.co_argcount
156 real_args = fob.func_code.co_varnames[arg_offset:argcount]
  /external/libvterm/include/
vterm.h 164 int (*csi)(const char *leader, const long args[], int argcount, const char *intermed, char command, void *user);
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 373 {# 2. Initialize argcount to be min(maxarg, n). #}
375 {# 3. Remove from S all entries whose type list is not of length argcount. #}
interface.cpp 530 {# 2. Initialize argcount to be min(maxarg, n). #}
532 {# 3. Remove from S all entries whose type list is not of length argcount. #}
    [all...]
  /external/lldb/test/pexpect-2.4/examples/
rippy.py 378 argcount = func.func_code.co_argcount
379 required_args = dict([(k,args.get(k)) for k in func.func_code.co_varnames[:argcount]])
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Nodes.py     [all...]
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/freemarker/freemarker/2.3.20/
freemarker-2.3.20.jar 

Completed in 820 milliseconds