/prebuilts/misc/common/swig/include/2.0.11/octave/ |
exception.i | 4 %insert("runtime") {
|
/prebuilts/misc/common/swig/include/2.0.11/perl5/ |
exception.i | 3 %insert("runtime") {
|
/prebuilts/misc/common/swig/include/2.0.11/python/ |
exception.i | 4 %insert("runtime") {
|
/prebuilts/misc/common/swig/include/2.0.11/tcl/ |
exception.i | 4 %insert("runtime") {
|
/art/runtime/entrypoints/quick/ |
quick_trampoline_entrypoints_test.cc | 29 Runtime::CalleeSaveType type) 31 Runtime* r = Runtime::Current(); 45 static void CheckFrameSize(InstructionSet isa, Runtime::CalleeSaveType type, uint32_t save_size) 54 static void CheckPCOffset(InstructionSet isa, Runtime::CalleeSaveType type, size_t pc_offset) 64 // Note: these tests are all runtime tests. They let the Runtime create the corresponding ArtMethod 65 // and check against it. Technically we know and expect certain values, but the Runtime code is 66 // not constexpr, so we cannot make this compile-time checks (and I want the Runtime code tested). 72 CheckFrameSize(isa, Runtime::kRefsAndArgs, GetCalleeSaveFrameSize(isa, Runtime::kRefsAndArgs)); [all...] |
/prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-support/1.5/ |
gmaven-runtime-support-1.5.jar | |
_remote.repositories | 3 gmaven-runtime-support-1.5.jar>central= 4 gmaven-runtime-support-1.5.pom>central=
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
MismatchedTreeNodeException.as | 1 package org.antlr.runtime { 2 import org.antlr.runtime.tree.TreeNodeStream;
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
TestDriver.dpr | 22 Antlr.Runtime.Tools.Tests in 'Antlr.Runtime.Tools.Tests.pas', 23 Antlr.Runtime.Collections.Tests in 'Antlr.Runtime.Collections.Tests.pas', 24 Antlr.Runtime.Tree.Tests in 'Antlr.Runtime.Tree.Tests.pas', 25 Antlr.Runtime.Tests in 'Antlr.Runtime.Tests.pas';
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t058rewriteAST69.g | 6 : INT -> {new org.antlr.runtime.tree.CommonTree(new org.antlr.runtime.CommonToken(FLOAT, $INT.text+".0"))}
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
CharStream.pm | 1 package ANTLR::Runtime::CharStream; 7 #extends 'ANTLR::Runtime::IntStream';
|
NoViableAltException.pm | 1 package ANTLR::Runtime::NoViableAltException; 5 extends 'ANTLR::Runtime::RecognitionException';
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/ |
README.md | 10 * [Runtime](http://developer.chrome.com/trunk/apps/app.runtime.html)
|
/external/javassist/src/main/javassist/tools/reflect/ |
package.html | 3 Runtime Behavioral Reflection. 10 runtime behavioral reflection. 17 a runtime metaobject and a runtime class metaobject, which control 19 The runtime 21 runtime class metaobject is created for every (base-level) class. 22 <code>Metaobject</code> is the root class of the runtime 24 of the runtime class metaobject.
|
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.200.v20130514-1256/ |
.api_description | 2 <component name="org.eclipse.core.runtime.compatibility.registry_3.5.200.v20130514-1256" version="1.2"> 3 <plugin id="org.eclipse.core.runtime.compatibility.registry_3.5.200.v20130514-1256"/>
|
/prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-2.0/1.5/ |
_remote.repositories | 3 gmaven-runtime-2.0-1.5.jar>central= 4 gmaven-runtime-2.0-1.5.pom>central=
|
/prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-api/1.5/ |
_remote.repositories | 3 gmaven-runtime-api-1.5.pom>central= 4 gmaven-runtime-api-1.5.jar>central=
|
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.200.v20130514-1256/ |
.api_description | 2 <component name="org.eclipse.core.runtime.compatibility.registry_3.5.200.v20130514-1256" version="1.2"> 3 <plugin id="org.eclipse.core.runtime.compatibility.registry_3.5.200.v20130514-1256"/>
|
/art/runtime/native/ |
dalvik_system_ZygoteHooks.cc | 62 Runtime* runtime = Runtime::Current(); local 63 JavaVMExt* vm = runtime->GetJavaVM(); 88 Runtime* runtime = Runtime::Current(); local 89 runtime->AddCompilerOption("--compiler-filter=interpret-only"); 102 Runtime* runtime = Runtime::Current() local [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
MissingTokenException.js | 1 org.antlr.runtime.MissingTokenException = function(expecting, input, inserted) { 3 org.antlr.runtime.MissingTokenException.superclass.constructor.call( 10 org.antlr.runtime.MissingTokenException, 11 org.antlr.runtime.MismatchedTokenException, { 27 name: "org.antlr.runtime.MissingTokenException"
|
Parser.js | 4 org.antlr.runtime.Parser = function(input, state) { 5 org.antlr.runtime.Parser.superclass.constructor.call(this, state); 9 org.antlr.lang.extend(org.antlr.runtime.Parser, org.antlr.runtime.BaseRecognizer, { 12 org.antlr.runtime.Parser.superclass.reset.call(this); 29 var t = new org.antlr.runtime.CommonToken(expectedTokenType, tokenText); 32 if ( current.getType() === org.antlr.runtime.Token.EOF ) { 42 t.channel = org.antlr.runtime.BaseRecognizer.DEFAULT_TOKEN_CHANNEL; 63 org.antlr.runtime.Parser.superclass.traceIn.call( 68 org.antlr.runtime.Parser.superclass.traceOut.call [all...] |
/external/chromium_org/tools/find_runtime_symbols/ |
README | 1 This script maps runtime addresses to symbol names. It is robust over 2 Address Space Layout Randomization (ASLR) since it uses runtime addresses with 3 runtime mapping information (/proc/.../maps). 9 It is required to collect symbol information before mapping runtime addresses 14 The required 'maps' file is /proc/.../maps of the process at runtime.
|
/external/chromium_org/tools/gyp/test/win/ |
gyptest-cl-runtime-checks.py | 19 test.run_gyp('runtime-checks.gyp', chdir=CHDIR) 21 # Runtime checks disabled, should fail. 22 test.build('runtime-checks.gyp', 'test_brc_none', chdir=CHDIR, status=1) 24 # Runtime checks enabled, should pass. 25 test.build('runtime-checks.gyp', 'test_brc_1', chdir=CHDIR)
|
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/ |
Android.mk | 17 test_makefile := external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/Android.mk 19 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/get 23 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/explicit_bool 27 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/index 31 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/get_delete [all...] |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.eclipse.core.runtime_3.9.100.v20131218-1515.jar | |