HomeSort by relevance Sort by last modified time
    Searched refs:runtime (Results 51 - 75 of 1107) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skqp/src/compute/skc/
runtime.h 22 skc_runtime_host_perm_alloc(struct skc_runtime * const runtime,
27 skc_runtime_host_perm_free(struct skc_runtime * const runtime,
31 skc_runtime_host_temp_alloc(struct skc_runtime * const runtime,
38 skc_runtime_host_temp_free(struct skc_runtime * const runtime,
  /art/test/677-fsi/
run 19 exec ${RUN} $@ -Xcompiler-option --copy-dex-files=always --runtime-option -Xonly-use-system-oat-files --runtime-option -Xuse-stderr-logger
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
RewriteEmptyStreamException.java 28 package org.antlr.runtime.tree;
  /external/antlr/runtime/JavaScript/src/org/antlr/runtime/
FailedPredicateException.js 7 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
10 * @extends org.antlr.runtime.RecognitionException
12 org.antlr.runtime.FailedPredicateException = function(input, ruleName, predicateText){
13 org.antlr.runtime.FailedPredicateException.superclass.constructor.call(this, input);
19 org.antlr.runtime.FailedPredicateException,
20 org.antlr.runtime.RecognitionException,
21 /** @lends org.antlr.runtime.FailedPredicateException.prototype */
33 name: "org.antlr.runtime.FailedPredicateException
    [all...]
MismatchedTokenException.js 1 org.antlr.runtime.MismatchedTokenException = function(expecting, input) {
3 this.expecting = org.antlr.runtime.Token.INVALID_TOKEN_TYPE;
5 org.antlr.runtime.MismatchedTokenException.superclass.constructor.call(
12 org.antlr.runtime.MismatchedTokenException,
13 org.antlr.runtime.RecognitionException, {
18 name: "org.antlr.runtime.MismatchedTokenException"
UnwantedTokenException.js 2 org.antlr.runtime.UnwantedTokenException = function(expecting, input) {
4 org.antlr.runtime.UnwantedTokenException.superclass.constructor.call(
10 org.antlr.runtime.UnwantedTokenException,
11 org.antlr.runtime.MismatchedTokenException, {
17 if ( this.expecting===org.antlr.runtime.Token.INVALID_TOKEN_TYPE ) {
25 name: "org.antlr.runtime.UnwantedTokenException"
MismatchedNotSetException.js 1 org.antlr.runtime.MismatchedNotSetException = function(expecting, input) {
2 org.antlr.runtime.MismatchedNotSetException.superclass.constructor.call(this, expecting, input);
6 org.antlr.runtime.MismatchedNotSetException,
7 org.antlr.runtime.MismatchedSetException, {
12 name: "org.antlr.runtime.MismatchedNotSetException"
MismatchedRangeExceptions.js 1 org.antlr.runtime.MismatchedRangeException = function(a, b, input) {
6 org.antlr.runtime.MismatchedRangeException.superclass.constructor.call(
13 org.antlr.runtime.MismatchedRangeException,
14 org.antlr.runtime.RecognitionException, {
19 name: "org.antlr.runtime.MismatchedRangeException"
MismatchedSetException.js 1 org.antlr.runtime.MismatchedSetException = function(expecting, input) {
2 org.antlr.runtime.MismatchedSetException.superclass.constructor.call(
8 org.antlr.runtime.MismatchedSetException,
9 org.antlr.runtime.RecognitionException, {
14 name: "org.antlr.runtime.MismatchedSetException"
MismatchedTreeNodeException.js 1 org.antlr.runtime.MismatchedTreeNodeException = function(expecting, input) {
3 org.antlr.runtime.MismatchedTreeNodeException.superclass.constructor.call(
10 org.antlr.runtime.MismatchedTreeNodeException,
11 org.antlr.runtime.RecognitionException, {
16 name: "org.antlr.runtime.MismatchedTreeNodeException"
  /external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteEmptyStreamException.js 2 org.antlr.runtime.tree.RewriteEmptyStreamException = function(elementDescription) {
3 var sup = org.antlr.runtime.tree.RewriteEmptyStreamException.superclass;
7 org.antlr.lang.extend(org.antlr.runtime.tree.RewriteEmptyStreamException,
8 org.antlr.runtime.tree.RewriteCardinalityException, {
10 return "org.antlr.runtime.tree.RewriteEmptyStreamException";
TreeRuleReturnScope.js 6 org.antlr.runtime.tree.TreeRuleReturnScope = function(){};
8 org.antlr.lang.extend(org.antlr.runtime.tree.TreeRuleReturnScope,
9 org.antlr.runtime.RuleReturnScope,
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
LoggerRuntimeTest.java 12 package org.jacoco.core.runtime;
SystemPropertiesRuntimeTest.java 12 package org.jacoco.core.runtime;
  /external/libchrome/base/android/
java_runtime.cc 14 base::android::ScopedJavaLocalRef<jobject> runtime = local
16 *total_memory = JNI_Runtime::Java_Runtime_totalMemory(env, runtime);
17 *free_memory = JNI_Runtime::Java_Runtime_freeMemory(env, runtime);
  /external/smali/smali/src/main/java/org/jf/smali/
LexerErrorInterface.java 31 import org.antlr.runtime.CharStream;
32 import org.antlr.runtime.Lexer;
33 import org.antlr.runtime.RecognizerSharedState;
  /external/skia/src/compute/skc/platforms/cl_12/
cq_pool_cl.c 47 skc_runtime_cl_12_create_cq(struct skc_runtime * const runtime,
59 cq = clCreateCommandQueue(runtime->cl.context,
60 runtime->cl.device_id,
101 skc_cq_pool_create(struct skc_runtime * const runtime,
111 pool->cq = skc_runtime_host_perm_alloc(runtime,SKC_MEM_FLAGS_READ_WRITE,
114 pool->cq[ii] = skc_runtime_cl_12_create_cq(runtime,pool);
124 skc_cq_pool_dispose(struct skc_runtime * const runtime,
131 skc_runtime_host_perm_free(runtime,pool->cq);
152 skc_cq_pool_expand(struct skc_runtime * const runtime,
161 skc_runtime_host_perm_free(runtime,pool->cq)
    [all...]
runtime_cl_12.h 16 #include "runtime.h"
25 // 1. directly access the structures in the runtime sub-struct implementations
83 skc_runtime_path_host_retain(struct skc_runtime * const runtime,
88 skc_runtime_raster_host_retain(struct skc_runtime * const runtime,
94 skc_runtime_path_host_release(struct skc_runtime * const runtime,
99 skc_runtime_raster_host_release(struct skc_runtime * const runtime,
105 skc_runtime_path_host_flush(struct skc_runtime * const runtime,
110 skc_runtime_raster_host_flush(struct skc_runtime * const runtime,
121 skc_runtime_handle_device_acquire(struct skc_runtime * const runtime);
124 skc_runtime_handle_device_validate_retain(struct skc_runtime * const runtime,
    [all...]
  /external/skqp/src/compute/skc/platforms/cl_12/
cq_pool_cl.c 47 skc_runtime_cl_12_create_cq(struct skc_runtime * const runtime,
59 cq = clCreateCommandQueue(runtime->cl.context,
60 runtime->cl.device_id,
101 skc_cq_pool_create(struct skc_runtime * const runtime,
111 pool->cq = skc_runtime_host_perm_alloc(runtime,SKC_MEM_FLAGS_READ_WRITE,
114 pool->cq[ii] = skc_runtime_cl_12_create_cq(runtime,pool);
124 skc_cq_pool_dispose(struct skc_runtime * const runtime,
131 skc_runtime_host_perm_free(runtime,pool->cq);
152 skc_cq_pool_expand(struct skc_runtime * const runtime,
161 skc_runtime_host_perm_free(runtime,pool->cq)
    [all...]
runtime_cl_12.h 16 #include "runtime.h"
25 // 1. directly access the structures in the runtime sub-struct implementations
83 skc_runtime_path_host_retain(struct skc_runtime * const runtime,
88 skc_runtime_raster_host_retain(struct skc_runtime * const runtime,
94 skc_runtime_path_host_release(struct skc_runtime * const runtime,
99 skc_runtime_raster_host_release(struct skc_runtime * const runtime,
105 skc_runtime_path_host_flush(struct skc_runtime * const runtime,
110 skc_runtime_raster_host_flush(struct skc_runtime * const runtime,
121 skc_runtime_handle_device_acquire(struct skc_runtime * const runtime);
124 skc_runtime_handle_device_validate_retain(struct skc_runtime * const runtime,
    [all...]
  /cts/tools/dasm/src/java_cup/
parser.java 11 public class parser extends java_cup.runtime.lr_parser {
300 public java_cup.runtime.symbol do_action(
302 java_cup.runtime.lr_parser parser,
330 public java_cup.runtime.token scan()
427 public final java_cup.runtime.symbol CUP$do_action(
429 java_cup.runtime.lr_parser CUP$parser,
435 java_cup.runtime.symbol CUP$result;
443 CUP$result = new java_cup.runtime.symbol(/*empty*/27);
451 CUP$result = new java_cup.runtime.str_token(/*label_id*/30);
452 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top (…)
    [all...]
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyMessageBuilderContext.java 39 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) {
48 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf");
49 RubyClass cMessageBuilderContext = protobuf.defineClassUnder("MessageBuilderContext", runtime.getObject(), new ObjectAllocator() {
51 public IRubyObject allocate(Ruby runtime, RubyClass klazz) {
52 return new RubyMessageBuilderContext(runtime, klazz)
84 Ruby runtime = context.runtime; local
143 Ruby runtime = context.runtime; local
    [all...]
RubyEnumDescriptor.java 44 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) {
52 RubyModule mProtobuf = runtime.getClassFromPath("Google::Protobuf");
53 RubyClass cEnumDescriptor = mProtobuf.defineClassUnder("EnumDescriptor", runtime.getObject(), new ObjectAllocator() {
55 public IRubyObject allocate(Ruby runtime, RubyClass klazz) {
56 return new RubyEnumDescriptor(runtime, klazz);
59 cEnumDescriptor.includeModule(runtime.getEnumerable())
132 Ruby runtime = context.runtime; local
168 Ruby runtime = context.runtime; local
    [all...]
Utils.java 43 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());
69 Ruby runtime = context.runtime; local
77 throw runtime.newTypeError("Expected number type for integral field.");
90 num2ulong(context.runtime, value);
97 throw runtime.newTypeError("Expected number type for float field.");
101 throw runtime.newTypeError("Expected number type for double field.")
133 Ruby runtime = context.runtime; local
235 Ruby runtime = context.runtime; local
270 Ruby runtime = context.runtime; local
    [all...]
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
PreMain.java 16 import org.jacoco.core.runtime.AgentOptions;
17 import org.jacoco.core.runtime.IRuntime;
18 import org.jacoco.core.runtime.ModifiedSystemClassRuntime;
47 final IRuntime runtime = createRuntime(inst); local
48 runtime.startup(agent.getData());
49 inst.addTransformer(new CoverageTransformer(runtime, agentOptions,

Completed in 1302 milliseconds

1 23 4 5 6 7 8 91011>>