/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_code.py | 18 consts: ('None', '<code object g>') 29 consts: ('None',) 46 consts: ('None',) 62 consts: ('None',) 79 consts: ("'doc string'", 'None') 88 def consts(t): function 102 print "consts:", tuple(consts(co.co_consts))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_code.py | 18 consts: ('None', '<code object g>') 29 consts: ('None',) 46 consts: ('None',) 62 consts: ('None',) 79 consts: ("'doc string'", 'None') 88 def consts(t): function 102 print "consts:", tuple(consts(co.co_consts))
|
/cts/suite/audio_quality/test_description/processing/ |
example.py | 17 from consts import * 28 # consts from consts.py 30 # element 0 : execution result value as defined as RESULT_XXX in consts.py
|
consts.py | 17 # consts to be used in signal processing functions
|
playback_thd.py | 17 from consts import *
|
recording_thd.py | 17 from consts import *
|
/external/chromium_org/third_party/jinja2/ |
meta.py | 75 # a tuple with some non consts in there 79 # non-string consts that really just make no sense 93 # a tuple or list (latter *should* not happen) made of consts, 94 # yield the consts that are strings. We could warn here for
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/ |
nv30_state.h | 92 struct nv30_vertprog_data *consts; member in struct:nv30_vertprog 118 struct nv30_fragprog_data *consts; member in struct:nv30_fragprog
|
nv30_fragprog.c | 85 unsigned off = fp->consts[i].offset; 86 unsigned idx = fp->consts[i].index * 4; 98 /* FP_ACTIVE_PROGRAM needs to be done again even if only the consts
|
nv30_vertprog.c | 45 FREE(vp->consts); 46 vp->consts = NULL; 175 struct nv30_vertprog_data *data = &vp->consts[i];
|
/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_state.h | 92 struct nv30_vertprog_data *consts; member in struct:nv30_vertprog 118 struct nv30_fragprog_data *consts; member in struct:nv30_fragprog
|
nv30_fragprog.c | 85 unsigned off = fp->consts[i].offset; 86 unsigned idx = fp->consts[i].index * 4; 98 /* FP_ACTIVE_PROGRAM needs to be done again even if only the consts
|
nv30_vertprog.c | 45 FREE(vp->consts); 46 vp->consts = NULL; 175 struct nv30_vertprog_data *data = &vp->consts[i];
|
/external/llvm/lib/Target/R600/ |
R600EmitClauseMarkers.cpp | 110 const SmallVectorImpl<std::pair<MachineOperand *, int64_t> > &Consts = 114 for (unsigned i = 0, n = Consts.size(); i < n; ++i) { 115 if (Consts[i].first->getReg() != AMDGPU::ALU_CONST) 117 unsigned Sel = Consts[i].second; 142 for (unsigned i = 0, j = 0, n = Consts.size(); i < n; ++i) { 143 if (Consts[i].first->getReg() != AMDGPU::ALU_CONST) 147 Consts[i].first->setReg( 151 Consts[i].first->setReg(
|
/external/chromium_org/v8/tools/ |
gen-postmortem-metadata.py | 349 consts = []; 434 def emit_set(out, consts): 435 for ii in range(0, len(consts)): 437 (consts[ii]['name'], consts[ii]['value'])); 452 consts = []; 457 consts.append({ 462 emit_set(out, consts); 465 consts = []; 473 consts.append( [all...] |
/external/v8/tools/ |
gen-postmortem-metadata.py | 339 consts = []; 424 def emit_set(out, consts): 425 for ii in range(0, len(consts)): 427 (consts[ii]['name'], consts[ii]['value'])); 442 consts = []; 447 consts.append({ 452 emit_set(out, consts); 455 consts = []; 463 consts.append( [all...] |
/frameworks/base/docs/html/google/play/billing/v2/ |
billing_subscriptions.jd | 124 <code>BILLING_REQUEST_ITEM_TYPE</code> values (from Consts.java):</p> 135 request.putString(Consts.BILLING_REQUEST_METHOD, method); 136 request.putInt(Consts.BILLING_REQUEST_<code>API_VERSION</code>, 2); 137 request.putString(Consts.BILLING_REQUEST_PACKAGE_NAME, getPackageName()); 166 request.putString(Consts.<code>BILLING_REQUEST_ITEM_TYPE</code>, mProductType); 169 int responseCode = response.getInt(Consts.<code>BILLING_RESPONSE_RESPONSE_CODE</code>); 170 if (Consts.DEBUG) { 176 return Consts.BILLING_RESPONSE_INVALID_REQUEST_ID; 229 request.putString(Consts.BILLING_REQUEST_ITEM_ID, mProductId); 230 request.putString(Consts.<code>BILLING_REQUEST_ITEM_TYPE</code>, mProductType) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
modulefinder.py | 346 consts = co.co_consts 356 yield "import", (consts[oparg_1], names[oparg_2]) 370 consts = co.co_consts 381 level = consts[oparg_1] 383 yield "import", (consts[oparg_2], names[oparg_3]) 385 yield "absolute_import", (consts[oparg_2], names[oparg_3]) 387 yield "relative_import", (level, consts[oparg_2], names[oparg_3]) 596 consts = list(co.co_consts) 597 for i in range(len(consts)): 598 if isinstance(consts[i], type(co)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
modulefinder.py | 346 consts = co.co_consts 356 yield "import", (consts[oparg_1], names[oparg_2]) 370 consts = co.co_consts 381 level = consts[oparg_1] 383 yield "import", (consts[oparg_2], names[oparg_3]) 385 yield "absolute_import", (consts[oparg_2], names[oparg_3]) 387 yield "relative_import", (level, consts[oparg_2], names[oparg_3]) 596 consts = list(co.co_consts) 597 for i in range(len(consts)): 598 if isinstance(consts[i], type(co)) [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_tabs_module_constants.h | 47 // Value consts.
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/ |
acctab.utf | 22 ! these values match the consts in the Pico application
|
phrtab.utf | 22 ! these values match the consts in the Pico application
|
/external/chromium_org/chrome/browser/extensions/api/tabs/ |
tabs_constants.h | 56 // Value consts.
|
/external/chromium_org/net/cert/ |
cert_status_flags.h | 20 // befits most static consts.
|
/external/chromium_org/v8/test/mjsunit/ |
global-const-var-conflicts.js | 28 // Check that dynamically introducing conflicting consts/vars
|