Home
last modified time | relevance | path

Searched refs:op_pos (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/scons/
Dsource_list.py60 op_pos = line.find('=')
61 op_end = op_pos + 1
62 if op_pos < 0:
65 if op_pos > 0:
66 if line[op_pos - 1] in [':', '+', '?']:
67 op_pos -= 1
72 op = line[op_pos:op_end]
73 sym = line[:op_pos].strip()
/external/deqp-deps/glslang/glslang/MachineIndependent/preprocessor/
DPp.cpp358 int op_pos(int a) { return a; } in op_pos() function
391 { '+', op_pos },
/external/python/cpython2/Modules/
Doperator.c98 spam1(op_pos , PyNumber_Positive) in spami()