HomeSort by relevance Sort by last modified time
    Searched refs:more (Results 376 - 400 of 851) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/cmd/yacc/
yacc.go 1598 more:
1614 continue more
    [all...]
  /prebuilts/go/linux-x86/src/cmd/yacc/
yacc.go 1598 more:
1614 continue more
    [all...]
  /bionic/libc/dns/net/
gethnamaddr.c 1352 int more; local
    [all...]
  /build/core/
prebuilt_internal.mk 439 $(error LOCAL_JILL_FLAGS is not supported any more, please use jack options in LOCAL_JACK_FLAGS instead)
  /build/tools/droiddoc/templates-sac/
customizations.cs 189 include:"../../../../frameworks/base/docs/html/distribute/more/more_toc.cs" ?>
326 elif:more ?><?cs
  /external/autotest/client/virt/
base_installer.py 67 in the pickle protocol. And, in case this pickle thing needs more
  /external/autotest/site_utils/
perf_compare.py 14 automatically imaging one or more chromeOS devices with particular builds,
55 in the file "perf_benchmarks.json". Some benchmarks output more perf keys than
136 logging.error('Perf key "%s" is associated with more than one '
167 @param iteration_nums: A list of one or more integers representing the
168 number of iterations to run for one or more benchmarks.
169 @param perf_keys: A list of one or more string perf keys we need to
  /external/bison/data/
glr.cc 15 # GNU General Public License for more details.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/
base.js 35 * clobbering if base.js is loaded more than once.
70 * See more info about locale codes here:
82 * Creates object stubs for a namespace. The presence of one or more
284 // for example). See bootstrap/ for more information.
405 * an argument because that would make it more difficult to obfuscate
695 // but that would require many more function calls and is not warranted
739 // Does anyone know a more efficient work around?
    [all...]
  /external/curl/src/
tool_setopt.c 380 for(pp=p; pp; pp=pp->more) {
382 * these are linked through the 'more' pointer */
  /external/icu/icu4c/source/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])}
  /external/libevent/
evutil.c 982 /* Helper for systems with no getaddrinfo(): make one or more addrinfos out of
    [all...]
  /external/v8/src/js/
object-observe.js 49 // callbacks are invoked in the proper order until there are no more
54 // common cases which can be handled more efficiently.
  /external/v8/src/runtime/
runtime-regexp.cc 711 // isn't empty, we can never create more parts than ~half the length
    [all...]
  /external/v8/test/mjsunit/
allocation-site-info.js 374 // A more complex nested literal case.
453 // A more complex nested literal case.
  /frameworks/base/core/java/android/text/format/
DateFormat.java 56 * <p>See {@link java.text.SimpleDateFormat} for more documentation
57 * about patterns, or if you need a more complete or correct implementation.
229 * added. For the same input in {@code es_ES}, we'd have even more extra text:
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
vfp1.s 7 @ any more bits than necessary.
vfp1_t2.s 10 @ any more bits than necessary.
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /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 47 # to pass more definitions to the C compiler.

Completed in 2299 milliseconds

<<11121314151617181920>>