HomeSort by relevance Sort by last modified time
    Searched refs:runtime (Results 251 - 275 of 1163) sorted by null

<<11121314151617181920>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CreateNewConfigJob.java 31 import org.eclipse.core.runtime.CoreException;
32 import org.eclipse.core.runtime.IProgressMonitor;
33 import org.eclipse.core.runtime.IStatus;
34 import org.eclipse.core.runtime.Status;
35 import org.eclipse.core.runtime.jobs.Job;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
CreateFileChange.java 31 import org.eclipse.core.runtime.CoreException;
32 import org.eclipse.core.runtime.IPath;
33 import org.eclipse.core.runtime.IProgressMonitor;
34 import org.eclipse.core.runtime.OperationCanceledException;
35 import org.eclipse.core.runtime.SubProgressMonitor;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/catifier/
event_page.js 50 if (chrome.runtime.lastError) {
51 console.error('Error adding rules: ' + chrome.runtime.lastError);
73 if (chrome.runtime.lastError) {
74 console.error('Error clearing rules: ' + chrome.runtime.lastError);
82 chrome.runtime.onInstalled.addListener(setup);
  /art/runtime/
scoped_thread_state_change.h 39 Runtime* runtime = Runtime::Current(); local
40 CHECK(runtime == NULL || !runtime->IsStarted() || runtime->IsShuttingDown());
68 Runtime* runtime = Runtime::Current(); variable
69 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDown()
    [all...]
  /external/clang/runtime/compiler-rt/
Makefile 1 ##===- clang/runtime/compiler-rt/Makefile ------------------*- Makefile -*-===##
10 # This file defines support for building the Clang runtime libraries (which are
31 # We don't currently support building runtime libraries when we are
35 # Since we have to build the runtime libraries for the target, it requires we
71 # build/install runtime libraries for as many targets as clang was configured to
83 # On Linux, include a library which has all the runtime functions.
104 # We currently only try to generate runtime libraries on x86.
114 # to the list of runtime libraries to make
118 test_source = $(LLVM_SRC_ROOT)/tools/clang/runtime/compiler-rt/clang_linux_test_input.c
171 $(Echo) Copying runtime library $1/$$* to build di
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ReflectionUtils.java 48 * @param runtime
54 public static String getFullyQualifiedName(Type type, boolean runtime) {
61 return getFullyQualifiedName(clazz.getComponentType(), runtime) + "[]";
65 if (!runtime) {
73 return getFullyQualifiedName(genericArrayType.getGenericComponentType(), runtime) + "[]";
81 sb.append(getFullyQualifiedName(rawType, runtime));
90 sb.append(getFullyQualifiedName(typeArgument, runtime));
99 return "? extends " + getFullyQualifiedName(wildcardType.getUpperBounds()[0], runtime);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
DexDumpAction.java 32 import org.eclipse.core.runtime.IAdaptable;
33 import org.eclipse.core.runtime.IPath;
34 import org.eclipse.core.runtime.IProgressMonitor;
35 import org.eclipse.core.runtime.IStatus;
36 import org.eclipse.core.runtime.Path;
37 import org.eclipse.core.runtime.Status;
38 import org.eclipse.core.runtime.jobs.Job;
165 final Process process = Runtime.getRuntime().exec(command);
  /external/chromium_org/chrome/renderer/resources/extensions/
messaging.js 22 var kMessageChannel = "chrome.runtime.sendMessage";
23 var kNativeMessageChannel = "chrome.runtime.sendNativeMessage";
42 var portSchema = {name: 'port', $ref: 'runtime.Port'};
63 // here that we do for runtime.sendMessage (and variants), i.e. throw an
120 var eventName = isSendMessage ? "runtime.onMessage" : "extension.onRequest";
145 if (chrome.runtime) {
146 requestEvent = isExternal ? chrome.runtime.onMessageExternal
147 : chrome.runtime.onMessage;
200 "runtime.onMessageExternal" : "runtime.onMessage")
    [all...]
  /cts/tools/dasm/src/dasm/
Scanner.java 27 import java_cup.runtime.int_token;
28 import java_cup.runtime.str_token;
29 import java_cup.runtime.token;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTree.as 28 package org.antlr.runtime.tree {
29 import org.antlr.runtime.Token;
30 import org.antlr.runtime.TokenConstants;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventRepeater.java 28 package org.antlr.runtime.debug;
30 import org.antlr.runtime.Token;
31 import org.antlr.runtime.RecognitionException;
TraceDebugEventListener.java 28 package org.antlr.runtime.debug;
30 import org.antlr.runtime.Token;
31 import org.antlr.runtime.tree.TreeAdaptor;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTreeAdaptor.java 28 package org.antlr.runtime.tree;
30 import org.antlr.runtime.CommonToken;
31 import org.antlr.runtime.Token;
RewriteRuleSubtreeStream.java 28 package org.antlr.runtime.tree;
TreeVisitor.java 29 package org.antlr.runtime.tree;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
JUnitLaunchConfigDelegate.java 23 import org.eclipse.core.runtime.CoreException;
24 import org.eclipse.core.runtime.FileLocator;
25 import org.eclipse.core.runtime.Platform;
  /art/runtime/base/
mutex-inl.h 26 #include "runtime.h"
84 Runtime* runtime = Runtime::Current(); variable
85 CHECK(runtime == NULL || !runtime->IsStarted() || runtime->IsShuttingDown() ||
  /cts/tools/dasm/src/java_cup/runtime/
virtual_parse_stack.java 2 package java_cup.runtime;
17 * @see java_cup.runtime.lr_parser
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ANTLRFileStream.java 28 package org.antlr.runtime;
ANTLRInputStream.java 28 package org.antlr.runtime;
ANTLRReaderStream.java 28 package org.antlr.runtime;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
IntArray.h 28 package org.antlr.runtime.misc;
42 * When runtime can be 1.5, I'll make this generic.
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Label.java 99 * If I didn't use a bitset implementation for runtime sets, I wouldn't
105 org.antlr.runtime.Token.EOR_TOKEN_TYPE;
107 public static final int DOWN = org.antlr.runtime.Token.DOWN;
108 public static final int UP = org.antlr.runtime.Token.UP;
112 org.antlr.runtime.Token.MIN_TOKEN_TYPE;
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestInterpretedLexing.java 30 import org.antlr.runtime.ANTLRStringStream;
31 import org.antlr.runtime.CharStream;
32 import org.antlr.runtime.CommonTokenStream;
33 import org.antlr.runtime.Token;

Completed in 716 milliseconds

<<11121314151617181920>>