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

<<31323334353637383940>>

  /external/libaom/libaom/tools/
cpplint.py 95 --filter=whitespace,runtime/printf,+runtime/printf_format
172 'runtime/arrays',
173 'runtime/casting',
174 'runtime/explicit',
175 'runtime/int',
176 'runtime/init',
177 'runtime/invalid_increment',
178 'runtime/member_string_references',
179 'runtime/memset'
    [all...]
  /external/libvpx/libvpx/tools/
cpplint.py 95 --filter=whitespace,runtime/printf,+runtime/printf_format
172 'runtime/arrays',
173 'runtime/casting',
174 'runtime/explicit',
175 'runtime/int',
176 'runtime/init',
177 'runtime/invalid_increment',
178 'runtime/member_string_references',
179 'runtime/memset'
    [all...]
  /art/runtime/gc/space/
image_space.cc 57 #include "runtime.h"
110 Runtime* runtime = Runtime::Current(); local
111 const std::vector<std::string>& boot_class_path = runtime->GetBootClassPath();
117 if (Runtime::Current()->IsZygote()) {
124 std::string dex2oat(Runtime::Current()->GetCompilerExecutable());
130 arg_vector.push_back("--runtime-arg");
146 runtime->GetBootClassPathLocations();
161 Runtime::Current()->AddCurrentRuntimeFeaturesAsDex2OatArguments(&arg_vector)
718 Runtime* runtime = Runtime::Current(); local
    [all...]
  /art/runtime/native/
dalvik_system_DexFile.cc 51 #include "runtime.h"
173 ClassLinker* linker = Runtime::Current()->GetClassLinker();
295 Runtime::Current()->GetOatFileManager().OpenDexFilesFromOat(std::move(dex_mem_maps),
319 Runtime::Current()->GetOatFileManager().OpenDexFilesFromOat(sourceName.c_str(),
367 Runtime::Current()->GetOatFileManager().RunBackgroundVerification(
380 Runtime* const runtime = Runtime::Current(); local
391 ClassLinker* const class_linker = runtime->GetClassLinker();
396 // Only delete the dex file if the dex cache is not found to prevent runtime crashe
878 Runtime* runtime = Runtime::Current(); local
    [all...]
  /build/soong/java/
sdk_library.go 72 // to, 2) droiddoc module that internally generates API stubs source files, 3) the real runtime
73 // shared library that implements the APIs, and 4) XML file for adding the runtime lib to the
74 // classpath at runtime if requested via <uses-library>.
77 // 1) disallowing linking to the runtime shared lib
95 // list of optional source files that are part of API but not part of runtime library.
307 // Module name of the runtime implementation library
312 // File path to the runtime implementation library
546 // Creates the xml file that publicizes the runtime library
674 // runtime libs and xml file. If requested, the stubs and docs are created twice
733 // for runtime
    [all...]
  /external/google-styleguide/cpplint/
cpplint_unittest.py 273 ' [runtime/indentation_namespace] [4]')
284 ' [runtime/indentation_namespace] [4]')
436 ' [runtime/int] [4]',
440 'long a = (int64) 65; // NOLINT(runtime/int)',
451 'Use int16/int64/etc, rather than the C type long [runtime/int] [4]',
457 ' [runtime/int] [4]')
546 ' [runtime/int] [4]')
553 ' [runtime/int] [4]')
654 # Test taking address of casts (runtime/casting)
659 ' [runtime/casting] [4]'
    [all...]
  /art/dex2oat/
