HomeSort by relevance Sort by last modified time
    Searched defs:processor (Results 76 - 100 of 152) sorted by null

1 2 34 5 6 7

  /external/chromium_org/chrome/browser/sync/glue/
favicon_cache_unittest.cc 290 TestChangeProcessor* processor() { return sync_processor_.get(); } function in class:browser_sync::SyncFaviconCacheTest
325 ASSERT_EQ(0U, processor()->GetAndResetChangeList().size());
330 ASSERT_EQ(0U, processor()->GetAndResetChangeList().size());
543 EXPECT_EQ(0U, processor()->GetAndResetChangeList().size());
557 EXPECT_EQ(0U, processor()->GetAndResetChangeList().size());
587 syncer::SyncChangeList change_list = processor()->GetAndResetChangeList();
605 change_list = processor()->GetAndResetChangeList();
646 EXPECT_EQ(0U, processor()->GetAndResetChangeList().size());
660 EXPECT_EQ(0U, processor()->GetAndResetChangeList().size());
721 syncer::SyncChangeList changes = processor()->GetAndResetChangeList()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_build.c 72 struct tgsi_processor processor; local
74 processor.Processor = type;
75 processor.Padding = 0;
79 return processor;
    [all...]
tgsi_text.c 243 unsigned processor : 4; member in struct:translate_ctx
273 uint processor; local
276 processor = TGSI_PROCESSOR_FRAGMENT;
278 processor = TGSI_PROCESSOR_VERTEX;
280 processor = TGSI_PROCESSOR_GEOMETRY;
282 processor = TGSI_PROCESSOR_COMPUTE;
295 *(struct tgsi_processor *) ctx->tokens_cur++ = tgsi_build_processor( processor, ctx->header );
296 ctx->processor = processor;
649 if (ctx->processor == TGSI_PROCESSOR_GEOMETRY && *file == TGSI_FILE_INPUT)
    [all...]
tgsi_ureg.c 43 struct tgsi_processor processor; member in union:tgsi_any_token
95 unsigned processor; member in struct:ureg_program
355 assert(ureg->processor == TGSI_PROCESSOR_VERTEX);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_build.c 72 struct tgsi_processor processor; local
74 processor.Processor = type;
75 processor.Padding = 0;
79 return processor;
    [all...]
tgsi_text.c 243 unsigned processor : 4; member in struct:translate_ctx
273 uint processor; local
276 processor = TGSI_PROCESSOR_FRAGMENT;
278 processor = TGSI_PROCESSOR_VERTEX;
280 processor = TGSI_PROCESSOR_GEOMETRY;
282 processor = TGSI_PROCESSOR_COMPUTE;
295 *(struct tgsi_processor *) ctx->tokens_cur++ = tgsi_build_processor( processor, ctx->header );
296 ctx->processor = processor;
649 if (ctx->processor == TGSI_PROCESSOR_GEOMETRY && *file == TGSI_FILE_INPUT)
    [all...]
tgsi_ureg.c 43 struct tgsi_processor processor; member in union:tgsi_any_token
95 unsigned processor; member in struct:ureg_program
355 assert(ureg->processor == TGSI_PROCESSOR_VERTEX);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
platform.py 72 # instead; extended the win32_ver() to also return processor
558 processor).
561 processor NT machines and 'Multiprocessor Free' on multi
562 processor machines. The 'Free' refers to the OS version being
572 # XXX Is there any way to find out the processor type on WinXX ?
1349 def processor(): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
platform.py 72 # instead; extended the win32_ver() to also return processor
558 processor).
561 processor NT machines and 'Multiprocessor Free' on multi
562 processor machines. The 'Free' refers to the OS version being
572 # XXX Is there any way to find out the processor type on WinXX ?
1349 def processor(): function
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceParticipant.java 154 * during the call to the Java processor, and is used to ignore requests for adding in
237 RenameResourceProcessor processor = (RenameResourceProcessor) getProcessor(); local
238 mProject = processor.getProject();
239 mType = processor.getType();
241 mOldName = processor.getCurrentName();
242 mNewName = processor.getNewName();
283 RenameFieldProcessor processor = new RenameFieldProcessor(field); local
284 processor.setRenameGetter(false);
285 processor.setRenameSetter(false);
286 RenameRefactoring refactoring = new RenameRefactoring(processor);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTAttributeDef.java 21 package org.apache.xalan.processor;
231 // gets expanded by the XSLT processor. -->
    [all...]
XSLTSchema.java 21 package org.apache.xalan.processor;
    [all...]
