HomeSort by relevance Sort by last modified time
    Searched full:runtime (Results 501 - 525 of 18263) sorted by null

<<21222324252627282930>>

  /art/runtime/arch/arm64/
quick_method_frame_info_arm64.h 22 #include "runtime.h" // for Runtime::CalleeSaveType.
62 constexpr uint32_t Arm64CalleeSaveCoreSpills(Runtime::CalleeSaveType type) {
64 (type == Runtime::kRefsAndArgs ? kArm64CalleeSaveArgSpills : 0) |
65 (type == Runtime::kSaveAll ? kArm64CalleeSaveAllSpills : 0);
68 constexpr uint32_t Arm64CalleeSaveFpSpills(Runtime::CalleeSaveType type) {
70 (type == Runtime::kRefsAndArgs ? kArm64CalleeSaveFpArgSpills: 0) |
71 (type == Runtime::kSaveAll ? kArm64FpAllSpills : 0);
74 constexpr uint32_t Arm64CalleeSaveFrameSize(Runtime::CalleeSaveType type) {
80 constexpr QuickMethodFrameInfo Arm64CalleeSaveMethodFrameInfo(Runtime::CalleeSaveType type)
    [all...]
  /external/smali/smali-integration-tests/src/test/smali/junit-tests/InstructionTests/Format21c/
Format21c.smali 13 .annotation runtime Lorg/junit/Test;
25 .annotation runtime Lorg/junit/Test;
42 .annotation runtime Lorg/junit/Test;
62 .annotation runtime Lorg/junit/Test;
83 .annotation runtime Lorg/junit/Test;
102 .annotation runtime Lorg/junit/Test;
116 .annotation runtime Lorg/junit/Test;
130 .annotation runtime Lorg/junit/Test;
144 .annotation runtime Lorg/junit/Test;
158 .annotation runtime Lorg/junit/Test
    [all...]
  /art/test/304-method-tracing/
run 18 exec ${RUN} "$@" --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file:${DEX_LOCATION}/trace.bin
  /dalvik/dx/tests/115-merge/testdata/
Annotated.java 17 @Retention(RetentionPolicy.RUNTIME)
25 @Retention(RetentionPolicy.RUNTIME)
  /external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
TestDFA.as 1 package org.antlr.runtime.test {
4 import org.antlr.runtime.DFA;
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t014parser.html 19 var cstream = new org.antlr.runtime.ANTLRStringStream("var foobar; gnarz(); var blupp; flupp ( ) ;"),
21 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
40 var cstream = new org.antlr.runtime.ANTLRStringStream("var; foo();"),
42 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
52 var cstream = new org.antlr.runtime.ANTLRStringStream("var foobar(); gnarz();"),
54 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
70 var cstream = new org.antlr.runtime.ANTLRStringStream("gnarz(; flupp();"),
72 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
  /external/antlr/antlr-3.4/runtime/Perl5/examples/id/
id.pl 6 use ANTLR::Runtime::ANTLRStringStream;
12 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => "Hello World!\n42\n" });
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
MissingTokenException.pm 1 package ANTLR::Runtime::MissingTokenException;
8 extends 'ANTLR::Runtime::MismatchedTokenException';
  /external/chromium_org/chrome/browser/resources/google_now/
background_test_util.js 27 mockChromeEvent(instrumented, 'runtime.onInstalled');
28 mockChromeEvent(instrumented, 'runtime.onStartup');
  /external/chromium_org/chrome/renderer/resources/extensions/
browser_action_custom_bindings.js 10 var getExtensionViews = requireNative('runtime').GetExtensionViews;
27 if (chrome.runtime.lastError) {
  /external/chromium_org/extensions/browser/
test_runtime_api_delegate.h 9 #include "extensions/browser/api/runtime/runtime_api_delegate.h"
27 virtual bool GetPlatformInfo(core_api::runtime::PlatformInfo* info) OVERRIDE;
  /external/chromium_org/extensions/shell/browser/
shell_runtime_api_delegate.h 9 #include "extensions/browser/api/runtime/runtime_api_delegate.h"
27 virtual bool GetPlatformInfo(core_api::runtime::PlatformInfo* info) OVERRIDE;
  /external/chromium_org/third_party/npapi/npspy/extern/java/
jriext.h 39 * Java Runtime Interface -- Extension Interfaces
58 /* Runtime */
65 (JRI_CALLBACK* JRICollectionStartProc)(JRIRuntimeInstance* runtime);
68 (JRI_CALLBACK* JRICollectionEndProc)(JRIRuntimeInstance* runtime);
106 JRIRTMode_Unrestricted, /* no C level runtime checks */
107 JRIRTMode_None /* no runtime access allowed */
114 (*JRI_DisposeRuntime_t)(JRIRuntimeInstance* runtime);
121 (*JRI_SetIOMode_t)(JRIRuntimeInstance* runtime, JRIIOModeFlags mode);
128 (*JRI_SetFSMode_t)(JRIRuntimeInstance* runtime, JRIFSModeFlags mode);
131 ** Change the JRI runtime mode. The JRI runtime mode is the lowes
    [all...]
  /external/chromium_org/third_party/skia/include/gpu/
GrUserConfig.h 24 * in vram. The value is only a default and can be overridden at runtime.
30 * in vram. The value is only a default and can be overridden at runtime.
  /external/clang/test/CXX/expr/expr.post/expr.call/
p7-0x.cpp 27 vararg(x2); // expected-error{{cannot pass object of non-trivial type 'X2' through variadic function; call will abort at runtime}}
29 vararg(x4); // expected-error{{cannot pass object of non-trivial type 'X4' through variadic function; call will abort at runtime}}
  /external/clang/test/CodeGenCXX/
dynamic_cast-no-rtti.cpp 13 // does not use runtime support.
21 // runtime support.
  /external/clang/test/CodeGenObjC/
ivars.m 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s
2 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s
objc-read-weak-byref.m 1 // RUN: %clang_cc1 -fblocks -fobjc-gc -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -emit-llvm %s -o - | \
3 // RUN: %clang_cc1 -fblocks -fobjc-gc -triple i386-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -emit-llvm %s -o - | \
objc2-new-gc-api-strongcast.m 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -fblocks -fobjc-gc -emit-llvm -o %t %s
3 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -fblocks -fobjc-gc -emit-llvm -o %t %s
objc2-strong-cast-1.m 1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
2 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
objc2-weak-assign.m 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
3 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
objc2-weak-block-call.m 1 // RUN: %clang_cc1 -fblocks -fobjc-gc -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -emit-llvm %s -o - | FileCheck -check-prefix CHECK-LP64 %s
2 // RUN: %clang_cc1 -fblocks -fobjc-gc -triple i386-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -emit-llvm %s -o - | FileCheck -check-prefix CHECK-LP32 %s
objc2-weak-compare.m 1 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
2 // RUN: %clang_cc1 -x objective-c++ -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
objc2-write-barrier-4.m 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
4 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -fobjc-gc -emit-llvm -o %t %s
objfw.m 1 // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -fobjc-runtime=objfw -emit-llvm -o - %s | FileCheck %s
3 // Test the ObjFW runtime.

Completed in 673 milliseconds

<<21222324252627282930>>