Searched refs:runtime (Results 76 - 100 of 774) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DRecognizerSharedState.js8 org.antlr.runtime.RecognizerSharedState = function() {
H A DRecognitionException.js27 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
31 org.antlr.runtime.RecognitionException = function(input) {
32 org.antlr.runtime.RecognitionException.superclass.constructor.call(this);
35 if ( input instanceof org.antlr.runtime.TokenStream ) {
40 if ( input instanceof org.antlr.runtime.tree.TreeNodeStream ) {
43 else if ( input instanceof org.antlr.runtime.CharStream ) {
57 org.antlr.lang.extend(org.antlr.runtime.RecognitionException, Error,
58 /** @lends org.antlr.runtime
[all...]
H A DBitSet.js14 org.antlr.runtime.BitSet = function(bits) {
16 bits = org.antlr.runtime.BitSet.BITS;
30 org.antlr.lang.augmentObject(org.antlr.runtime.BitSet, {
34 * @memberOf org.antlr.runtime.BitSet
41 * @memberOf org.antlr.runtime.BitSet
51 * @memberOf org.antlr.runtime.BitSet
62 * @memberOf org.antlr.runtime.BitSet
66 var bitPosition = bitNumber & org.antlr.runtime.BitSet.MOD_MASK;
75 * @memberOf org.antlr.runtime.BitSet
79 return (el >> org.antlr.runtime
[all...]
H A DBaseRecognizer.js10 * @param {org.antlr.runtime.RecognizerSharedState} [state] state object with
13 org.antlr.runtime.BaseRecognizer = function(state) {
19 * @type org.antlr.runtime.RecognizerSharedState
21 this.state = state || new org.antlr.runtime.RecognizerSharedState();
24 org.antlr.lang.augmentObject(org.antlr.runtime.BaseRecognizer, {
26 * @memberOf org.antlr.runtime.BaseRecognizer
32 * @memberOf org.antlr.runtime.BaseRecognizer
38 * @memberOf org.antlr.runtime.BaseRecognizer
44 * @memberOf org.antlr.runtime.BaseRecognizer
50 * @memberOf org.antlr.runtime
[all...]
H A DCommonToken.js1 org.antlr.runtime.CommonToken = function() {
5 this.channel = 0; // org.antlr.runtime.CommonToken.DEFAULT_CHANNEL
19 if ( oldToken instanceof org.antlr.runtime.CommonToken ) {
27 this.channel = 0; // org.antlr.runtime.CommonToken.DEFAULT_CHANNEL
37 org.antlr.lang.extend(org.antlr.runtime.CommonToken,
38 org.antlr.runtime.Token,
143 org.antlr.lang.augmentObject(org.antlr.runtime.Token, {
144 EOF_TOKEN: new org.antlr.runtime.CommonToken(org.antlr.runtime.CharStream.EOF),
145 INVALID_TOKEN: new org.antlr.runtime
[all...]
H A DANTLRStringStream.js5 * @extends org.antlr.runtime.CharStream
8 org.antlr.runtime.ANTLRStringStream = function(data) {
72 org.antlr.lang.extend(org.antlr.runtime.ANTLRStringStream,
73 org.antlr.runtime.CharStream,
74 /** @lends org.antlr.runtime.ANTLRStringStream.prototype */
118 return org.antlr.runtime.CharStream.EOF;
316 * @methodOf org.antlr.runtime.ANTLRStringStream.prototype
318 org.antlr.runtime.ANTLRStringStream.prototype.LT = org.antlr.runtime.ANTLRStringStream.prototype.LA;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/
H A Dmain.js12 if (chrome.runtime.lastError) {
14 'Error: ' + chrome.runtime.lastError.message;
/external/chromium_org/remoting/webapp/unittests/
H A Dchrome_mocks.js35 chromeMocks.runtime = {};
37 chromeMocks.runtime.Port = function() {
45 chromeMocks.runtime.Port.prototype.disconnect = function() {};
46 chromeMocks.runtime.Port.prototype.postMessage = function() {};
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DTreeParser.js5 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
[all...]
H A DCommonTreeAdaptor.js10 org.antlr.runtime.tree.CommonTreeAdaptor = function() {};
12 org.antlr.lang.extend(org.antlr.runtime.tree.CommonTreeAdaptor,
13 org.antlr.runtime.tree.BaseTreeAdaptor, {
29 return org.antlr.runtime.tree.CommonTreeAdaptor.superclass.create.apply(this, arguments);
31 return new org.antlr.runtime.tree.CommonTree(payload);
58 return new org.antlr.runtime.CommonToken(arguments[0], arguments[1]);
60 return new org.antlr.runtime.CommonToken(arguments[0]);
120 return org.antlr.runtime.Token.INVALID_TOKEN_TYPE;
130 if ( t instanceof org.antlr.runtime.tree.CommonTree ) {
/external/chromium_org/chrome/common/extensions/docs/examples/api/debugger/live-headers/
H A Dbackground.js13 if (chrome.runtime.lastError) {
14 alert(chrome.runtime.lastError.message);
/external/chromium_org/extensions/renderer/resources/
H A Dlast_error.js36 // We check to see if developers access runtime.lastError in order to decide
38 privates(targetChrome.runtime).accessedLastError = false;
39 $Object.defineProperty(targetChrome.runtime, 'lastError', {
42 privates(targetChrome.runtime).accessedLastError = true;
51 * Check if anyone has checked chrome.runtime.lastError since it was set.
57 return privates(targetChrome.runtime).accessedLastError === true;
71 if ('lastError' in targetChrome.runtime)
88 delete targetChrome.runtime.lastError;
89 delete privates(targetChrome.runtime).accessedLastError;
93 // chrome.runtime shoul
[all...]
/external/libcxx/test/diagnostics/std.exceptions/runtime.error/
H A DAndroid.mk17 test_makefile := external/libcxx/test/diagnostics/std.exceptions/runtime.error/Android.mk
19 test_name := diagnostics/std.exceptions/runtime.error/runtime_error
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeNodeStream.as28 package org.antlr.runtime.tree {
29 import org.antlr.runtime.IntStream;
30 import org.antlr.runtime.TokenStream;
H A DRewriteRuleTokenStream.as28 package org.antlr.runtime.tree {
29 import org.antlr.runtime.Token;
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/Android.mk
19 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/null_asgn
23 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/null_ctor
27 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/move01
31 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/nullptr_asgn
35 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/pointer_type
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dcheck_lint.sh23 ASAN_RTL_LINT_FILTER=${COMMON_LINT_FILTER},-runtime/int
24 ASAN_TEST_LINT_FILTER=${COMMON_LINT_FILTER},-runtime/sizeof,-runtime/int,-runtime/printf,-runtime/threadsafe_fn
27 TSAN_TEST_LINT_FILTER=${TSAN_RTL_LINT_FILTER},-runtime/threadsafe_fn,-runtime/int
32 DFSAN_RTL_LINT_FILTER=${COMMON_LINT_FILTER},-runtime/int,-runtime/printf,-runtime/reference
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime_3.6.0.v20100505.jar ... java.io.IOException e } org/eclipse/core/internal/runtime/ org/eclipse/core/internal/runtime/CompatibilityHelper.class CompatibilityHelper. ...
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestBufferedTreeNodeStream.java30 import org.antlr.runtime.CommonToken;
31 import org.antlr.runtime.tree.BufferedTreeNodeStream;
32 import org.antlr.runtime.tree.CommonTree;
33 import org.antlr.runtime.tree.Tree;
34 import org.antlr.runtime.tree.TreeNodeStream;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/catifier/
H A Devent_page.js50 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/smali/smali/src/main/java/org/jf/smali/
H A DSemanticException.java31 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;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DTracer.java28 package org.antlr.runtime.debug;
30 import org.antlr.runtime.IntStream;
31 import org.antlr.runtime.TokenStream;
/external/chromium_org/chrome/browser/resources/feedback/js/
H A Devent_handler.js70 chrome.runtime.sendMessage(
103 chrome.runtime.onMessage.addListener(feedbackReadyHandler);
104 chrome.runtime.onMessageExternal.addListener(requestFeedbackHandler);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dchrome_extension_externs.js98 chrome.runtime = {};
102 chrome.runtime.lastError = {};
108 chrome.runtime.lastError.message;
112 chrome.runtime.id;
118 chrome.runtime.getBackgroundPage = function(callback) {};
123 * Manifest information returned from chrome.runtime.getManifest. See
129 chrome.runtime.Manifest = function() {};
133 chrome.runtime.Manifest.prototype.name;
137 chrome.runtime.Manifest.prototype.version;
141 chrome.runtime
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DCharStream.as28 package org.antlr.runtime {

Completed in 689 milliseconds

1234567891011>>