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

<<51525354555657585960>>

  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
CommonTokenStream.pm 1 package ANTLR::Runtime::CommonTokenStream;
7 use ANTLR::Runtime::CharStream;
8 use ANTLR::Runtime::Token;
9 use ANTLR::Runtime::TokenSource;
17 with 'ANTLR::Runtime::IntStream',
18 'ANTLR::Runtime::TokenStream';
22 does => 'ANTLR::Runtime::TokenSource',
27 isa => 'ArrayRef[ANTLR::Runtime::Token]',
44 default => ANTLR::Runtime::Token->DEFAULT_CHANNEL,
71 $self->channel(ANTLR::Runtime::Token->DEFAULT_CHANNEL)
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 36 #include "runtime.h"
46 return Runtime::Current()->GetHeap()->GetTargetHeapUtilization();
50 Runtime::Current()->GetHeap()->SetTargetHeapUtilization(target);
71 Runtime* runtime = Runtime::Current(); local
73 runtime->GetClassLinker()->FindArrayClass(soa.Self(), &element_class);
77 gc::AllocatorType allocator = runtime->GetHeap()->GetCurrentNonMovingAllocator();
95 Runtime* runtime = Runtime::Current() local
432 Runtime* runtime = Runtime::Current(); local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/templates/articles/
messaging.html 30 $(ref:runtime.sendMessage)
45 chrome.runtime.sendMessage({greeting: "hello"}, function(response) {
64 $(ref:runtime.onMessage)
68 chrome.runtime.onMessage.addListener(
93 using $(ref:runtime.connect)
109 $(ref:runtime.Port)
117 var port = chrome.runtime.connect({name: "knockknock"});
136 $(ref:runtime.onConnect)
140 $(ref:runtime.Port)
144 chrome.runtime.onConnect.addListener(function(port)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t047treeparser.html 93 var cstream = new org.antlr.runtime.ANTLRStringStream(xinput),
95 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
101 var nodes = new org.antlr.runtime.tree.CommonTreeNodeStream(r.getTree());
110 var cstream = new org.antlr.runtime.ANTLRStringStream("\nchar c;\n"),
112 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
116 var nodes = new org.antlr.runtime.tree.CommonTreeNodeStream(r.getTree());
t001lexer.html 26 var stream = new org.antlr.runtime.ANTLRStringStream("0"),
38 var stream = new org.antlr.runtime.ANTLRStringStream('1'),
46 assert(e instanceof org.antlr.runtime.MismatchedTokenException);
t020fuzzy.html 18 "import org.antlr.runtime.*;",
45 var cstream = new org.antlr.runtime.ANTLRStringStream(xinput),
47 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/zoom/
popup.js 77 if (chrome.runtime.lastError)
78 console.log('[ZoomDemoExtension] ' + chrome.runtime.lastError.message);
96 if (chrome.runtime.lastError)
97 console.log('[ZoomDemoExtension] ' + chrome.runtime.lastError.message);
127 if (chrome.runtime.lastError) {
129 chrome.runtime.lastError.message);
  /external/chromium_org/third_party/icu/source/test/perf/leperf/
letrperf.cpp 132 double runTime = 2.0;
133 printf("Test of LETableReference<> timing. %.1fs per run.\n", runTime);
150 time_taken = utimer_loopUntilDone(runTime, &loopCount, x, y); \
155 double oldTime = runTime;
156 runTime = 0.25;
161 runTime = oldTime;
  /external/icu/icu4c/source/test/perf/leperf/
letrperf.cpp 132 double runTime = 2.0;
133 printf("Test of LETableReference<> timing. %.1fs per run.\n", runTime);
150 time_taken = utimer_loopUntilDone(runTime, &loopCount, x, y); \
155 double oldTime = runTime;
156 runTime = 0.25;
161 runTime = oldTime;
  /external/junit/src/junit/textui/
ResultPrinter.java 28 synchronized void print(TestResult result, long runTime) {
29 printHeader(runTime);
43 protected void printHeader(long runTime) {
45 getWriter().println("Time: "+elapsedTimeAsString(runTime));
103 protected String elapsedTimeAsString(long runTime) {
107 return Double.toString((double)runTime/1000);
  /external/lldb/source/DataFormatters/
Cocoa.cpp 35 ObjCLanguageRuntime* runtime = (ObjCLanguageRuntime*)process_sp->GetLanguageRuntime(lldb::eLanguageTypeObjC);
37 if (!runtime)
40 ObjCLanguageRuntime::ClassDescriptorSP descriptor(runtime->GetClassDescriptor(valobj));
82 ObjCLanguageRuntime* runtime = (ObjCLanguageRuntime*)process_sp->GetLanguageRuntime(lldb::eLanguageTypeObjC);
84 if (!runtime)
87 ObjCLanguageRuntime::ClassDescriptorSP descriptor(runtime->GetClassDescriptor(valobj));
126 ObjCLanguageRuntime* runtime = (ObjCLanguageRuntime*)process_sp->GetLanguageRuntime(lldb::eLanguageTypeObjC);
128 if (!runtime)
131 ObjCLanguageRuntime::ClassDescriptorSP descriptor(runtime->GetClassDescriptor(valobj));
172 ObjCLanguageRuntime* runtime = (ObjCLanguageRuntime*)process_sp->GetLanguageRuntime(lldb::eLanguageTypeObjC)
    [all...]
  /external/smali/smali-integration-tests/src/test/smali/junit-tests/InstructionTests/Format21t/
Format21t.smali 13 .annotation runtime Lorg/junit/Test;
37 .annotation runtime Lorg/junit/Test;
60 .annotation runtime Lorg/junit/Test;
83 .annotation runtime Lorg/junit/Test;
106 .annotation runtime Lorg/junit/Test;
130 .annotation runtime Lorg/junit/Test;
  /external/smali/smali-integration-tests/src/test/smali/junit-tests/InstructionTests/Format22t/
Format22t.smali 14 .annotation runtime Lorg/junit/Test;
38 .annotation runtime Lorg/junit/Test;
62 .annotation runtime Lorg/junit/Test;
86 .annotation runtime Lorg/junit/Test;
110 .annotation runtime Lorg/junit/Test;
134 .annotation runtime Lorg/junit/Test;
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
CameraExceptionHandler.java 22 * A handler for all camera api runtime exceptions.
23 * The default behavior is to throw the runtime exception.
92 * Invoke @{link CameraExceptionCallback} when a runtime exception is thrown by Android camera
95 * @param ex The runtime exception object.
109 * Invoke @{link CameraExceptionCallback} when a runtime exception is thrown by
112 * @param ex The runtime exception object.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
FixProjectAction.java 24 import org.eclipse.core.runtime.CoreException;
25 import org.eclipse.core.runtime.IAdaptable;
26 import org.eclipse.core.runtime.IProgressMonitor;
27 import org.eclipse.core.runtime.IStatus;
28 import org.eclipse.core.runtime.Status;
29 import org.eclipse.core.runtime.jobs.Job;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
FileStorage.java 22 import org.eclipse.core.runtime.CoreException;
23 import org.eclipse.core.runtime.IPath;
24 import org.eclipse.core.runtime.IStatus;
25 import org.eclipse.core.runtime.Path;
26 import org.eclipse.core.runtime.Status;
95 * @see org.eclipse.core.runtime.IAdaptable#getAdapter(Class)
  /developers/build/lib/
buildSrc.jar 
  /external/llvm/docs/
StackMaps.rst 12 In this document we refer to the "runtime" collectively as all
19 values that the runtime requires to be live at this point. For
20 example, they may be the values the runtime will need to resume
34 generation, which allows the runtime to locate the patchpoint and
41 in a variety of settings, the most obvious being a runtime (JIT)
63 richer information to a garbage collecting runtime, but that usage
80 runtime patches code at the stack map's address, it will destructively
90 the runtime to uniquely identify the stack map, and the offset within
130 The stack map ID allows a runtime to locate the desired stack map
137 ``llvm.experimental.patchpoint`` may occur. This allows the runtime t
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /art/test/003-omnibus-opcodes/src/
InternedString.java 37 Runtime.getRuntime().gc();
44 Runtime.getRuntime().gc();
56 Runtime.getRuntime().gc();
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
MismatchedTreeNodeException.java 28 package org.antlr.runtime;
30 import org.antlr.runtime.tree.TreeNodeStream;
31 import org.antlr.runtime.tree.Tree;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
TestLexer.h 1 // $ANTLR 3.2 Aug 07, 2010 22:08:38 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/lexertest-simple/Test.g 2010-08-11 13:24:39
4 * Standard antlr3 OBJC runtime definitions
8 /* End of standard antlr3 runtime definitions
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/
TestLexer.h 1 // $ANTLR 3.2 Aug 07, 2010 22:08:38 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/lexertest-simple/Test.g 2010-08-11 13:24:39
4 * Standard antlr3 OBJC runtime definitions
8 /* End of standard antlr3 runtime definitions
TestLexerLexer.h 1 // $ANTLR 3.2 Aug 07, 2010 22:08:38 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/lexertest-simple/TestLexer.g 2010-08-11 13:41:44
4 * Standard antlr3 OBJC runtime definitions
8 /* End of standard antlr3 runtime definitions

Completed in 693 milliseconds

<<51525354555657585960>>