HomeSort by relevance Sort by last modified time
    Searched refs:More (Results 51 - 73 of 73) sorted by null

1 23

  /external/chromium_org/v8/src/
d8.cc     [all...]
messages.js 26 multiple_defaults_in_switch: ["More than one default clause in switch statement"],
627 * no more that a certain number of characters wide.
645 // If no before is specified center for small limits and perfer more source
    [all...]
  /external/chromium_org/v8/test/mjsunit/
regexp.js 528 // More iterations increases the chance of hitting a GC.
576 // And one more time, just to be certain.
598 // And one more time, just to be certain.
unicode-test.js     [all...]
  /external/oprofile/events/i386/nehalem/
events 35 event:0x18 counters:0,1,2,3 um:inst_decoded minimum:6000 name:INST_DECODED : Counts number of instructions that require decoder 0 to be decoded. Usually, this means that the instruction maps to more than 1 uop
40 event:0x26 counters:0,1,2,3 um:l2_data_rqsts minimum:500 name:L2_DATA_RQSTS : More L2 data loads.
  /ndk/build/core/
init.mk 77 # More stuff will follow in definitions.mk.
definitions.mk     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
wallpaper_manager.js 36 * URL of the learn more page for wallpaper picker.
56 * Wrapper function to make dealing with translated strings more concise.
230 $('learn-more').href = LearnMoreURL;
796 console.error('More than one files are selected or no file selected');
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
ResponsiveDesignView.js 546 var moreButtonContainer = this._toolbarElement.createChild("div", "responsive-design-more-button-container");
547 var moreButton = moreButtonContainer.createChild("button", "responsive-design-more-button");
548 moreButton.title = WebInspector.UIString("More overrides");
    [all...]
  /external/elfutils/0.153/
elfutils.spec 217 - libdwfl: Fix for more prelink cases with separate debug file.
231 - addr2line: New flag -F/--flags to print more DWARF line information
256 - libelf: More robust to bogus section headers.
263 - libelf: New function elf_getphdrnum. Now support using more than
292 - libebl: sparc backend fixes; some more arm backend support
393 - libebl, libdwfl: backend register name support extended with more info
428 - elflint: more tests.
433 - elflint: more tests.
474 - strip: add some more compatibility with binutils.
486 - elfcmp: some more relaxation
    [all...]
  /external/valgrind/main/memcheck/tests/amd64/
sh-mem-vec256-plo-no.stderr.exp 840 More than 100 errors detected. Subsequent errors
  /external/valgrind/main/memcheck/tests/darwin/
scalar.stderr.exp 637 More than 100 errors detected. Subsequent errors
    [all...]
  /frameworks/base/docs/html/guide/
guide_toc.cs 148 <li><a href="<?cs var:toroot ?>guide/topics/resources/more-resources.html">More Types</a></li>
  /external/iproute2/doc/
ip-cref.tex 35 More voluminous examples and some topics, which require more elaborate
60 --- output more information. If the option
61 appears twice or more, the amount of information increases.
373 to make it more intelligible.
523 If the \verb|-s| option is entered twice or more,
524 \verb|ip| prints more detailed statistics on receiver
632 contains more details on address scopes.
    [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/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
traverse_table.js 103 * table. More specifically, each cell of the shadow table contains a special
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
docs.js 319 // no more topics in this section, jump to the first topic in the next section
    [all...]
  /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/tools/droiddoc/templates-sdk-dyn/assets/js/
docs.js 291 // no more topics in this section, jump to the first topic in the next section
828 // if it's more than 80% down the nav
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /external/valgrind/main/memcheck/tests/x86-linux/
scalar.stderr.exp 614 More than 100 errors detected. Subsequent errors
    [all...]
  /external/valgrind/main/helgrind/tests/
tc19_shadowmem.stderr.exp     [all...]

Completed in 1647 milliseconds

1 23