/external/eigen/blas/testing/ |
sblat3.f | 421 * Set LDC to 1 more than minimum value if room. 445 * Set LDA to 1 more than minimum value if room. 470 * Set LDB to 1 more than minimum value if room. 702 * Set LDC to 1 more than minimum value if room. 712 * Set LDB to 1 more than minimum value if room. 735 * Set LDA to 1 more than minimum value if room. [all...] |
/external/blktrace/doc/ |
blktrace.tex | 14 % GNU General Public License for more details. 338 of the more arcane command line options: 349 more filter masks via the \emph{-a} option. 511 -v & --verbose & More verbose marginal on marginal errors \\ \hline 593 \emph{a} & Action, a (small) string (1 or 2 characters) -- see table below for more details \\ \hline 596 \emph{d} & RWBS field, a (small) string (1-3 characters) -- see section below for more details \\ \hline [all...] |
/external/elfutils/libcpu/ |
i386_parse.c | 16 GNU General Public License for more details. 118 General Public License for more details. [all...] |
/external/valgrind/main/helgrind/ |
libhb_core.c | 23 General Public License for more details. 147 over their entire lifetime, and have no more than 2^46 timestamp 177 like an OK tradeoff. If more than 256k threads need to be 270 thread, since each ULong_n_EC record is 16 bytes long. When more 292 any more memory references done by this thread. */ 531 of 2 and must be 8 or more. Hence an easy way to initialise the 4571 Word more; local 4591 Word more; local [all...] |
/build/tools/droiddoc/templates-sac/ |
customizations.cs | 189 include:"../../../../frameworks/base/docs/html/distribute/more/more_toc.cs" ?> 326 elif:more ?><?cs
|
/external/bison/data/ |
glr.cc | 15 # GNU General Public License for more details.
|
/external/chromium/net/spdy/ |
spdy_framer.cc | 29 // for more details. 1242 bool more = true; local [all...] |
/external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/ |
JSON.pm | 731 See to L<JSON::PP/UNICODE HANDLING ON PERLS> for more information. 879 See L<MAPPING>, below, for more information on how JSON values are mapped to 990 required by the JSON syntax or other flags. This results in a faster and more compact format. 1051 C<space_after> (and in the future possibly more) flags in one call to 1160 character, after which more white-space and comments are allowed. [all...] |
/external/chromium_org/third_party/JSON/JSON-2.59/lib/ |
JSON.pm | 731 See to L<JSON::PP/UNICODE HANDLING ON PERLS> for more information. 879 See L<MAPPING>, below, for more information on how JSON values are mapped to 990 required by the JSON syntax or other flags. This results in a faster and more compact format. 1051 C<space_after> (and in the future possibly more) flags in one call to 1160 character, after which more white-space and comments are allowed. [all...] |
/external/chromium_org/third_party/JSON/out/lib/perl5/ |
JSON.pm | 731 See to L<JSON::PP/UNICODE HANDLING ON PERLS> for more information. 879 See L<MAPPING>, below, for more information on how JSON values are mapped to 990 required by the JSON syntax or other flags. This results in a faster and more compact format. 1051 C<space_after> (and in the future possibly more) flags in one call to 1160 character, after which more white-space and comments are allowed. [all...] |
/external/chromium_org/third_party/icu/source/test/perf/collationperf/ |
CollPerf.pl | 216 <li>For more information on incremental vs. sort key comparison, the importance
|
/external/chromium_org/third_party/jinja2/ |
filters.py | 9 :license: BSD, see LICENSE for more details. 34 context object is passed as first argument. For more information 374 is truthy the output will be more verbose (this requires `pretty`) 736 See :ref:`Notes on subscriptions <notes-on-subscriptions>` for more details.
|
/external/chromium_org/tools/grit/grit/ |
tclib_unittest.py | 146 'but just do so more slowly or quickly, the GoogleWaitTime notes.ini\r\n'
|
/external/clang/lib/Analysis/ |
PrintfFormatString.cpp | 85 // No more characters left? 95 // No more characters left? 120 // No more characters left? 131 // No more characters left? 149 // No more characters left? 157 // No more characters left? 240 // If so, don't do any more processing.
|
/external/icu4c/test/perf/collationperf/ |
CollPerf.pl | 216 <li>For more information on incremental vs. sort key comparison, the importance
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
jsilver.sablecc | 184 | {many} command [more]:command+ 185 {->New command.multiple([command.command, more.command])}
|
/frameworks/base/core/java/android/text/format/ |
DateFormat.java | 57 * <p>See {@link java.text.SimpleDateFormat} for more documentation 58 * about patterns, or if you need a more complete or correct implementation. 180 * added. For the same input in {@code es_ES}, we'd have even more extra text:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | 4 'atom-identifiers': '\nIdentifiers (Names)\n*******************\n\nAn identifier occurring as an atom is a name. See section\n*Identifiers and keywords* for lexical definition and section *Naming\nand binding* for documentation of naming and binding.\n\nWhen the name is bound to an object, evaluation of the atom yields\nthat object. When a name is not bound, an attempt to evaluate it\nraises a ``NameError`` exception.\n\n**Private name mangling:** When an identifier that textually occurs in\na class definition begins with two or more underscore characters and\ndoes not end in two or more underscores, it is considered a *private\nname* of that class. Private names are transformed to a longer form\nbefore code is generated for them. The transformation inserts the\nclass name, with leading underscores removed and a single underscore\ninserted, in front of the name. For example, the identifier\n``__spam`` occurring in a class named ``Ham`` will be transformed to\n``_Ham__spam``. This transformation is independent of the syntactical\ncontext in which the identifier is used. If the transformed name is\nextremely long (longer than 255 characters), implementation defined\ntruncation may happen. If the class name consists only of underscores,\nno transformation is done.\n', 11 'bltin-code-objects': '\nCode Objects\n************\n\nCode objects are used by the implementation to represent "pseudo-\ncompiled" executable Python code such as a function body. They differ\nfrom function objects because they don\'t contain a reference to their\nglobal execution environment. Code objects are returned by the built-\nin ``compile()`` function and can be extracted from function objects\nthrough their ``func_code`` attribute. See also the ``code`` module.\n\nA code object can be executed or evaluated by passing it (instead of a\nsource string) to the ``exec`` statement or the built-in ``eval()``\nfunction.\n\nSee *The standard type hierarchy* for more information.\n', [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | 4 'atom-identifiers': '\nIdentifiers (Names)\n*******************\n\nAn identifier occurring as an atom is a name. See section\n*Identifiers and keywords* for lexical definition and section *Naming\nand binding* for documentation of naming and binding.\n\nWhen the name is bound to an object, evaluation of the atom yields\nthat object. When a name is not bound, an attempt to evaluate it\nraises a ``NameError`` exception.\n\n**Private name mangling:** When an identifier that textually occurs in\na class definition begins with two or more underscore characters and\ndoes not end in two or more underscores, it is considered a *private\nname* of that class. Private names are transformed to a longer form\nbefore code is generated for them. The transformation inserts the\nclass name, with leading underscores removed and a single underscore\ninserted, in front of the name. For example, the identifier\n``__spam`` occurring in a class named ``Ham`` will be transformed to\n``_Ham__spam``. This transformation is independent of the syntactical\ncontext in which the identifier is used. If the transformed name is\nextremely long (longer than 255 characters), implementation defined\ntruncation may happen. If the class name consists only of underscores,\nno transformation is done.\n', 11 'bltin-code-objects': '\nCode Objects\n************\n\nCode objects are used by the implementation to represent "pseudo-\ncompiled" executable Python code such as a function body. They differ\nfrom function objects because they don\'t contain a reference to their\nglobal execution environment. Code objects are returned by the built-\nin ``compile()`` function and can be extracted from function objects\nthrough their ``func_code`` attribute. See also the ``code`` module.\n\nA code object can be executed or evaluated by passing it (instead of a\nsource string) to the ``exec`` statement or the built-in ``eval()``\nfunction.\n\nSee *The standard type hierarchy* for more information.\n', [all...] |
/build/core/ |
cleanbuild.mk | 53 # cleanspec.mk is outside of the core directory so that more people
|
/cts/suite/pts/deviceTests/browserbench/assets/octane/ |
deltablue.js | 12 // GNU General Public License for more details. 22 // others have been modified more aggresively to make it feel 23 // more like a JavaScript program. 758 * one or more changing inputs.
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
token.rb | 392 inspected with names in place of type values are more meaningful to a developer. 402 when tokens are created. However, doing so would make tokens take up more space 421 1. define a customized token class (more on that below)
|
/external/ceres-solver/ |
Android.mk | 35 # core libraries. If you need a more complete Ceres build, consider using the
|
/external/chromium/chrome/browser/resources/picasaweb_uploader/js/ |
upload_page.js | 104 * Adds more files to upload.
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/ |
jstemplate_test.js | 62 // Reprocessing with dropped data, once more.
|