/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
ast.ml | 5 (* expr - Base type for all expression nodes. *) 7 (* variant for numeric literals like "1.0". *) 10 (* variant for referencing a variable, like "a". *) 13 (* variant for a unary operator. *) 16 (* variant for a binary operator. *) 19 (* variant for function calls. *) 22 (* variant for if/then/else. *) 25 (* variant for for/in. *) 26 | For of string * expr * expr * expr option * exp [all...] |
lexer.ml | 50 | "for" -> [< 'Token.For; stream >]
|
/external/srtp/ |
Android.mk | 1 # This is the Android makefile for google3/third_party/libsrtp so that we can 40 # For the device
|
/ndk/build/core/ |
add-platform.mk | 12 # See the License for the specific language governing permissions and 18 # For each platform, determine the corresponding supported ABIs 28 # Record the sysroots for each supported ABI
|
check-cygwin-make.mk | 12 # See the License for the specific language governing permissions and 18 # For some reason, a lot of application developers on Windows
|
import-locals.mk | 12 # See the License for the specific language governing permissions and 20 # For LOCAL_CFLAGS, LOCAL_CPPFLAGS and LOCAL_C_INCLUDES, we need 37 $(info Imports for module $(LOCAL_MODULE):)
|
/system/media/mca/filterfw/ |
Android.mk | 12 # See the License for the specific language governing permissions and 44 # Don't prelink this library. For more efficient code, you may want 46 # it's difficult to do this for applications that are not supplied as
|
/external/chromium/chrome/browser/resources/net_internals/ |
serviceprovidersview.js | 9 * For each layered service provider, shows the name, dll, and type 10 * information. For each namespace provider, shows the name and 108 // Add a table row for each service provider. 109 for (var i = 0; i < serviceProviders.length; ++i) { 130 // Add a table row for each namespace provider. 131 for (var i = 0; i < namespaceProviders.length; ++i) {
|
socketsview.js | 9 * - For each pool with allocated sockets or connect jobs, shows all its 42 // Add table for each socket pool with information on each of its groups. 43 for (var i = 0; i < socketPools.length; ++i) {
|
logviewpainter.js | 20 for (var i = 0; i < sourceEntries.length; ++i) { 69 for (var i = 0; i < entries.length; ++i) { 72 // Avoid printing the END for a BEGIN that was immediately before, unless 113 // Add a continuation row for each line of text from the extra parameters. 119 for (var j = 0; j < extraParamsTextLines.length; ++j) { 135 // Format the table for fixed-width text. 153 for (var i = 0; i < hexString.length; i += hexCharsPerLine) { 156 for (var j = i; j < i + hexCharsPerLine && j < hexString.length; j += 2) { 160 // For ASCII codes 32 though 126, display the corresponding 161 // characters. Use a space for nulls, and a period fo [all...] |
/external/zlib/contrib/delphi/ |
zlibd32.mak | 1 # Makefile for zlib 2 # For use with Delphi and C++ Builder under Win32 3 # Updated for zlib 1.2.x by Cosmin Truta 71 # For the sake of the old Borland make,
|
/external/zlib/contrib/pascal/ |
zlibd32.mak | 1 # Makefile for zlib 2 # For use with Delphi and C++ Builder under Win32 3 # Updated for zlib 1.2.x by Cosmin Truta 71 # For the sake of the old Borland make,
|
/frameworks/base/libs/utils/ |
Android.mk | 12 # See the License for the specific language governing permissions and 17 # libutils is a little unique: It's built twice, once for the host 18 # and once for the device. 55 # For the host 78 # For the device
|
/external/mesa3d/docs/ |
MESA_texture_array.spec | 32 Support for ARB_fragment_program is assumed, but not required. 34 Support for ARB_fragment_program_shadow is assumed, but not required. 36 Support for EXT_framebuffer_object is assumed, but not required. 63 involve using a separate texture unit for each texture map or using 3D 71 of the N LOD in all three dimensions. For the TEXTURE_2D_ARRAY target, 73 same for all levels of detail. The texture then becomes an array of 132 (Note: COMPARE_REF_DEPTH_TO_TEXTURE_EXT is simply an alias for the 150 (Note: FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER is simply an alias for the 173 one of TEXTURE_3D for a three-dimensional texture or 174 TEXTURE_2D_ARRAY_EXT for an two-dimensional array texture [all...] |
/external/dbus/test/name-test/ |
tmp-session-like-system.conf | 26 <!-- Holes must be punched in service configuration files for 68 <!-- For the session bus, override the default relatively-low limits
|
/external/libpng/projects/visualc71/ |
README_zlib.txt | 1 /* WARNING: This file was put in the LibPNG distribution for convenience only. 5 Microsoft Developer Studio Project File, Format Version 7.10 for zlib. 9 For conditions of distribution and use, see copyright notice in zlib.h.
|
/external/stlport/test/eh/ |
sunpro42.mak | 48 echo 'Info: For CC 4.x, warnings from ld in the form "symbol `XXX' has differing sizes" are normal.'
|
/system/media/mca/filterfw/jni/ |
Android.mk | 12 # See the License for the specific language governing permissions and 44 # Don't prelink this library. For more efficient code, you may want 46 # it's difficult to do this for applications that are not supplied as
|
/external/icu4c/test/perf/collationperf/ |
CollPerf.pl | 69 for ( $n = 0 ; $n < @data ; $n++ ) { 114 for ( $i = 0 ; $i < 3 ; $i++ ) { 127 for ( $j = 0 ; $j < 3 ; $j++ ) { 132 for ( $j = 0 ; $j < 3 ; $j++ ) { 176 useful. They measure differences, where positive is better for ICU4C, and 177 negative is better for the compared implementation.</p> 188 <td>Timing for string collation, an incremental compare of strings.</td> 193 <td>Timing for generation of sort keys, used to 'precompile' information so 200 (Unicode/ISO 10646 code point). Generally this is the important field for sort 201 key performance, since it directly impacts the time necessary for binar [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
parser.ml | 5 (* binop_precedence - This holds the precedence for each binary operator that is 56 ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression *) 57 | [< 'Token.For; 58 'Token.Ident id ?? "expected identifier after for"; 59 'Token.Kwd '=' ?? "expected '=' after for"; 64 'Token.Kwd ',' ?? "expected ',' after for"; 75 Ast.For (id, start, end_, step, body) 77 raise (Stream.Error "expected 'in' after for") 80 raise (Stream.Error "expected '=' after for")
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
parser.ml | 5 (* binop_precedence - This holds the precedence for each binary operator that is 56 ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression *) 57 | [< 'Token.For; 58 'Token.Ident id ?? "expected identifier after for"; 59 'Token.Kwd '=' ?? "expected '=' after for"; 64 'Token.Kwd ',' ?? "expected ',' after for"; 75 Ast.For (id, start, end_, step, body) 77 raise (Stream.Error "expected 'in' after for") 80 raise (Stream.Error "expected '=' after for") 171 (* Verify right number of arguments for operator. * [all...] |
/external/markdown/MarkdownTest/ |
MarkdownTest.pl | 4 # MarkdownTester -- Run tests for Markdown implementations 50 # Look for a corresponding .html file for each .text file: 70 # Escape the strings, pass them through to CLI tidy tool for tag-level equivalency 71 $t_result =~ s{'}{'\\''}g; # escape ' chars for shell 114 Use "--" to end switch parsing. For example, to open a file named "-z", use:
|
/external/v8/test/mjsunit/ |
debug-compile-event.js | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 68 // events for the source inside eval. 70 // For source with 'eval' there will be compile events with substrings 74 // For source without 'eval' there will be a compile events with the
|
/external/valgrind/main/memcheck/tests/ |
sigkill.stderr.exp | 196 For a detailed leak analysis, rerun with: --leak-check=full 198 For counts of detected and suppressed errors, rerun with: -v
|
/external/pcre/ |
Android.mk | 12 # See the License for the specific language governing permissions and 20 intermediatesSrc := $(call intermediates-dir-for,STATIC_LIBRARIES,libpcre,HOST,)/pcre/src 21 intermediatesInc := $(call intermediates-dir-for,STATIC_LIBRARIES,libpcre,HOST,)/pcre/include 66 # For the host 79 pcrecppIntermediatesInc := $(call intermediates-dir-for,STATIC_LIBRARIES,libpcrecpp,HOST,)/pcrecpp/include
|