Searched refs:info_ (Results 1 - 25 of 131) sorted by relevance

123456

/external/chromium_org/chrome/browser/extensions/api/system_cpu/
H A Dsystem_cpu_apitest.cc17 info_.num_of_processors = 4;
18 info_.arch_name = "x86";
19 info_.model_name = "unknown";
21 info_.features.clear();
22 info_.features.push_back("mmx");
23 info_.features.push_back("avx");
25 info_.processors.clear();
26 info_.processors.push_back(linked_ptr<core_api::system_cpu::ProcessorInfo>(
28 info_.processors[0]->usage.kernel = 1;
29 info_
[all...]
/external/chromium_org/chrome/app/
H A Ddelay_load_hook_unittest_win.cc31 info_.cb = sizeof(info_);
32 info_.pidd = NULL;
33 info_.ppfn = &proc_ptr_;
34 info_.szDll = dll_name;
35 info_.dlp.fImportByName = TRUE;
36 info_.dlp.szProcName = "CreateFileA";
37 info_.hmodCur = NULL;
38 info_.pfnCur = NULL;
39 info_
43 DelayLoadInfo info_; member in class:__anon2843::ChromeDelayLoadHookTest
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dfeature_info_unittest.cc53 info_ = new FeatureInfo();
54 info_->Initialize();
59 info_ = new FeatureInfo(command_line);
67 info_ = new FeatureInfo(command_line);
68 info_->Initialize();
73 info_ = new FeatureInfo();
82 info_ = NULL;
86 scoped_refptr<FeatureInfo> info_; member in class:gpu::gles2::FeatureInfoTest
102 EXPECT_FALSE(info_->feature_flags().chromium_framebuffer_multisample);
103 EXPECT_FALSE(info_
[all...]
/external/chromium_org/content/child/service_worker/
H A Dservice_worker_handle_reference.h36 const ServiceWorkerObjectInfo& info() const { return info_; }
37 int handle_id() const { return info_.handle_id; }
38 const GURL& scope() const { return info_.scope; }
39 const GURL& url() const { return info_.url; }
40 blink::WebServiceWorkerState state() const { return info_.state; }
41 void set_state(blink::WebServiceWorkerState state) { info_.state = state; }
47 ServiceWorkerObjectInfo info_; member in class:content::ServiceWorkerHandleReference
H A Dservice_worker_registration_handle_reference.cc33 : info_(info),
35 DCHECK_NE(kInvalidServiceWorkerRegistrationHandleId, info_.handle_id);
40 new ServiceWorkerHostMsg_IncrementRegistrationRefCount(info_.handle_id));
46 new ServiceWorkerHostMsg_DecrementRegistrationRefCount(info_.handle_id));
H A Dservice_worker_registration_handle_reference.h33 const ServiceWorkerRegistrationObjectInfo& info() const { return info_; }
34 int handle_id() const { return info_.handle_id; }
35 GURL scope() const { return info_.scope; }
43 ServiceWorkerRegistrationObjectInfo info_; member in class:content::ServiceWorkerRegistrationHandleReference
H A Dservice_worker_handle_reference.cc31 : info_(info),
34 info_.handle_id != kInvalidServiceWorkerHandleId) {
37 info_.handle_id));
42 if (info_.handle_id != kInvalidServiceWorkerHandleId) {
45 info_.handle_id));
/external/chromium_org/content/browser/download/
H A Dsave_file.h42 int save_id() const { return info_->save_id; }
43 int render_process_id() const { return info_->render_process_id; }
44 int render_view_id() const { return info_->render_view_id; }
45 int request_id() const { return info_->request_id; }
47 return info_->save_source;
52 scoped_ptr<const SaveFileCreateInfo> info_; member in class:content::SaveFile
/external/chromium_org/extensions/browser/api/system_cpu/
H A Dcpu_info_provider.cc30 info_.num_of_processors = base::SysInfo::NumberOfProcessors();
31 info_.arch_name = base::SysInfo::OperatingSystemArchitecture();
32 info_.model_name = base::SysInfo::CPUModelName();
33 info_.features = GetFeatures();
35 info_.processors.clear();
37 for (int i = 0; i < info_.num_of_processors; ++i) {
38 info_.processors.push_back(linked_ptr<core_api::system_cpu::ProcessorInfo>(
42 if (!QueryCpuTimePerProcessor(&info_.processors))
43 info_.processors.clear();
/external/chromium_org/gin/
H A Darguments.h25 return ConvertFromV8(isolate_, info_->Holder(), out);
30 return ConvertFromV8(isolate_, info_->Data(), out);
35 if (next_ >= info_->Length()) {
39 v8::Handle<v8::Value> val = (*info_)[next_++];
45 if (next_ >= info_->Length()) {
49 int remaining = info_->Length() - next_;
52 v8::Handle<v8::Value> val = (*info_)[next_++];
60 if (next_ >= info_->Length())
67 return info_->Length();
72 info_
88 const v8::FunctionCallbackInfo<v8::Value>* info_; member in class:gin::Arguments
[all...]
H A Darguments.cc14 info_(NULL),
21 info_(&info),
30 if (next_ >= info_->Length())
32 return (*info_)[next_];
49 return info_->IsConstructCall();
/external/chromium_org/v8/src/compiler/
H A Dpipeline.h27 explicit Pipeline(CompilationInfo* info) : info_(info) {}
44 CompilationInfo* info_; member in class:v8::internal::compiler::Pipeline
46 CompilationInfo* info() const { return info_; }
47 Isolate* isolate() { return info_->isolate(); }
48 Zone* zone() { return info_->zone(); }
H A Djs-context-specialization.h22 : info_(info), jsgraph_(jsgraph), context_(context) {}
29 CompilationInfo* info_; member in class:v8::internal::compiler::JSContextSpecializer
H A Djs-inlining.h20 : info_(info), jsgraph_(jsgraph) {}
27 CompilationInfo* info_; member in class:v8::internal::compiler::JSInliner
/external/chromium_org/content/renderer/pepper/
H A Dpepper_url_request_unittest.cc67 info_ = new URLRequestInfoResource(
78 URLRequestInfoData data = info_->GetData();
86 URLRequestInfoData data = info_->GetData();
94 URLRequestInfoData data = info_->GetData();
102 URLRequestInfoData data = info_->GetData();
109 return info_->SetBooleanProperty(prop, b);
112 return info_->SetStringProperty(prop, s);
120 scoped_refptr<URLRequestInfoResource> info_; member in class:content::URLRequestInfoTest
135 EXPECT_EQ(info_.get(), info_
[all...]
/external/chromium_org/third_party/freetype/include/freetype/internal/services/
H A Dsvsfnt.h75 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
78 load_, get_, info_ \
83 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
89 clazz->table_info = info_; \
/external/freetype/include/internal/services/
H A Dsvsfnt.h75 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
78 load_, get_, info_ \
83 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
89 clazz->table_info = info_; \
/external/pdfium/core/include/thirdparties/freetype/freetype/internal/services/
H A Dsvsfnt.h75 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
78 load_, get_, info_ \
83 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
89 clazz->table_info = info_; \
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/services/
H A Dsvsfnt.h75 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
78 load_, get_, info_ \
83 #define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \
89 clazz->table_info = info_; \
/external/chromium_org/content/browser/frame_host/
H A Dnavigation_request.h38 const NavigationRequestInfo& info() const { return info_; }
46 const NavigationRequestInfo info_; member in class:content::NavigationRequest
/external/chromium_org/extensions/browser/api/system_memory/
H A Dmemory_info_provider.h19 return info_;
37 // |info_| is accessed on the UI thread while |is_waiting_for_completion_| is
40 core_api::system_memory::MemoryInfo info_; member in class:extensions::MemoryInfoProvider
H A Dmemory_info_provider.cc30 info_.capacity = static_cast<double>(base::SysInfo::AmountOfPhysicalMemory());
31 info_.available_capacity =
/external/chromium_org/third_party/webrtc/base/
H A Dlatebindingsymboltable.cc63 : info_(info),
79 ASSERT(info_->dll_name != NULL);
80 return LoadFromPath(info_->dll_name);
125 for (int i = 0; i < info_->num_symbols; ++i) {
126 if (!LoadSymbol(handle_, info_->symbol_names[i], &table_[i])) {
153 memset(table_, 0, sizeof(void *) * info_->num_symbols);
/external/chromium_org/chrome/browser/extensions/api/system_memory/
H A Dsystem_memory_apitest.cc18 info_.capacity = 4096;
19 info_.available_capacity = 1024;
/external/chromium_org/mojo/system/
H A Dcore_test_base.cc28 explicit MockDispatcher(CoreTestBase::MockHandleInfo* info) : info_(info) {
29 CHECK(info_);
30 info_->IncrementCtorCallCount();
37 virtual ~MockDispatcher() { info_->IncrementDtorCallCount(); }
41 info_->IncrementCloseCallCount();
50 info_->IncrementWriteMessageCallCount();
68 info_->IncrementReadMessageCallCount();
86 info_->IncrementWriteDataCallCount();
95 info_->IncrementBeginWriteDataCallCount();
102 info_
162 CoreTestBase::MockHandleInfo* const info_; member in class:mojo::system::test::__anon8846::MockDispatcher::CoreTestBase
[all...]

Completed in 617 milliseconds

123456