Home
last modified time | relevance | path

Searched refs:runtime (Results 1 – 25 of 1884) sorted by relevance

12345678910>>...76

/external/antlr/antlr-3.4/runtime/JavaScript/build/
Dantlr3.properties10 org/antlr/runtime/RecognizerSharedState.js,\
11 org/antlr/runtime/IndexOutOfBoundsExceptions.js,\
12 org/antlr/runtime/RecognitionException.js,\
13 org/antlr/runtime/MismatchedTokenException.js,\
14 org/antlr/runtime/UnwantedTokenException.js,\
15 org/antlr/runtime/MissingTokenException.js,\
16 org/antlr/runtime/NoViableAltException.js,\
17 org/antlr/runtime/EarlyExitException.js,\
18 org/antlr/runtime/MismatchedSetException.js,\
19 org/antlr/runtime/MismatchedNotSetException.js,\
[all …]
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
DUtils.java43 import org.jruby.runtime.Block;
44 import org.jruby.runtime.ThreadContext;
45 import org.jruby.runtime.builtin.IRubyObject;
64 return context.runtime.newSymbol(typeName.replace("TYPE_", "").toLowerCase()); in fieldTypeToRuby()
69 Ruby runtime = context.runtime; in checkType() local
77 throw runtime.newTypeError("Expected number type for integral field."); in checkType()
90 num2ulong(context.runtime, value); in checkType()
97 throw runtime.newTypeError("Expected number type for float field."); in checkType()
101 throw runtime.newTypeError("Expected number type for double field."); in checkType()
105 throw runtime.newTypeError("Invalid argument for boolean field."); in checkType()
[all …]
DRubyMessageBuilderContext.java39 import org.jruby.runtime.Binding;
40 import org.jruby.runtime.Block;
41 import org.jruby.runtime.ObjectAllocator;
42 import org.jruby.runtime.ThreadContext;
43 import org.jruby.runtime.builtin.IRubyObject;
47 public static void createRubyMessageBuilderContext(Ruby runtime) { in createRubyMessageBuilderContext() argument
48 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyMessageBuilderContext()
49 …ssageBuilderContext = protobuf.defineClassUnder("MessageBuilderContext", runtime.getObject(), new … in createRubyMessageBuilderContext()
51 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyMessageBuilderContext()
52 return new RubyMessageBuilderContext(runtime, klazz); in createRubyMessageBuilderContext()
[all …]
DRubyEnumDescriptor.java44 import org.jruby.runtime.Block;
45 import org.jruby.runtime.ObjectAllocator;
46 import org.jruby.runtime.ThreadContext;
47 import org.jruby.runtime.builtin.IRubyObject;
51 public static void createRubyEnumDescriptor(Ruby runtime) { in createRubyEnumDescriptor() argument
52 RubyModule mProtobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyEnumDescriptor()
53 …RubyClass cEnumDescriptor = mProtobuf.defineClassUnder("EnumDescriptor", runtime.getObject(), new … in createRubyEnumDescriptor()
55 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyEnumDescriptor()
56 return new RubyEnumDescriptor(runtime, klazz); in createRubyEnumDescriptor()
59 cEnumDescriptor.includeModule(runtime.getEnumerable()); in createRubyEnumDescriptor()
[all …]
DRubyDescriptor.java40 import org.jruby.runtime.Block;
41 import org.jruby.runtime.ObjectAllocator;
42 import org.jruby.runtime.ThreadContext;
43 import org.jruby.runtime.builtin.IRubyObject;
51 public static void createRubyDescriptor(Ruby runtime) { in createRubyDescriptor() argument
52 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyDescriptor()
53 …RubyClass cDescriptor = protobuf.defineClassUnder("Descriptor", runtime.getObject(), new ObjectAll… in createRubyDescriptor()
55 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyDescriptor()
56 return new RubyDescriptor(runtime, klazz); in createRubyDescriptor()
59 cDescriptor.includeModule(runtime.getEnumerable()); in createRubyDescriptor()
[all …]
DRubyBuilder.java38 import org.jruby.runtime.*;
39 import org.jruby.runtime.builtin.IRubyObject;
43 public static void createRubyBuilder(Ruby runtime) { in createRubyBuilder() argument
44 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyBuilder()
45 …RubyClass cBuilder = protobuf.defineClassUnder("Builder", runtime.getObject(), new ObjectAllocator… in createRubyBuilder()
47 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyBuilder()
48 return new RubyBuilder(runtime, klazz); in createRubyBuilder()
54 public RubyBuilder(Ruby runtime, RubyClass metaClass) { in RubyBuilder() argument
55 super(runtime, metaClass); in RubyBuilder()
56 this.cDescriptor = (RubyClass) runtime.getClassFromPath("Google::Protobuf::Descriptor"); in RubyBuilder()
[all …]
DRubyRepeatedField.java39 import org.jruby.runtime.Block;
40 import org.jruby.runtime.ObjectAllocator;
41 import org.jruby.runtime.ThreadContext;
42 import org.jruby.runtime.builtin.IRubyObject;
47 public static void createRubyRepeatedField(Ruby runtime) { in createRubyRepeatedField() argument
48 RubyModule mProtobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyRepeatedField()
49 RubyClass cRepeatedField = mProtobuf.defineClassUnder("RepeatedField", runtime.getObject(), in createRubyRepeatedField()
52 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyRepeatedField()
53 return new RubyRepeatedField(runtime, klazz); in createRubyRepeatedField()
57 cRepeatedField.includeModule(runtime.getEnumerable()); in createRubyRepeatedField()
[all …]
DRubyDescriptorPool.java40 import org.jruby.runtime.*;
41 import org.jruby.runtime.builtin.IRubyObject;
48 public static void createRubyDescriptorPool(Ruby runtime) { in createRubyDescriptorPool() argument
49 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyDescriptorPool()
50 …RubyClass cDescriptorPool = protobuf.defineClassUnder("DescriptorPool", runtime.getObject(), new O… in createRubyDescriptorPool()
52 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyDescriptorPool()
53 return new RubyDescriptorPool(runtime, klazz); in createRubyDescriptorPool()
58 …descriptorPool = (RubyDescriptorPool) cDescriptorPool.newInstance(runtime.getCurrentContext(), Blo… in createRubyDescriptorPool()
68 this.cBuilder = (RubyClass) context.runtime.getClassFromPath("Google::Protobuf::Builder"); in initialize()
85 return context.runtime.getNil(); in build()
[all …]
DRubyFieldDescriptor.java40 import org.jruby.runtime.ObjectAllocator;
41 import org.jruby.runtime.ThreadContext;
42 import org.jruby.runtime.builtin.IRubyObject;
46 public static void createRubyFileDescriptor(Ruby runtime) { in createRubyFileDescriptor() argument
47 RubyModule mProtobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyFileDescriptor()
48 …RubyClass cFieldDescriptor = mProtobuf.defineClassUnder("FieldDescriptor", runtime.getObject(), ne… in createRubyFileDescriptor()
50 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyFileDescriptor()
51 return new RubyFieldDescriptor(runtime, klazz); in createRubyFileDescriptor()
57 public RubyFieldDescriptor(Ruby runtime, RubyClass klazz) { in RubyFieldDescriptor() argument
58 super(runtime, klazz); in RubyFieldDescriptor()
[all …]
DRubyMessage.java38 import org.jruby.runtime.Block;
39 import org.jruby.runtime.Helpers;
40 import org.jruby.runtime.ThreadContext;
41 import org.jruby.runtime.builtin.IRubyObject;
67 final Ruby runtime = context.runtime; in initialize() local
68 … this.cRepeatedField = (RubyClass) runtime.getClassFromPath("Google::Protobuf::RepeatedField"); in initialize()
69 this.cMap = (RubyClass) runtime.getClassFromPath("Google::Protobuf::Map"); in initialize()
77 throw runtime.newArgumentError("expected Hash arguments."); in initialize()
84 … throw runtime.newTypeError("Expected symbols as hash keys in initialization map."); in initialize()
89 …throw runtime.newArgumentError("Expected Hash object as initializer value for map field '" + key.… in initialize()
[all …]
DRubyMap.java41 import org.jruby.internal.runtime.methods.DynamicMethod;
42 import org.jruby.runtime.Block;
43 import org.jruby.runtime.ObjectAllocator;
44 import org.jruby.runtime.ThreadContext;
45 import org.jruby.runtime.builtin.IRubyObject;
57 public static void createRubyMap(Ruby runtime) { in createRubyMap() argument
58 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyMap()
59 … RubyClass cMap = protobuf.defineClassUnder("Map", runtime.getObject(), new ObjectAllocator() { in createRubyMap()
65 cMap.includeModule(runtime.getEnumerable()); in createRubyMap()
121 throw context.runtime.newArgumentError("Invalid key type for map."); in initialize()
[all …]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.equinox.common_3.6.0.v20100503.jar ... () org.eclipse.core.internal.runtime.Activator activator org.eclipse.osgi.service ...
Dorg.eclipse.core.runtime_3.6.0.v20100505.jar ... Object object String name org.eclipse.core.runtime.Plugin plugin } org/eclipse/core/ ...
Dorg.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar ... internal/ org/eclipse/core/internal/runtime/ org/eclipse/core/internal/runtime ...
Dorg.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jar ... .String) throws org.eclipse.core.runtime.CoreException String scheme public static org.eclipse. ...
Dorg.eclipse.jdt.launching_3.5.100.v20100526.jar ... launching.AbstractRuntimeClasspathEntry extends org.eclipse.core.runtime.PlatformObject implements org.eclipse.jdt.launching ...
/external/vixl/
DCPPLINT.cfg20 filter=+runtime/arrays
21 filter=+runtime/casting
22 filter=+runtime/deprecated_fn
23 filter=+runtime/explicit
24 filter=+runtime/int
25 filter=+runtime/memset
26 filter=+runtime/mutex
27 filter=+runtime/nonconf
28 filter=+runtime/printf
29 filter=+runtime/printf_format
[all …]
/external/icu/tools/srcgen/currysrc/libs/
Dorg.eclipse.equinox.common_3.7.0.v20150402-1709.jar ... core.runtime final org.eclipse.core.runtime.SubMonitor$RootInfo extends java.lang.Object
Dorg.eclipse.core.runtime_3.11.0.v20150405-1723.jar ... .runtime public abstract org.eclipse.core.runtime.Preferences$IPropertyChangeListener extends java.lang.Object
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DLexer.js6 org.antlr.runtime.Lexer = function(input, state) {
8 org.antlr.runtime.Lexer.superclass.constructor.call(this, state);
15 org.antlr.lang.extend(org.antlr.runtime.Lexer, org.antlr.runtime.BaseRecognizer, {
18 org.antlr.runtime.Lexer.superclass.reset.call(this);
26 this.state.type = org.antlr.runtime.Token.INVALID_TOKEN_TYPE;
27 this.state.channel = org.antlr.runtime.Token.DEFAULT_CHANNEL;
40 this.state.channel = org.antlr.runtime.Token.DEFAULT_CHANNEL;
45 if ( this.input.LA(1)===org.antlr.runtime.CharStream.EOF ) {
46 return org.antlr.runtime.Token.EOF_TOKEN;
53 else if ( this.state.token==org.antlr.runtime.Token.SKIP_TOKEN ) {
[all …]
DBitSet.js14 org.antlr.runtime.BitSet = function(bits) {
16 bits = org.antlr.runtime.BitSet.BITS;
30 org.antlr.lang.augmentObject(org.antlr.runtime.BitSet, {
66 var bitPosition = bitNumber & org.antlr.runtime.BitSet.MOD_MASK;
79 return (el >> org.antlr.runtime.BitSet.LOG_BITS) + 1;
90 return bit >> org.antlr.runtime.BitSet.LOG_BITS; // bit / BITS
118 s = new org.antlr.runtime.BitSet(el2 + 1);
120 n = org.antlr.runtime.BitSet.wordNumber(i);
121 s.bits[n] |= org.antlr.runtime.BitSet.bitMask(i);
125 s = new org.antlr.runtime.BitSet(el + 1);
[all …]
DBaseRecognizer.js13 org.antlr.runtime.BaseRecognizer = function(state) {
21 this.state = state || new org.antlr.runtime.RecognizerSharedState();
24 org.antlr.lang.augmentObject(org.antlr.runtime.BaseRecognizer, {
53 DEFAULT_TOKEN_CHANNEL: org.antlr.runtime.Token.DEFAULT_CHANNEL,
59 HIDDEN: org.antlr.runtime.Token.HIDDEN_CHANNEL,
68 org.antlr.runtime.BaseRecognizer.prototype = {
161 if ( follow.member(org.antlr.runtime.Token.EOR_TOKEN_TYPE) ) {
165 follow.remove(org.antlr.runtime.Token.EOR_TOKEN_TYPE);
176 follow.member(org.antlr.runtime.Token.EOR_TOKEN_TYPE) )
194 throw new org.antlr.runtime.UnwantedTokenException(ttype, input);
[all …]
/external/deqp/scripts/
Dbuild_android_mustpass.py210 runtime = "11m"),
223 runtime = "30m"),
236 runtime = "1h50min"),
243 runtime = "5m"),
249 runtime = "5m"),
255 runtime = "5m"),
261 runtime = "5m"),
269 runtime = "10m"),
277 runtime = "10m"),
290 runtime = "4h40m"),
[all …]
/external/caliper/lib/
Djava-allocation-instrumenter-2.0.jar ... google/monitoring/ com/google/monitoring/runtime/ com/google/monitoring/runtime/instrumentation ...
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DCommonErrorNode.js1 org.antlr.runtime.tree.CommonErrorNode = function(input, start, stop, e) {
4 stop.getType()!=org.antlr.runtime.Token.EOF) )
18 org.antlr.lang.extend(org.antlr.runtime.tree.CommonErrorNode, org.antlr.runtime.tree.CommonTree, {
24 return org.antlr.runtime.Token.INVALID_TOKEN_TYPE;
29 if ( this.start instanceof org.antlr.runtime.Token ) {
32 if ( this.stop.getType() === org.antlr.runtime.Token.EOF ) {
37 else if ( this.start instanceof org.antlr.runtime.tree.Tree ) {
49 if ( this.trappedException instanceof org.antlr.runtime.MissingTokenException ) {
54 else if ( this.trappedException instanceof org.antlr.runtime.UnwantedTokenException ) {
59 else if ( this.trappedException instanceof org.antlr.runtime.MismatchedTokenException ) {
[all …]

12345678910>>...76