/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
JavaSourceRevealer.java | 19 import org.eclipse.core.runtime.CoreException; 20 import org.eclipse.core.runtime.IConfigurationElement;
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
extension_custom_bindings.js | 10 var runtimeNatives = requireNative('runtime'); 69 // Alias several messaging deprecated APIs to their runtime counterparts. 81 if (chrome.runtime && 82 $Object.hasOwnProperty(chrome.runtime, alias) && 83 chrome.runtime.__lookupGetter__(alias) === undefined) { 84 extension[alias] = chrome.runtime[alias]; 96 var port = chrome.runtime.connect(targetId || extensionId,
|
/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);
|
/frameworks/base/core/java/com/android/internal/os/ |
ZygoteInit.java | 256 final VMRuntime runtime = VMRuntime.getRuntime(); local 272 float defaultUtilization = runtime.getTargetHeapUtilization(); 273 runtime.setTargetHeapUtilization(0.8f); 277 runtime.runFinalizationSync(); 304 runtime.runFinalizationSync(); 331 runtime.setTargetHeapUtilization(defaultUtilization); 334 runtime.preloadDexCaches(); 353 final VMRuntime runtime = VMRuntime.getRuntime(); local 358 runtime.runFinalizationSync(); 367 int N = preloadDrawables(runtime, ar) 449 final VMRuntime runtime = VMRuntime.getRuntime(); local [all...] |
/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);
|
/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.
|