HomeSort by relevance Sort by last modified time
    Searched full:consts (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /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_sample.py 17 from consts import *
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/chromium_org/net/cert/
cert_status_flags.h 19 // befits most static consts.
  /frameworks/base/docs/html/google/play/billing/v2/
billing_subscriptions.jd 145 <code>BILLING_REQUEST_ITEM_TYPE</code> values (from Consts.java):</p>
156 request.putString(Consts.BILLING_REQUEST_METHOD, method);
157 request.putInt(Consts.BILLING_REQUEST_<code>API_VERSION</code>, 2);
158 request.putString(Consts.BILLING_REQUEST_PACKAGE_NAME, getPackageName());
187 request.putString(Consts.<code>BILLING_REQUEST_ITEM_TYPE</code>, mProductType);
190 int responseCode = response.getInt(Consts.<code>BILLING_RESPONSE_RESPONSE_CODE</code>);
191 if (Consts.DEBUG) {
197 return Consts.BILLING_RESPONSE_INVALID_REQUEST_ID;
250 request.putString(Consts.BILLING_REQUEST_ITEM_ID, mProductId);
251 request.putString(Consts.<code>BILLING_REQUEST_ITEM_TYPE</code>, mProductType)
    [all...]
  /external/chromium_org/v8/tools/
gen-postmortem-metadata.py 389 consts = [];
475 def emit_set(out, consts):
479 for const in consts:
497 consts = [];
502 consts.append({
507 emit_set(out, consts);
510 consts = [];
518 consts.append({
523 emit_set(out, consts);
  /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/llvm/lib/Target/R600/
R600EmitClauseMarkers.cpp 124 const SmallVectorImpl<std::pair<MachineOperand *, int64_t> > &Consts =
128 for (unsigned i = 0, n = Consts.size(); i < n; ++i) {
129 if (Consts[i].first->getReg() != AMDGPU::ALU_CONST)
131 unsigned Sel = Consts[i].second;
159 for (unsigned i = 0, j = 0, n = Consts.size(); i < n; ++i) {
160 if (Consts[i].first->getReg() != AMDGPU::ALU_CONST)
164 Consts[i].first->setReg(
168 Consts[i].first->setReg(
  /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 58 // Value consts.
  /external/chromium_org/v8/test/mjsunit/
global-const-var-conflicts.js 28 // Check that dynamically introducing conflicting consts/vars
  /external/emma/core/data/com/vladium/app/
IAppVersion.java 33 // derived properties [must be compile-time consts]:

Completed in 1425 milliseconds

1 2 3 4 5 6 7