StylesheetHandler.java 21 package org.apache.xalan.processor;
95 * @param processor non-null reference to the transformer factory that owns this handler.
100 public StylesheetHandler(TransformerFactoryImpl processor)
112 m_optimize =((Boolean) processor.getAttribute(
114 m_incremental = ((Boolean) processor.getAttribute(
116 m_source_location = ((Boolean) processor.getAttribute(
119 init(processor);
126 * @param processor non-null reference to the transformer factory that owns this handler.
128 void init(TransformerFactoryImpl processor)
130 m_stylesheetProcessor = processor;
    [all...]
  /external/chromium/chrome/browser/sync/glue/
sync_backend_host.cc 502 // Add the data type's change processor to the list of change
824 // processor is added to the processors_ list. This all happens on
837 ChangeProcessor* processor = it->second; local
839 // Ensure the change processor is willing to accept changes.
840 if (!processor->IsRunning())
843 return processor;
855 ChangeProcessor* processor = GetProcessor(model_type); local
856 if (!processor)
859 processor->ApplyChangesFromSyncModel(trans, changes, change_count);
869 ChangeProcessor* processor = GetProcessor(model_type) local
    [all...]
  /external/chromium_org/chrome/browser/search_engines/
template_url_service_sync_unittest.cc 195 TestChangeProcessor* processor() { return sync_processor_.get(); } function in class:TemplateURLServiceSyncTest
622 EXPECT_EQ(0U, processor()->change_list_size());
646 EXPECT_EQ(0U, processor()->change_list_size());
682 EXPECT_EQ(3U, processor()->change_list_size());
683 EXPECT_TRUE(processor()->contains_guid("abc"));
684 EXPECT_TRUE(processor()->contains_guid("def"));
685 EXPECT_TRUE(processor()->contains_guid("xyz"));
716 EXPECT_EQ(0U, processor()->change_list_size());
759 EXPECT_EQ(1U, processor()->change_list_size());
760 ASSERT_TRUE(processor()->contains_guid("xyz"))
    [all...]
  /external/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 51 ProfilerEventsProcessor processor(&generator);
52 processor.Start();
53 processor.StopSynchronously();
54 processor.Join();
142 ProfilerEventsProcessor processor(&generator);
143 processor.Start();
144 CpuProfiler profiler(isolate, profiles, &generator, &processor);
159 EnqueueTickSampleEvent(&processor, aaa_code->address());
161 processor.StopSynchronously();
162 processor.Join()
1342 i::ProfilerEventsProcessor* processor = isolate->cpu_profiler()->processor(); local
    [all...]
  /external/jpeg/
jdmarker.c 184 * suspend, the marker processor updates the restart point to the end of
188 * The marker processor must retain internal state to deal with this.
730 /* can't get here unless jpeg_save_markers chooses wrong processor */
1355 jpeg_marker_parser_method processor; local
    [all...]
  /external/oprofile/libpp/
xml_utils.cpp 164 string processor; local
169 processor = "";
172 processor = cpu_name.substr(slash_pos+1);
176 if (processor.size() > 0)
177 str << init_attr(PROCESSOR, string(processor)) << endl;
  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 611 Processor processor = new Processor(variables, local
726 // Process the instruction. The processor may modify the
733 processor);
    [all...]
  /external/qemu/distrib/jpeg-6b/
jdmarker.c 184 * suspend, the marker processor updates the restart point to the end of
188 * The marker processor must retain internal state to deal with this.
722 /* can't get here unless jpeg_save_markers chooses wrong processor */
1347 jpeg_marker_parser_method processor; local
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
VCardService.java 259 * Tries to call {@link ExecutorService#execute(Runnable)} toward a given processor.
262 private synchronized boolean tryExecute(ProcessorBase processor) {
268 mExecutorService.execute(processor);
269 mRunningJobMap.put(mCurrentJobId, processor);
282 final ProcessorBase processor = mRunningJobMap.get(jobId); local
285 if (processor != null) {
286 processor.cancel(true);
287 final int type = processor.getType();
293 ((ExportProcessor)processor).getRequest().destUri.getEncodedPath();
340 // processor, then we start removing those finished jobs. In that case latter half o
345 final ProcessorBase processor = mRunningJobMap.valueAt(i); local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/
EasSyncService.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.text_3.5.0.v20100601-1300.jar 
  /bionic/libc/kernel/arch-mips/asm/
sgiarcs.h 57 system, processor, cache, adapter, controller, peripheral, memory enumerator in enum:linux_devclass
  /development/ndk/platforms/android-9/arch-mips/include/asm/
sgiarcs.h 57 system, processor, cache, adapter, controller, peripheral, memory enumerator in enum:linux_devclass

Completed in 1911 milliseconds

1 2 34 5 6 7