HomeSort by relevance Sort by last modified time
    Searched refs:As (Results 26 - 48 of 48) sorted by null

12

  /external/v8/include/
v8.h 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
166 * behind the scenes and the same rules apply to these values as to
183 * constructor allows you to pass handles as arguments by value and
188 * Handle<String> to a variable declared as Handle<Value>, is legal
248 template <class S> inline Handle<S> As() {
286 template <class S> inline Local<S> As() {
300 * a Local handle only lives as long as the HandleScope in which it was
311 * persistent handle as an argument to a function you will not get two
324 * Creates a persistent handle for the same storage cell as th
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWindowShell.cpp 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
84 // such as out-of-memory by crashing the renderer.
245 // use a shadow object as the global object and use the JS DOMWindow
246 // instance as the prototype for that shadow object. The JS DOMWindow
250 // The shadow object and the DOMWindow instance are seen as one object
404 // Create a new JS window object and use it as the prototype for the shadow global object.
418 // Insert the window instance as the prototype of the shadow object.
514 // case, we use the global object as the security token to avoid
523 // as the security token.
563 return prototype.As<v8::Object>()->Get(property)
    [all...]
  /external/v8/test/cctest/
test-profile-generator.cc 725 v8::CpuProfiler::StartProfiling(args[0].As<v8::String>());
735 v8::CpuProfiler::StopProfiling(args[0].As<v8::String>());
  /external/blktrace/btt/doc/
btt.tex 8 % it under the terms of the GNU General Public License as published by
33 tool called blktrace. As noted in its Users Guide, blktrace
55 section~\ref{sec:cmd-line}), as we felt that discussing some of the
116 This is denoted as \emph{Q2I} time.
121 will see these listed as \texttt{S2G} times.}:
139 Referred to as \emph{I2D} time\footnote{The \emph{issue} trace
148 This is referred to as the \emph{D2C} time\
155 in the system. This provides some idea as to how quickly IOs are
170 (which are all presented in seconds), and overall count. As an
171 example\footnote{As with this display, the author has taken some libert
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 130 The library serves as a toolkit for developers who have to solve cryptographic problems. Out of the box LibTomCrypt
149 know how to use Safer+, RC6, or Serpent as well. With all of the core functions there are central descriptor tables
161 with \textit{cycles per byte} timings that are comparable (and often favourable) to other libraries such as OpenSSL and
181 you have to update the associated support code as well. In LibTomCrypt the associated code (\textit{chaining modes in this case})
188 The project is hereby released as public domain.
192 The author (Tom St Denis) is not a patent lawyer so this section is not to be treated as legal advice. To the best
219 There have been quite a few other people as well. Please check the change log to see who else has contributed from
296 There are 32 and 64-bit cyclic rotations as well:
319 Certain functions such as (for example) \textit{rsa\_export()} give an output that is variable length. To prevent buffer overflows you
355 As of v1.13, most functions will update your length on failure to indicate the size required by the f (…)
    [all...]
  /external/v8/test/mjsunit/harmony/
proxies-example-membrane.js 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
68 // As long as obj is not frozen, the proxy won't allow itself to be fixed
122 print("wrap exit", str(obj), "as", str(x));
297 print("asDry exit", str(obj), "as", str(x));
364 print("asWet exit", str(obj), "as", str(x))
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 22 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
96 # ^-- same as this --v
133 attribute declarations from the ANTLR grammar as parameters, and overrides
155 # If no defaults, leave the initialize method the same as
178 As the base class of all ANTLR-generated recognizers, Recognizer provides
249 # used as a hook to add additional default members
368 # As a result, all error tracking and error recovery
679 # tokens. For literals such as '{' and ',', the default
736 # runtime, however, we know precisely which context applies as
766 # as you can see by looking at the derivation of this specifi
    [all...]
token.rb 22 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
42 such as absolute character index, line number, and position within the line (or
57 == Token as an Interface
60 you may write your own token class as long as you provide methods that give
110 # @example Match against a token type name as a Symbol
218 The base class for the standard implementation of Token. It is implemented as a
219 simple Struct as tokens are basically simple data structures binding together a
340 that need to create token objects This module serves as a mixin that provides
375 TokenSchemes exist to handle the problem of defining token types as intege
    [all...]
tree.rb 22 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
194 As ANTLR is concerned, an Abstract Syntax Tree (AST) node is an object that
200 tree nodes as well as the methods trees need to implement.
214 [siblings] all other nodes sharing the same parent as some node
951 operates similarly to other streams. They are commonly used by tree parsers as
    [all...]
  /external/chromium/chrome/browser/resources/
print_preview.js 111 * invalid warning icon on the text box and sets the error message as the title
338 * Create the PDF plugin as needed.
594 * As the user types in the page range textfield, we need to reset this timer,
  /external/dropbear/libtommath/
bn.tex 85 As of the v0.25 the library source code has been placed in the public domain with every new release. As of the v0.28
87 release as well. This textbook is meant to compliment the project by providing a more solid walkthrough of the development
91 public domain everyone is entitled to do with them as they see fit.
95 LibTomMath is meant to be very ``GCC friendly'' as it comes with a makefile well suited for GCC. However, the library will
100 To build as a static library for GCC issue the following
115 To build as a shared library for GCC issue the following
119 This requires the ``libtool'' package (common on most Linux/BSD systems). It will build LibTomMath as both shared
120 and static then install (by default) into /usr/lib as well as install the header files in /usr/include. The shared
    [all...]
  /external/v8/src/
ast.h 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
218 type* As##type() { return Is##type() ? reinterpret_cast<type*>(this) : NULL; }
323 // Symbols that cannot be parsed as array indices are considered property
324 // names. We do not treat symbols that can be array indexes as property
332 // True iff the expression is a literal represented as a smi.
1094 // NOTE: TargetCollectors are represented as nodes to fit in the target
    [all...]
  /external/v8/tools/
profile.js 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
155 // As code and functions are in the same address space,
553 * Adds the specified call path, constructing nodes as necessary.
725 * Returns all node's children as an array.
  /external/iproute2/doc/
ip-cref.tex 62 As a rule, the information is statistics or some time values.
123 abbreviated form, f.e.\ \verb|address| is abbreviated as \verb|addr|
128 As a rule, it is possible to \verb|add|, \verb|delete| and
165 and exits. As a rule, the error message will contain information
177 prints the error message, as it is output with \verb|perror(3)|,
182 In this case \verb|ip| prints the error message, as it is output
195 syntax errors). However, as a rule, their meaning is clear
382 the maximal size of data which can be sent as a single packet over this interface.
419 that software {\em must not\/} interpret the absence of this flag as the inability
438 involved. As a rule, it indicates that the device needs no addres
    [all...]
  /build/core/
main.mk 2 # DO NOT use other shells such as zsh.
6 # Use bash, not whatever shell somebody has installed as /bin/sh
178 # such as core.jar, framework.jar, etc.
455 # modules as a side-effect. Do this after including ONE_SHOT_MAKEFILE
493 $(warning * As an alternative, use PRODUCT_COPY_FILES in)
536 # brought in as requirements of other modules.
636 # is as little code as possible in the tree that doesn't build.
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 24 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
84 /// a list of element as the children. If you want a flat tree (a list)
143 /// child as the new root node.
155 /// node. If newRoot is ^(nil x) return x as newRoot.
168 /// as the setting of start/stop indexes relies on a single non-nil root
171 /// Flat trees such as for lists like "idlist : ID+ ;" are left alone
187 /// <item>Number the nodes as they are created?</item>
191 /// WARNING: This is usually implemented either as IL to make a
213 /// rewrite rule as IMAG[$tokenLabel].
219 /// <summary>Same as Create(tokenType,fromToken) except set the text too
    [all...]
Antlr.Runtime.pas 24 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
59 /// or token type sequence (such as for interpretation).
83 /// The Lexer tracks line/col info as well as input index so its markers are
130 /// no longer necessary. This will have the same behavior as
147 /// will use seek to move backwards such as when backtracking.
153 /// as line number. For seeking backwards, you will be presumably
198 /// Get the ith character of lookahead. This is usually the same as
269 /// When setting the text, it might be a NOP such as for the CommonToken,
391 /// directly as it's underlying source
1686 \/\/\/ specified character array. This is the preferred constructor as procedure
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 // source files as UTF-8, so they will fail on this test. If you want
    [all...]
  /external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
markdown.php 329 foreach ($this->document_gamut as $method => $priority) {
390 # We only want to do this for block-level HTML tags, such as headers,
392 # "paragraphs" that are wrapped in non-block-level tags, such as anchors,
398 # its line, otherwise they're not matched here and will be taken as
580 # been seen as a code block in a previous pass of hashHTMLBlocks.
592 foreach ($this->block_gamut as $method => $priority) {
649 foreach ($this->span_gamut as $method => $priority) {
953 foreach ($markers_relist as $marker_re) {
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg 20 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
35 * If it causes the destruction of the Universe, it will be pretty cool so long as
126 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
161 * we perform this little trick of defining the literals as arrays of UINT32
174 * of code as you cannot see what is happening when single stepping in debuggers
489 * then for the present you must use different names for your defines as these are hard coded
492 * here as this will at least give you a redefined error somewhere if they clash.
577 * allow you to pass part of a full token stream to the parser, such as for syntax checking
584 * As this is a generated lexer, it is unlikely you will call it 'manually'. However
588 * The methods in p<name> are as follows
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texinfo.tex 13 % modify it under the terms of the GNU General Public License as
25 % As a special exception, when this file is read by TeX when processing
51 % than two; texi2dvi does it as many times as necessary.
335 % \onepageout takes a vbox as an argument. Note that \pagecontents
344 % the headline as they should be, not taken literally (outputting ''code).
505 % Actually, I use \csname\string\foo\endcsname, ie. \\foo, as it is my
522 % space in the output. Don't allow a line break at this space, as this
549 % are not treated as environments; they don't open a group. (The
610 %% Define @` and @' to be the same as ` and
    [all...]
  /external/bison/tests/
testsuite 113 # We did not find ourselves, most probably we were run as `sh COMMAND'
150 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
172 # Don't try to exec as it changes $[0], causing all sort of problems
307 # As many dots as there are digits in the last test group number.
611 as command line arguments. Set \`AUTOTEST_PATH' to select the executables
612 to exercise. Each relative directory is expanded as build and source
635 -e, --errexit abort as soon as a test fails; implies --debug
    [all...]
  /external/grub/docs/
texinfo.tex 13 % modify it under the terms of the GNU General Public License as
27 % As a special exception, when this file is read by TeX when processing
53 % than two; texi2dvi does it as many times as necessary.
287 % \onepageout takes a vbox as an argument. Note that \pagecontents
296 % the headline as they should be, not taken literally (outputting ''code).
425 % We cannot use \next here, as it holds the macro to run;
452 % Actually, I use \csname\string\foo\endcsname, ie. \\foo, as it is my
469 % space in the output. Don't allow a line break at this space, as this
496 % are not treated as enviroments; they don't open a group. (Th
    [all...]

Completed in 5771 milliseconds

12