dex2oat.cc 92 #include "runtime.h"
145 // All runtime-arg parameters are dropped.
146 if (strcmp(original_argv[i], "--runtime-arg") == 0) {
190 // It seems only "/apex/com.android.runtime/bin/dex2oat" is left, or not
298 UsageError(" On target the value 'runtime' can be used to detect features at run time.");
299 UsageError(" If target does not support run-time detection the value 'runtime'");
301 UsageError(" Note: the value 'runtime' has no effect if it is used on host.");
347 UsageError(" and the filter is not interpret-only or verify-none or verify-at-runtime, ");
391 UsageError(" --runtime-arg <argument>: used to specify various arguments for the runtime,");
593 Runtime* runtime = GetRuntime(); local
631 Runtime* runtime = runtime_; local
1516 Runtime* runtime = Runtime::Current(); local
    [all...]
  /art/runtime/
runtime_callbacks_test.cc 43 #include "runtime.h"
93 Runtime* runtime = Runtime::Current(); local
94 CHECK(runtime->AttachCurrentThread("ThreadLifecycle test thread", true, nullptr, false));
97 runtime->DetachCurrentThread();
105 Runtime::Current()->GetRuntimeCallbacks()->AddThreadLifecycleCallback(&cb_);
108 Runtime::Current()->GetRuntimeCallbacks()->RemoveThreadLifecycleCallback(&cb_);
224 Runtime::Current()->GetRuntimeCallbacks()->AddClassLoadCallback(&cb_);
227 Runtime::Current()->GetRuntimeCallbacks()->RemoveClassLoadCallback(&cb_)
    [all...]
art_method-inl.h 45 #include "runtime-inl.h"
93 Runtime::Current()->GetClassLinker()->LookupResolvedType(type_idx, this);
99 ObjPtr<mirror::Class> type = Runtime::Current()->GetClassLinker()->ResolveType(type_idx, this);
133 Runtime* runtime = Runtime::Current(); local
136 if (this == runtime->GetCalleeSaveMethod(CalleeSaveType(i))) {
145 bool result = this == Runtime::Current()->GetResolutionMethod();
152 bool result = this == Runtime::Current()->GetImtUnimplementedMethod();
167 return "<runtime method>"
    [all...]
  /build/blueprint/bootstrap/
bootstrap.go 23 "runtime"
44 numCpu := runtime.NumCPU()
326 if runtime.GOOS == "darwin" {
329 } else if runtime.GOOS == "linux" {
427 if runtime.GOOS == "darwin" {
430 } else if runtime.GOOS == "linux" {
  /build/make/core/
config_sanitizers.mk 143 # Disable sanitizers which need the UBSan runtime for host targets.
222 # always depends on the ASan runtime library, which defines these
330 # ASan runtime library must be the first in the link order.
371 # Pre-emptively add UBSAN minimal runtime incase a static library dependency requires it
382 my_cflags += -fsanitize-minimal-runtime
391 # For Scudo, we opt for the minimal runtime, unless some diagnostics are enabled.
394 my_cflags += -fsanitize-minimal-runtime
396 ifneq ($(filter -fsanitize-minimal-runtime,$(my_cflags)),)
415 # we switch to clang-4393122 (which adds the static ubsan runtime
420 # Diagnostic requires a runtime library, unless ASan or TSan are also enabled
    [all...]
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 28 package org.antlr.runtime.debug;
30 import org.antlr.runtime.*;
31 import org.antlr.runtime.misc.DoubleKeyMap;
36 * and record statistics about the runtime.
117 public static final String RUNTIME_STATS_FILENAME = "runtime.stats";
544 buf.append("ANTLR Runtime Report; Profile Version ");
  /external/syzkaller/pkg/host/
host_linux.go 12 "runtime"
168 if runtime.GOARCH == "amd64" || runtime.GOARCH == "386" {
172 if runtime.GOARCH == "arm64" {
358 if _, err := prog.GetTarget(runtime.GOOS, runtime.GOARCH); err != nil {
  /external/tensorflow/tensorflow/go/
tensor.go 30 "runtime"
93 runtime.SetFinalizer(t, (*Tensor).finalize)
132 runtime.SetFinalizer(t, (*Tensor).finalize)
150 runtime.SetFinalizer(t, (*Tensor).finalize)
489 // forth Tensors with the C API. We test for endianness at runtime because
  /build/soong/android/
variable.go 20 "runtime"
84 // debugging features that don't significantly impact runtime behavior. userdebug builds
331 if runtime.GOOS == "linux" {
  /external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
Ruby.stg 28 # Ruby runtime library version: <runtimeLibraryVersion()>
41 Failed to load the ANTLR3 runtime library (version <runtimeLibraryVersion()>):
57 # 1: try to load the ruby antlr3 runtime library from the system path
    [all...]
  /external/golang-protobuf/protoc-gen-go/
golden_test.go 14 "runtime"
276 if runtime.GOOS == "windows" {
284 if runtime.GOOS == "windows" {
  /external/v8/src/builtins/
builtins-internal-gen.cc 15 #include "src/runtime/runtime.h"
27 masm->TailCallRuntime(Runtime::kInterrupt);
31 masm->TailCallRuntime(Runtime::kStackGuard);
52 Label runtime(this, Label::kDeferred);
55 key, &runtime);
58 BIND(&runtime);
59 TailCallRuntime(Runtime::kGrowArrayElements, context, object, key);
67 Label runtime(this, Label::kDeferred);
70 TryGrowElementsCapacity(object, elements, PACKED_ELEMENTS, key, &runtime);
    [all...]
  /art/openjdkjvmti/
OpenjdkJvmTi.cc 50 #include "runtime.h"
92 art::Runtime* runtime = art::Runtime::Current(); local
93 return runtime->GetInstrumentation()->IsForcedInterpretOnly() || runtime->IsJavaDebuggable();
794 art::Runtime::Current(),
1528 art::Runtime* runtime = art::Runtime::Current(); local
    [all...]
ti_redefine.cc 79 #include "runtime.h"
250 art::Runtime* runtime = art::Runtime::Current(); local
251 art::ClassLinker* cl = runtime->GetClassLinker();
396 art::Runtime* runtime,
436 return RedefineClassesDirect(env, runtime, self, def_vector, error_msg);
440 art::Runtime* runtime,
    [all...]
  /art/test/082-inline-execute/src/
Main.java     [all...]
  /build/soong/ui/build/
signal.go 20 "runtime/debug"
  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
TokenRewriteStream.as 28 package org.antlr.runtime {
434 import org.antlr.runtime.Token;
  /external/antlr/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.java 1 // $ANTLR 3.2 Aug 13, 2010 19:41:25 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g 2010-08-13 19:42:13
3 import org.antlr.runtime.*;
4 import org.antlr.runtime.tree.*;import java.util.Stack;
51 public String getGrammarFileName() { return "/usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g"; }
56 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:8:1: program : ( declaration )+ ;
59 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:9:5: ( ( declaration )+ )
60 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:9:9: ( declaration )+
62 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:9:9: ( declaration )+
76 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:9:9: declaration
112 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:12:1: declaration : ( variable | ^( FUNC_DECL fun (…)
    [all...]
  /external/antlr/tool/src/main/java/org/antlr/tool/
CompositeGrammar.java 34 import org.antlr.runtime.RecognitionException;
35 import org.antlr.runtime.tree.CommonTreeNodeStream;
127 // then we must have room for the predefined runtime token types

Completed in 2361 milliseconds

<<31323334353637383940>>