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

<<11121314151617181920>>

  /external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
scan.js 35 console.log(chrome.runtime.lastError);
42 if (chrome.runtime.lastError) {
43 console.log('Scan failed: ' + chrome.runtime.lastError.message);
  /external/syzkaller/tools/syz-upgrade/
upgrade.go 18 "runtime"
33 target, err := prog.GetTarget(runtime.GOOS, runtime.GOARCH)
  /external/syzkaller/vendor/cloud.google.com/go/internal/version/
version.go 22 "runtime"
31 // Go returns the Go runtime version. The returned string
37 var goVersion = goVer(runtime.Version())
  /external/syzkaller/vendor/google.golang.org/appengine/internal/
net.go 13 "runtime"
41 runtime.SetFinalizer(lc, (*limitConn).Close) // shouldn't usually be required
53 runtime.SetFinalizer(lc, nil)
  /external/syzkaller/pkg/report/
gvisor.go 20 "fatal error: runtime: out of memory",
21 "fatal error: runtime: cannot allocate memory",
120 []byte("runtime error:"),
123 title: compile("runtime error:(.*)"),
124 fmt: "runtime error:%[1]v",
  /developers/build/lib/
buildSrc.jar 
  /art/test/
run-test 144 runtime="art"
197 runtime="jvm"
209 runtime="dalvik"
279 elif [ "x$1" = "x--runtime-option" ]; then
282 run_args="${run_args} --runtime-option $option"
401 elif [ "x$1" = "x--android-runtime-root" ]; then
404 echo "$0 missing argument to --android-runtime-root" 1>&2
408 run_args="${run_args} --android-runtime-root $1"
428 elif [ "x$1" = "x--runtime-extracted-zipapex" ]; then
433 run_args="${run_args} --host --runtime-extracted-zipapex $1
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/instr/
InstrumenterTest.java 37 import org.jacoco.core.runtime.RuntimeData;
38 import org.jacoco.core.runtime.SystemPropertiesRuntime;
69 private SystemPropertiesRuntime runtime; field in class:InstrumenterTest
75 runtime = new SystemPropertiesRuntime();
76 instrumenter = new Instrumenter(runtime);
77 runtime.startup(new RuntimeData());
82 runtime.shutdown();
  /external/swiftshader/third_party/LLVM/
Makefile 18 # 6. Build tools, runtime, docs.
34 tools/llvm-config tools runtime docs unittests
55 DIRS := $(filter-out tools runtime docs, $(DIRS))
60 DIRS := $(filter-out tools runtime docs, $(DIRS))
65 DIRS := $(filter-out runtime docs, $(DIRS))
71 tools/clang/runtime tools/clang/docs \
72 tools/lto runtime
92 DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
  /external/python/cpython3/Python/
pystate.c 39 _PyRuntimeState_Init_impl(_PyRuntimeState *runtime)
41 memset(runtime, 0, sizeof(*runtime));
43 _PyGC_Initialize(&runtime->gc);
44 _PyEval_Initialize(&runtime->ceval);
46 runtime->gilstate.check_enabled = 1;
51 runtime->gilstate.autoTSSkey = initial;
53 runtime->interpreters.mutex = PyThread_allocate_lock();
54 if (runtime->interpreters.mutex == NULL) {
57 runtime->interpreters.next_id = -1
    [all...]
  /art/compiler/optimizing/
intrinsics.cc 63 gc::Heap* heap = Runtime::Current()->GetHeap();
133 DCHECK(Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(boot_image_object));
158 // PC-relative load kinds and fall back to the runtime call.
166 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
206 Runtime* runtime = Runtime::Current(); local
207 if (runtime->GetHeap()->GetBootImageSpaces().empty()) {
218 if (runtime->UseJitCompilation()) {
219 if (!CheckIntegerCache(self, runtime->GetClassLinker(), boot_image_live_objects, cache))
290 Runtime* runtime = Runtime::Current(); local
    [all...]
  /art/tools/tracefast-plugin/
tracefast.cc 19 #include "runtime.h"
128 art::Runtime* runtime = art::Runtime::Current(); variable
133 runtime->GetInstrumentation()->AddListener(&gEmptyTracer,
137 runtime->GetInstrumentation()->EnableMethodTracing(kTracerInstrumentationKey, kNeedsInterpreter);
157 art::Runtime* runtime = art::Runtime::Current(); local
161 runtime->GetRuntimeCallbacks()->AddRuntimePhaseCallback(&gPhaseCallback)
    [all...]
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeAdaptor.java 28 package org.antlr.runtime.debug;
30 import org.antlr.runtime.Token;
31 import org.antlr.runtime.TokenStream;
32 import org.antlr.runtime.RecognitionException;
33 import org.antlr.runtime.tree.TreeAdaptor;
DebugEventRepeater.java 28 package org.antlr.runtime.debug;
30 import org.antlr.runtime.Token;
31 import org.antlr.runtime.RecognitionException;
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
CoverageTransformerTest.java 29 import org.jacoco.core.runtime.AbstractRuntime;
30 import org.jacoco.core.runtime.AgentOptions;
49 private StubRuntime runtime; field in class:CoverageTransformerTest
57 runtime = new StubRuntime();
234 return new CoverageTransformer(runtime, options, recorder);
  /external/smali/smali/src/main/java/org/jf/smali/
Smali.java 35 import org.antlr.runtime.CommonTokenStream;
36 import org.antlr.runtime.Token;
37 import org.antlr.runtime.TokenSource;
38 import org.antlr.runtime.tree.CommonTree;
39 import org.antlr.runtime.tree.CommonTreeNodeStream;
  /cts/tools/dasm/etc/
java_cup.jar 
java_cup.jar.old 
  /art/runtime/
stack.cc 42 #include "runtime.h"
115 DCHECK_EQ(Runtime::Current()->GetClassLinker()->GetImagePointerSize(), kRuntimePointerSize);
588 Runtime* runtime = Runtime::Current(); local
589 if (runtime->UseJitCompilation() &&
590 runtime->GetJit()->GetCodeCache()->ContainsPc(reinterpret_cast<const void*>(pc))) {
599 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
605 if (runtime->UseJitCompilation() && runtime->GetJit()->GetCodeCache()->ContainsPc(code))
630 Runtime* const runtime = Runtime::Current(); local
701 Runtime* runtime = Runtime::Current(); local
783 Runtime* runtime = Runtime::Current(); local
    [all...]
intern_table.cc 128 Runtime* runtime = Runtime::Current(); local
129 if (runtime->IsActiveTransaction()) {
130 runtime->RecordStrongStringInsertion(s);
140 Runtime* runtime = Runtime::Current(); local
141 if (runtime->IsActiveTransaction()) {
142 runtime->RecordWeakStringInsertion(s)
153 Runtime* runtime = Runtime::Current(); local
462 Runtime* const runtime = Runtime::Current(); local
    [all...]
module_exclusion_test.cc 25 #include "runtime.h"
52 Runtime* runtime = Runtime::Current(); local
53 ASSERT_TRUE(runtime->IsAotCompiler());
54 ClassLinker* class_linker = runtime->GetClassLinker();
  /art/openjdkjvmti/
deopt_manager.cc 74 return !art::Runtime::Current()->IsJavaDebuggable() ||
105 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks();
113 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks();
161 art::Runtime::Current()->GetThreadList()->ForEach(func, &dtdc);
168 art::Runtime* runtime = art::Runtime::Current(); local
170 if (!runtime->IsJavaDebuggable()) {
175 LOG(INFO) << "Openjdkjvmti plugin loaded on a non-debuggable runtime. Changing runtime to
    [all...]
  /art/test/712-varhandle-invocations/src/
VarHandleAccessorExceptionTests.java 177 Runtime runtime = null; local
179 runtime = (Runtime) vh.getAndSet(this, 44);
183 assertEquals(null, runtime);
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreePatternParser.java 28 package org.antlr.runtime.tree;
30 import org.antlr.runtime.Token;
31 import org.antlr.runtime.CommonToken;
  /external/antlr/tool/src/test/java/org/antlr/test/
TestInterpretedParsing.java 30 import org.antlr.runtime.ANTLRStringStream;
31 import org.antlr.runtime.CharStream;
32 import org.antlr.runtime.tree.ParseTree;

Completed in 1317 milliseconds

<<11121314151617181920>>