Searched defs:info (Results 1 - 25 of 2902) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/extensions/api/experience_sampling_private/
H A Dexperience_sampling_private_api.cc16 sampling::BrowserInfo info; local
19 info.variations = field_trials;
21 SetResult(info.ToValue().release());
/external/chromium_org/net/proxy/
H A Dproxy_info_unittest.cc14 ProxyInfo info; local
17 EXPECT_FALSE(info.is_direct_only());
19 info.UseDirect();
20 EXPECT_TRUE(info.is_direct_only());
22 info.UsePacString("DIRECT");
23 EXPECT_TRUE(info.is_direct_only());
25 info.UsePacString("PROXY myproxy:80");
26 EXPECT_FALSE(info.is_direct_only());
28 info.UsePacString("DIRECT; PROXY myproxy:80");
29 EXPECT_TRUE(info
[all...]
/external/chromium_org/ppapi/nacl_irt/
H A Dirt_start.cc11 void nacl_irt_start(uint32_t* info) { argument
12 nacl_irt_init(info);
25 nacl_irt_enter_user_code(info, chrome_irt_query);
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dshim_entry.c18 void _pnacl_wrapper_start(uint32_t *info) { argument
19 Elf32_auxv_t *auxv = nacl_startup_auxv(info);
56 _start(info);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8DedicatedWorkerGlobalScopeCustom.cpp40 void V8DedicatedWorkerGlobalScope::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
42 postMessageMethodCommon("WorkerGlobalScope", V8DedicatedWorkerGlobalScope::toImpl(info.Holder()), info);
H A DV8ErrorEventCustom.cpp46 void V8ErrorEvent::errorAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) argument
48 v8::Handle<v8::Value> error = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::error(info.GetIsolate()));
50 v8SetReturnValue(info, error);
54 v8SetReturnValueNull(info);
H A DV8EventCustom.cpp42 void V8Event::clipboardDataAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) argument
44 Event* event = V8Event::toImpl(info.Holder());
47 v8SetReturnValueFast(info, static_cast<ClipboardEvent*>(event)->clipboardData(), event);
H A DV8LocationCustom.cpp36 void V8Location::valueOfMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
43 v8SetReturnValue(info, info.This());
H A DV8MessagePortCustom.cpp40 void V8MessagePort::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
42 postMessageMethodCommon("MessagePort", V8MessagePort::toImpl(info.Holder()), info);
H A DV8WorkerCustom.cpp40 void V8Worker::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
42 postMessageMethodCommon("Worker", V8Worker::toImpl(info.Holder()), info);
H A DV8FileReaderCustom.cpp40 void V8FileReader::resultAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) argument
42 v8::Handle<v8::Object> holder = info.Holder();
45 v8SetReturnValueFast(info, impl->arrayBufferResult(), impl);
48 v8SetReturnValueStringOrNull(info, impl->stringResult(), info.GetIsolate());
H A DV8TrackEventCustom.cpp42 void V8TrackEvent::trackAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) argument
44 TrackEvent* trackEvent = V8TrackEvent::toImpl(info.Holder());
48 v8SetReturnValueNull(info);
54 v8SetReturnValueFast(info, toTextTrack(track), trackEvent);
58 v8SetReturnValueFast(info, toAudioTrack(track), trackEvent);
62 v8SetReturnValueFast(info, toVideoTrack(track), trackEvent);
66 v8SetReturnValueNull(info);
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8ServiceWorkerClientCustom.cpp14 void V8ServiceWorkerClient::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
16 postMessageMethodCommon("ServiceWorkerClient", V8ServiceWorkerClient::toImpl(info.Holder()), info);
H A DV8ServiceWorkerCustom.cpp14 void V8ServiceWorker::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
16 postMessageMethodCommon("ServiceWorker", V8ServiceWorker::toImpl(info.Holder()), info);
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dconstants.cpp4 static void {{constant.name}}ConstantGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) argument
8 UseCounter::countDeprecation(callingExecutionContext(info.GetIsolate()), UseCounter::{{constant.deprecate_as}});
11 UseCounter::count(callingExecutionContext(info.GetIsolate()), UseCounter::{{constant.measure_as}});
14 v8SetReturnValue(info, {{constant.value}});
16 v8SetReturnValueString(info, "{{constant.value}}");
18 v8SetReturnValueInt(info, {{constant.value}});
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_fs.h38 struct tgsi_shader_info info; member in struct:draw_fragment_shader
/external/chromium_org/third_party/skia/src/image/
H A DSkImagePriv.h29 static inline size_t SkImageMinRowBytes(const SkImageInfo& info) { argument
30 return SkAlign4(info.minRowBytes());
/external/chromium_org/ui/events/
H A Dlatency_info_unittest.cc12 LatencyInfo info; local
13 info.AddLatencyNumberWithTimestamp(INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT,
18 info.AddLatencyNumberWithTimestamp(INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT,
24 EXPECT_EQ(info.latency_components.size(), 2u);
27 info.FindLatency(INPUT_EVENT_LATENCY_UI_COMPONENT, 0, &component));
29 info.FindLatency(INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT, 1, &component));
31 info.FindLatency(INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT, 0, &component));
36 info.FindLatency(INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT, 1, &component));
43 LatencyInfo info; local
44 info
69 LatencyInfo info; local
[all...]
/external/eigen/blas/
H A Dxerbla.cpp15 EIGEN_WEAK_LINKING int xerbla_(const char * msg, int *info, int) argument
17 std::cerr << "Eigen BLAS ERROR #" << *info << ": " << msg << "\n";
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_fs.h38 struct tgsi_shader_info info; member in struct:draw_fragment_shader
/external/qemu/distrib/ext4_utils/src/
H A Dext4_sb.c21 int ext4_parse_sb(struct ext4_super_block *sb, struct fs_info *info) argument
31 info->block_size = 1024 << sb->s_log_block_size;
32 info->blocks_per_group = sb->s_blocks_per_group;
33 info->inodes_per_group = sb->s_inodes_per_group;
34 info->inode_size = sb->s_inode_size;
35 info->inodes = sb->s_inodes_count;
36 info->feat_ro_compat = sb->s_feature_ro_compat;
37 info->feat_compat = sb->s_feature_compat;
38 info->feat_incompat = sb->s_feature_incompat;
39 info
[all...]
/external/skia/src/image/
H A DSkImagePriv.h30 static inline size_t SkImageMinRowBytes(const SkImageInfo& info) { argument
31 return SkAlign4(info.minRowBytes());
/external/chromium_org/chrome/common/extensions/manifest_tests/
H A Dextension_manifests_launcher_page_unittest.cc30 extensions::LauncherPageInfo* info = local
32 ASSERT_TRUE(info);
33 EXPECT_EQ("test.html", info->page);
/external/chromium_org/components/password_manager/core/browser/webdata/
H A Dlogins_table_win.cc13 bool LoginsTable::AddIE7Login(const IE7PasswordInfo& info) { argument
18 s.BindString(0, base::WideToUTF8(info.url_hash));
19 s.BindBlob(1, &info.encrypted_data.front(),
20 static_cast<int>(info.encrypted_data.size()));
21 s.BindInt64(2, info.date_created.ToTimeT());
26 bool LoginsTable::RemoveIE7Login(const IE7PasswordInfo& info) { argument
30 s.BindString(0, base::WideToUTF8(info.url_hash));
35 bool LoginsTable::GetIE7Login(const IE7PasswordInfo& info, argument
41 s.BindString16(0, info.url_hash);
46 result->url_hash = info
[all...]
/external/chromium_org/skia/ext/
H A Dlazy_pixel_ref.cc9 LazyPixelRef::LazyPixelRef(const SkImageInfo& info) : SkPixelRef(info) { argument

Completed in 2869 milliseconds

1234567891011>>