HomeSort by relevance Sort by last modified time
    Searched refs:job (Results 76 - 100 of 155) sorted by null

1 2 34 5 6 7

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintViewPart.java 36 import org.eclipse.core.runtime.jobs.Job;
294 Job[] currentJobs = LintJob.getCurrentJobs();
299 for (Job job : currentJobs) {
300 job.addJobChangeListener(this);
469 Job[] jobs = LintJob.getCurrentJobs();
477 Job job = EclipseLintRunner.startLint(resources, null, null, local
479 if (job != null && workbench != null) {
480 job.addJobChangeListener(LintViewPart.this)
    [all...]
  /external/chromium/chrome/browser/task_manager/
task_manager.cc 840 void TaskManagerModel::OnJobAdded(net::URLRequestJob* job) {
843 void TaskManagerModel::OnJobRemoved(net::URLRequestJob* job) {
846 void TaskManagerModel::OnJobDone(net::URLRequestJob* job,
850 void TaskManagerModel::OnJobRedirect(net::URLRequestJob* job,
855 void TaskManagerModel::OnBytesRead(net::URLRequestJob* job, const char* buf,
863 ResourceDispatcherHost::RenderViewForRequest(job->request(),
870 chrome_browser_net::GetOriginPIDForRequest(job->request());
    [all...]
  /external/chromium/net/http/
http_stream_factory_impl_job.cc 37 HttpStreamFactoryImpl::Job::Job(HttpStreamFactoryImpl* stream_factory,
47 ALLOW_THIS_IN_INITIALIZER_LIST(io_callback_(this, &Job::OnIOComplete)),
69 HttpStreamFactoryImpl::Job::~Job() {
88 void HttpStreamFactoryImpl::Job::Start(Request* request) {
94 int HttpStreamFactoryImpl::Job::Preconnect(int num_streams) {
100 int HttpStreamFactoryImpl::Job::RestartTunnelWithProxyAuth(
108 LoadState HttpStreamFactoryImpl::Job::GetLoadState() const {
121 void HttpStreamFactoryImpl::Job::MarkAsAlternate(const GURL& original_url)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 72 import org.eclipse.core.runtime.jobs.Job;
566 * Adds or edit a build tools marker from the given project. This is done through a Job.
571 Job markerJob = new Job("Android SDK: Build Tools Marker") {
590 // Don't return e2.getStatus(); the job control will then produce
600 markerJob.setPriority(Job.BUILD);
606 * <p/> The data is loaded in a separate {@link Job}, and opened editors will be notified
654 Job job = new Job(String.format("Loading data for %1$s", target.getFullName())) local
1400 Job job = new Job("Update Android editor bindings") { \/\/$NON-NLS-1\$ local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CustomViewFinder.java 36 import org.eclipse.core.runtime.jobs.Job;
146 FindViewsJob job = new FindViewsJob(); local
147 job.schedule();
150 job.join();
361 * Job for performing class search off the UI thread. This is marked as a system job
364 private class FindViewsJob extends Job {
LayoutMetadata.java 195 WorkbenchJob job = new WorkbenchJob(display, "Update alternate views") { local
227 job.setSystem(true);
228 job.schedule();
RenderPreview.java 72 import org.eclipse.core.runtime.jobs.Job;
156 private @Nullable Job mJob;
488 * @param delay the delay to wait before starting the render job
491 Job job = mJob; local
492 if (job != null) {
493 job.cancel();
496 job = new AsyncRenderJob();
498 job = new RenderJob();
500 job.schedule(delay)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
StateViewPage.java 34 import org.eclipse.core.runtime.jobs.Job;
75 private static final ILock sGlStateLock = Job.getJobManager().newLock();
216 // the update task as an Eclipse job.
217 Job job = new Job("Updating GL State") { local
252 job.setPriority(Job.SHORT);
253 job.schedule();
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
FrameSummaryViewPage.java 27 import org.eclipse.core.runtime.jobs.Job;
67 private Job mRefresherJob;
233 mRefresherJob = new Job("Update Frame Summary Task") {
248 mRefresherJob.setPriority(Job.SHORT);
256 Job job = new Job("Update Frame Statistics") { local
296 job.setUser(true);
297 job.schedule();
  /external/chromium/chrome/common/
sandbox_policy.cc 393 // of the flash player, so we put it in a job object, when the browser
394 // terminates the job object is destroyed (by the OS) and the flash broker
396 HANDLE job = ::CreateJobObjectW(NULL, NULL); local
400 if (::SetInformationJobObject(job, JobObjectExtendedLimitInformation,
402 ::AssignProcessToJobObject(job, process);
405 ::CloseHandle(job);
  /external/iptables/iptables/
iptables-apply 154 echo ... then my job is done. See you next time.
  /external/chromium/chrome/browser/automation/
url_request_automation_job.cc 111 URLRequestAutomationJob* job = new URLRequestAutomationJob(request, local
114 return job;
136 // If this is a pending job, then register it immediately with the message
160 // We should not receive a read request for a pending job.
269 << ": Unexpected request received for job:"
346 // NotifyDone may have been called on the job if the original request was
349 // We can complete the job if we have a valid response or a pending read.
358 // that the job has completed.
390 // If the job is cancelled before we got a chance to start it
395 // We should not receive a Start request for a pending job
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SubtypeLocale.java 174 protected String job(final Resources res) {
231 protected String job(final Resources res) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
AdtStartup.java 37 import org.eclipse.core.runtime.jobs.Job;
286 Job pingJob = createPingUsageServerJob();
288 pingJob.setPriority(Job.BUILD);
289 // Wait another 30 seconds before starting the ping job. This gives other
296 * Creates a job than can ping the usage server.
298 private Job createPingUsageServerJob() {
300 Job job = new Job("Android SDK Ping") { // Job name, visible in progress vie local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.operations_2.0.0.v20100510.jar 
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
org.eclipse.equinox.p2.ui.sdk_1.0.100.v20100513.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java 70 import org.eclipse.core.runtime.jobs.Job;
167 * This variable indicates that the job inside parseSdkContent() is currently
301 // Wait 2 seconds before starting the job. This leaves some time to the
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 234 // class def modified: write it to an array and submit a write job
262 // clone the array and submit an entry write job
486 // class def modified: write it to an array and submit a write job
499 // clone the array and submit a file write job
577 // in overwrite mode, flush the job queue before going to the next directory:
702 // reset job queue position:
939 final Job job = m_jobs [j]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorDelegate.java 62 import org.eclipse.core.runtime.jobs.Job;
461 public Job delegateRunLint() {
464 // nodes on that lint job, such that we can quickly look up error nodes
465 //Job job = super.delegateRunLint();
467 Job job = null; local
477 job = EclipseLintRunner.startLint(mClient, resources, file,
481 if (job != null) {
484 job.addJobChangeListener(new LintJobListener(graphicalEditor))
    [all...]
  /ndk/sources/host-tools/make-3.81/
build_w32.bat 55 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDebug/ /Fp.\WinDebug/%make%.pch /Fo.\WinDebug/ /Fd.\WinDebug/%make%.pdb /c job.c
56 echo WinDebug\job.obj >>link.dbg
91 rem link.exe kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib w32\subproc\windebug\subproc.lib /NOLOGO /SUBSYSTEM:console /INCREMENTAL:yes /PDB:.\WinDebug/%make%.pdb /DEBUG /MACHINE:I386 /OUT:.\WinDebug/%make%.exe .\WinDebug/variable.obj .\WinDebug/rule.obj .\WinDebug/remote-stub.obj .\WinDebug/commands.obj .\WinDebug/file.obj .\WinDebug/getloadavg.obj .\WinDebug/default.obj .\WinDebug/signame.obj .\WinDebug/expand.obj .\WinDebug/dir.obj .\WinDebug/main.obj .\WinDebug/getopt1.obj .\WinDebug/job.obj .\WinDebug/read.obj .\WinDebug/version.obj .\WinDebug/getopt.obj .\WinDebug/arscan.obj .\WinDebug/remake.obj .\WinDebug/hash.obj .\WinDebug/strcache.obj .\WinDebug/misc.obj .\WinDebug/ar.obj .\WinDebug/function.obj .\WinDebug/vpath.obj .\WinDebug/implicit.obj .\WinDebug/dirent.obj .\WinDebug/glob.obj .\WinDebug/fnmatch.obj .\WinDebug/pathstuff.obj
122 cl.exe /nologo /MT /W4 /GX /YX /O2 /I . /I glob /I w32/include /D NDEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinRel/ /Fp.\WinRel/%make%.pch /Fo.\WinRel/ /c job.c
123 echo WinRel\job.obj >>link.rel
158 rem link.exe kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib w32\subproc\winrel\subproc.lib /NOLOGO /SUBSYSTEM:console /INCREMENTAL:no /PDB:.\WinRel/%make%.pdb /MACHINE:I386 /OUT:.\WinRel/%make%.exe .\WinRel/variable.obj .\WinRel/rule.obj .\WinRel/remote-stub.obj .\WinRel/commands.obj .\WinRel/file.obj .\WinRel/getloadavg.obj .\WinRel/default.obj .\WinRel/signame.obj .\WinRel/expand.obj .\WinRel/dir.obj .\WinRel/main.obj .\WinRel/getopt1.obj .\WinRel/job.obj .\WinRel/read.obj .\WinRel/version.obj .\WinRel/getopt.obj .\WinRel/arscan.obj .\WinRel/remake.obj .\WinRel/misc.obj .\WinRel/hash.obj .\WinRel/strcache.obj .\WinRel/ar.obj .\WinRel/function.obj .\WinRel/vpath.obj .\WinRel/implicit.obj .\WinRel/dirent.obj .\WinRel/glob.obj .\WinRel/fnmatch.obj .\WinRel/pathstuff.obj
179 gcc -mthreads -Wall -gstabs+ -ggdb3 -O2 -I. -I./glob -I./w32/include -DWINDOWS32 -DHAVE_CONFIG_H -c job.c
195 gcc -mthreads -gstabs+ -ggdb3 -o gnumake.exe variable.o rule.o remote-stub.o commands.o file.o getloadavg.o default.o signame.o expand.o dir.o main.o getopt1.o job.o read.o version.o getopt.o arscan.o remake.o misc.o hash.o strcache.o ar.o function.o vpath.o implicit.o glob.o fnmatch.o pathstuff.o w32_misc.o sub_proc.o w32err.o -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -luuid -lodbc32 -lodbccp32
  /system/core/sh/
cd.c 375 * keep track of the job if it is being ran behind our backs.
401 struct job *jp;
eval.c 426 struct job *jp;
491 struct job *jp;
537 TRACE(("evalpipe: job done exit status %d\n", exitstatus));
555 struct job *jp;
688 struct job *jp;
redir.c 272 if (forkshell((struct job *)NULL, (union node *)NULL, FORK_NOJOB) == 0) {
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 429 EnqueueJob &job = Queue.back(); local
430 Stmt *CurrS = job.S;
437 if (job.StmtIt == Stmt::child_iterator()) {
444 job.StmtIt = CurrS->child_begin();
446 ++job.StmtIt;
449 if (job.StmtIt != CurrS->child_end())
450 Queue.push_back(*job.StmtIt);
    [all...]

Completed in 1964 milliseconds

1 2 34 5 6 7