OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:runtime
(Results
1401 - 1425
of
18263
) sorted by null
<<
51
52
53
54
55
56
57
58
59
60
>>
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
Antlr3.Runtime.Tests (VS2005).csproj
11
<RootNamespace>Antlr.
Runtime
.Tests</RootNamespace>
12
<AssemblyName>Antlr3.
Runtime
.Tests</AssemblyName>
53
<ProjectReference Include="..\Antlr3.
Runtime
\Antlr3.
Runtime
(VS2005).csproj">
55
<Name>Antlr3.
Runtime
(VS2005)</Name>
Antlr3.Runtime.Tests (VS2008).csproj
11
<RootNamespace>Antlr.
Runtime
.Tests</RootNamespace>
12
<AssemblyName>Antlr3-2.
Runtime
.Tests.DotNet20</AssemblyName>
57
<ProjectReference Include="..\Antlr3.
Runtime
\Antlr3.
Runtime
(VS2008).csproj">
59
<Name>Antlr3.
Runtime
(VS2008)</Name>
/external/antlr/antlr-3.4/runtime/Perl5/t/examples/
expr.t
7
use ANTLR::
Runtime
::Test;
62
use ANTLR::
Runtime
::ANTLRStringStream;
63
use ANTLR::
Runtime
::CommonTokenStream;
75
my $input = ANTLR::
Runtime
::ANTLRStringStream->new({ input => $in });
78
my $tokens = ANTLR::
Runtime
::CommonTokenStream->new({ token_source => $lexer });
simplecalc.t
7
use ANTLR::
Runtime
::Test;
46
use ANTLR::
Runtime
::ANTLRStringStream;
47
use ANTLR::
Runtime
::CommonTokenStream;
48
use ANTLR::
Runtime
::RecognitionException;
60
my $input = ANTLR::
Runtime
::ANTLRStringStream->new({ input => $example });
62
my $tokens = ANTLR::
Runtime
::CommonTokenStream->new({ token_source => $lexer });
73
if (my $ex = ANTLR::
Runtime
::RecognitionException->caught()) {
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/catifier/
event_page.js
50
if (chrome.
runtime
.lastError) {
51
console.error('Error adding rules: ' + chrome.
runtime
.lastError);
73
if (chrome.
runtime
.lastError) {
74
console.error('Error clearing rules: ' + chrome.
runtime
.lastError);
82
chrome.
runtime
.onInstalled.addListener(setup);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.variables_3.2.400.v20100505.jar
org.eclipse.debug.core_3.6.0.v20100519.jar
org.eclipse.core.expressions_3.4.200.v20100505.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformanceResultsPreferenceInitializer.java
13
import org.eclipse.core.
runtime
.preferences.AbstractPreferenceInitializer;
14
import org.eclipse.core.
runtime
.preferences.DefaultScope;
15
import org.eclipse.core.
runtime
.preferences.IEclipsePreferences;
16
import org.eclipse.core.
runtime
.preferences.IScopeContext;
30
* @see org.eclipse.core.
runtime
.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
/external/smali/smali/src/main/java/org/jf/smali/
SemanticException.java
31
import org.antlr.
runtime
.CommonToken;
32
import org.antlr.
runtime
.IntStream;
33
import org.antlr.
runtime
.RecognitionException;
34
import org.antlr.
runtime
.Token;
35
import org.antlr.
runtime
.tree.CommonTree;
/frameworks/base/docs/html/reference/renderscript/
index.html
27
<div class="textblock"><p>RenderScript is a high-performance
runtime
that provides compute operations at the native level. RenderScript code is compiled on devices at
runtime
to allow platform-independence as well. This reference documentation describes the RenderScript
runtime
APIs, which you can utilize to write RenderScript code in C99. The RenderScript compute header files are automatically included for you.</p>
28
<p>To use RenderScript, you need to utilize the RenderScript
runtime
APIs documented here as well as the Android framework APIs for RenderScript. For documentation on the Android framework APIs, see the <a href="http://developer.android.com/reference/android/renderscript/package-summary.html" target="_parent">android.renderscript</a> package reference. For more information on how to develop with RenderScript and how the
runtime
and Android framework APIs interact, see the <a href="http://developer.android.com/guide/topics/renderscript/index.html" target="_parent">RenderScript developer guide</a> and the <a href="http://developer.android.com/resources/samples/RenderScript/index.html" target="_parent">RenderScript samples</a>. </p>
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/
environment.ipp
18
// Boost.
Runtime
.Parameter
19
#include <boost/test/utils/
runtime
/config.hpp>
20
#include <boost/test/utils/
runtime
/validation.hpp>
22
#include <boost/test/utils/
runtime
/env/variable.hpp>
39
// **************
runtime
::environment ************** //
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
TreeParser.js
5
org.antlr.
runtime
.tree.TreeParser = function(input) {
6
org.antlr.
runtime
.tree.TreeParser.superclass.constructor.call(this, arguments[1]);
11
var TP = org.antlr.
runtime
.tree.TreeParser;
14
DOWN: org.antlr.
runtime
.Token.DOWN,
15
UP: org.antlr.
runtime
.Token.UP
18
org.antlr.lang.extend(TP, org.antlr.
runtime
.BaseRecognizer, {
46
return new org.antlr.
runtime
.tree.CommonTree(new org.antlr.
runtime
.CommonToken(expectedTokenType, tokenText));
65
while ( tokenType!==org.antlr.
runtime
.Token.EOF &&
86
throw new org.antlr.
runtime
.MismatchedTreeNodeException(ttype, input)
[
all
...]
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t012lexerXML.html
91
stream = new org.antlr.
runtime
.ANTLRStringStream(xinput),
97
if (token.type == org.antlr.
runtime
.Token.EOF) {
111
stream = new org.antlr.
runtime
.ANTLRStringStream(input),
118
if (token.type == org.antlr.
runtime
.Token.EOF) {
124
assert(exc instanceof org.antlr.
runtime
.NoViableAltException);
137
stream = new org.antlr.
runtime
.ANTLRStringStream(input),
144
if (token.type == org.antlr.
runtime
.Token.EOF) {
150
assert(exc instanceof org.antlr.
runtime
.MismatchedSetException);
163
stream = new org.antlr.
runtime
.ANTLRStringStream(input),
170
if (token.type == org.antlr.
runtime
.Token.EOF)
[
all
...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableLexer.m
4
* - From the grammar source file : /usr/local/ANTLR3-ObjC2.0-
Runtime
/Framework/examples/scopes/SymbolTable.g
9
* C language generator and
runtime
by Jim Idle, jimi|hereisanat|idle|dotgoeshere|ws.
40
// $ANTLR 3.2 Aug 19, 2010 17:16:04 /usr/local/ANTLR3-ObjC2.0-
Runtime
/Framework/examples/scopes/SymbolTable.g 2010-08-19 17:16:47
158
[ANTLRBaseRecognizer setGrammarFileName:@"/usr/local/ANTLR3-ObjC2.0-
Runtime
/Framework/examples/scopes/SymbolTable.g"];
199
// /usr/local/ANTLR3-ObjC2.0-
Runtime
/Framework/examples/scopes/SymbolTable.g:7:6: ( 'method' ) // ruleBlockSingleAlt
200
// /usr/local/ANTLR3-ObjC2.0-
Runtime
/Framework/examples/scopes/SymbolTable.g:7:8: 'method' // alt
229
// /usr/local/ANTLR3-ObjC2.0-
Runtime
/Framework/examples/scopes/SymbolTable.g:8:6: ( '(' ) // ruleBlockSingleAlt
230
// /usr/local/ANTLR3-ObjC2.0-
Runtime
/Framework/examples/scopes/SymbolTable.g:8:8: '(' // alt
259
// /usr/local/ANTLR3-ObjC2.0-
Runtime
/Framework/examples/scopes/SymbolTable.g:9:6: ( ')' ) // ruleBlockSingleAlt
260
// /usr/local/ANTLR3-ObjC2.0-
Runtime
/Framework/examples/scopes/SymbolTable.g:9:8: ')' // al
[
all
...]
/external/chromium_org/extensions/common/api/
_api_features.json
22
"app.
runtime
": [{
94
"
runtime
": {
99
"
runtime
.getManifest": {
102
"
runtime
.connect": {
113
"
runtime
.getURL": {
116
"
runtime
.id": {
119
"
runtime
.lastError": {
124
"
runtime
.onConnect": {
127
"
runtime
.onMessage": {
130
"
runtime
.sendMessage":
[
all
...]
/prebuilts/misc/common/swig/include/2.0.11/go/
goruntime.swg
4
* Go
runtime
code for the various generated files.
7
%insert(
runtime
) %{
17
%insert(
runtime
) %{
22
%insert(
runtime
) %{
27
%insert(
runtime
) %{
33
%insert(
runtime
) %{
43
%insert(
runtime
) %{
89
#include "
runtime
.h"
102
%insert(
runtime
) %{
172
%insert(
runtime
) %
[
all
...]
/external/antlr/antlr-3.4/runtime/Perl5/t/
lexer.t
10
use ANTLR::
Runtime
::Test;
34
use ANTLR::
Runtime
::ANTLRStringStream;
37
my $input = ANTLR::
Runtime
::ANTLRStringStream->new({ input => '123' });
59
use ANTLR::
Runtime
::ANTLRStringStream;
62
my $input = ANTLR::
Runtime
::ANTLRStringStream->new({ input => "Hello World!\n42\n" });
107
use ANTLR::
Runtime
::ANTLRStringStream;
113
my $input = ANTLR::
Runtime
::ANTLRStringStream->new(<< 'XML');
/external/chromium_org/cc/output/
geometry_binding.cc
29
COMPILE_ASSERT(sizeof(Quad) == 24 * sizeof(float), // NOLINT(
runtime
/sizeof)
32
sizeof(QuadIndex) == 6 * sizeof(uint16_t), // NOLINT(
runtime
/sizeof)
83
3 * sizeof(float)), // NOLINT(
runtime
/sizeof)
85
sizeof(float)), // NOLINT(
runtime
/sizeof)
93
6 * sizeof(float), // NOLINT(
runtime
/sizeof)
100
6 * sizeof(float), // NOLINT(
runtime
/sizeof)
107
6 * sizeof(float), // NOLINT(
runtime
/sizeof)
/external/chromium_org/extensions/renderer/resources/
extension_custom_bindings.js
10
var runtimeNatives = requireNative('
runtime
');
69
// Alias several messaging deprecated APIs to their
runtime
counterparts.
81
if (chrome.
runtime
&&
82
$Object.hasOwnProperty(chrome.
runtime
, alias) &&
83
chrome.
runtime
.__lookupGetter__(alias) === undefined) {
84
extension[alias] = chrome.
runtime
[alias];
96
var port = chrome.
runtime
.connect(targetId || extensionId,
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
id_policy.hpp
18
// Boost.
Runtime
.Parameter
19
#include <boost/test/utils/
runtime
/config.hpp>
21
#include <boost/test/utils/
runtime
/cla/fwd.hpp>
22
#include <boost/test/utils/
runtime
/cla/modifier.hpp>
23
#include <boost/test/utils/
runtime
/cla/argv_traverser.hpp>
25
#include <boost/test/utils/
runtime
/cla/iface/id_policy.hpp>
141
# include <boost/test/utils/
runtime
/cla/id_policy.ipp>
/prebuilts/tools/common/eclipse/
org.eclipse.core.expressions_3.4.200.v20100505.jar
/prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar
/external/chromium_org/v8/src/compiler/
js-operator.h
183
const Operator*
Runtime
(
Runtime
::FunctionId function, int arguments) {
184
const
Runtime
::Function* f =
Runtime
::FunctionForId(function);
186
OP1(JSCallRuntime,
Runtime
::FunctionId, function, Operator::kNoProperties,
216
// Specialization for static parameters of type {
Runtime
::FunctionId}.
218
struct StaticParameterTraits<
Runtime
::FunctionId> {
219
static OStream& PrintTo(OStream& os,
Runtime
::FunctionId val) { // NOLINT
220
const
Runtime
::Function* f =
Runtime
::FunctionForId(val)
[
all
...]
/external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar
Completed in 875 milliseconds
<<
51
52
53
54
55
56
57
58
59
60
>>