Searched refs:info (Results 1 - 25 of 4582) sorted by relevance

1234567891011>>

/external/chromium_org/net/proxy/
H A Dproxy_info_unittest.cc13 ProxyInfo info; local
16 EXPECT_FALSE(info.is_direct_only());
18 info.UseDirect();
19 EXPECT_TRUE(info.is_direct_only());
21 info.UsePacString("DIRECT");
22 EXPECT_TRUE(info.is_direct_only());
24 info.UsePacString("PROXY myproxy:80");
25 EXPECT_FALSE(info.is_direct_only());
27 info.UsePacString("DIRECT; PROXY myproxy:80");
28 EXPECT_TRUE(info
[all...]
/external/chromium_org/gpu/config/
H A Dgpu_control_list_string_info_unittest.cc27 StringInfo info(op[i], std::string());
28 EXPECT_TRUE(info.IsValid());
31 StringInfo info(op[i], "hello");
32 EXPECT_TRUE(info.IsValid());
46 StringInfo info(op[i], "hello");
47 EXPECT_FALSE(info.IsValid());
53 StringInfo info("contains", "happy");
54 EXPECT_TRUE(info.Contains("unhappy"));
55 EXPECT_TRUE(info.Contains("happy1"));
56 EXPECT_TRUE(info
[all...]
H A Dgpu_control_list_version_info_unittest.cc35 VersionInfo info(op[i], std::string(), string1, string2);
36 EXPECT_TRUE(info.IsValid());
45 VersionInfo info("=", style[i], "8.9", std::string());
46 EXPECT_TRUE(info.IsValid());
48 EXPECT_TRUE(info.IsLexical());
50 EXPECT_FALSE(info.IsLexical());
68 VersionInfo info("=", std::string(), number[i], std::string());
69 EXPECT_TRUE(info.IsValid());
85 VersionInfo info(op[i], std::string(), "8.9", std::string());
87 EXPECT_FALSE(info
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_draw.h43 util_draw_init_info(struct pipe_draw_info *info) argument
45 memset(info, 0, sizeof(*info));
46 info->instance_count = 1;
47 info->max_index = 0xffffffff;
54 struct pipe_draw_info info; local
56 util_draw_init_info(&info);
57 info.mode = mode;
58 info.start = start;
59 info
70 struct pipe_draw_info info; local
88 struct pipe_draw_info info; local
109 struct pipe_draw_info info; local
130 struct pipe_draw_info info; local
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_draw.h43 util_draw_init_info(struct pipe_draw_info *info) argument
45 memset(info, 0, sizeof(*info));
46 info->instance_count = 1;
47 info->max_index = 0xffffffff;
54 struct pipe_draw_info info; local
56 util_draw_init_info(&info);
57 info.mode = mode;
58 info.start = start;
59 info
70 struct pipe_draw_info info; local
88 struct pipe_draw_info info; local
109 struct pipe_draw_info info; local
130 struct pipe_draw_info info; local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8LocationCustom.cpp36 void V8Location::valueOfMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
43 v8SetReturnValue(info, info.This());
H A DV8JavaScriptCallFrameCustom.cpp38 void V8JavaScriptCallFrame::evaluateMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
40 JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toNative(info.Holder());
41 String expression = toCoreStringWithUndefinedOrNullCheck(info[0]);
42 v8SetReturnValue(info, impl->evaluate(expression));
45 void V8JavaScriptCallFrame::restartMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
47 JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toNative(info.Holder());
48 v8SetReturnValue(info, impl->restart());
51 void V8JavaScriptCallFrame::scopeChainAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) argument
53 JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toNative(info.Holder());
54 v8SetReturnValue(info, imp
57 scopeTypeMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
64 thisObjectAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) argument
70 returnValueAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) argument
76 typeAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) argument
[all...]
H A DV8DeviceOrientationEventCustom.cpp35 void V8DeviceOrientationEvent::initDeviceOrientationEventMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
37 DeviceOrientationEvent* imp = V8DeviceOrientationEvent::toNative(info.Holder());
38 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, type, info[0]);
39 bool bubbles = info[1]->BooleanValue();
40 bool cancelable = info[2]->BooleanValue();
43 bool alphaProvided = !isUndefinedOrNull(info[3]);
44 double alpha = info[3]->NumberValue();
45 bool betaProvided = !isUndefinedOrNull(info[4]);
46 double beta = info[4]->NumberValue();
47 bool gammaProvided = !isUndefinedOrNull(info[
[all...]
H A DV8ErrorEventCustom.cpp47 void V8ErrorEvent::errorAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) argument
49 v8::Handle<v8::Value> error = info.Holder()->GetHiddenValue(V8HiddenPropertyName::error(info.GetIsolate()));
52 v8SetReturnValue(info, error);
56 v8SetReturnValueNull(info);
H A DV8CustomEventCustom.cpp53 void V8CustomEvent::detailAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) argument
55 CustomEvent* event = V8CustomEvent::toNative(info.Holder());
57 v8::Handle<v8::Value> result = info.Holder()->GetHiddenValue(V8HiddenPropertyName::detail(info.GetIsolate()));
60 v8SetReturnValue(info, result);
67 v8::Local<v8::Value> mainWorldDetail = getHiddenValueFromMainWorldWrapper(info.GetIsolate(), event, V8HiddenPropertyName::detail(info.GetIsolate()));
69 event->setSerializedDetail(SerializedScriptValue::createAndSwallowExceptions(mainWorldDetail, info.GetIsolate()));
74 v8SetReturnValue(info, cacheState(info
81 initCustomEventMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
[all...]
H A DV8XSLTProcessorCustom.cpp46 void V8XSLTProcessor::setParameterMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
48 if (isUndefinedOrNull(info[1]) || isUndefinedOrNull(info[2]))
51 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, namespaceURI, info[0]);
52 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, localName, info[1]);
53 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, value, info[2]);
55 XSLTProcessor* imp = V8XSLTProcessor::toNative(info.Holder());
59 void V8XSLTProcessor::getParameterMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
61 if (isUndefinedOrNull(info[1]))
64 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, namespaceURI, info[
75 removeParameterMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
[all...]
/external/chromium/chrome/browser/net/
H A Durl_info_unittest.cc29 UrlInfo info_practice, info; local
43 info.SetUrl(url1);
44 EXPECT_TRUE(info.NeedsDnsUpdate()) << "error in construction state";
45 info.SetQueuedState(UrlInfo::UNIT_TEST_MOTIVATED);
46 EXPECT_FALSE(info.NeedsDnsUpdate()) << "update needed after being queued";
47 info.SetAssignedState();
48 EXPECT_FALSE(info.NeedsDnsUpdate()) << "update needed during resolution";
50 info.SetFoundState();
52 if (info.NeedsDnsUpdate()) {
61 info
95 UrlInfo info; local
[all...]
/external/chromium_org/chrome/browser/storage_monitor/
H A Dmock_removable_storage_observer.cc15 const StorageInfo& info) {
17 last_attached_ = info;
21 const StorageInfo& info) {
23 last_detached_ = info;
14 OnRemovableStorageAttached( const StorageInfo& info) argument
20 OnRemovableStorageDetached( const StorageInfo& info) argument
/external/aac/libFDK/src/
H A DFDK_core.cpp81 amm-info@iis.fraunhofer.de
93 /* FDK tools library info */
101 int FDK_toolsGetLibInfo(LIB_INFO *info) argument
106 if (info == NULL) {
111 i = FDKlibInfo_lookup(info, FDK_TOOLS);
114 info += i;
118 FDKsprintf(info->versionStr, "%d.%d.%d", ((v >> 24) & 0xff), ((v >> 16) & 0xff), ((v >> 8 ) & 0xff));
120 info->module_id = FDK_TOOLS;
121 info->version = v;
122 info
[all...]
/external/chromium_org/ash/display/
H A Ddisplay_info_unittest.cc15 DisplayInfo info = DisplayInfo::CreateFromSpecWithID("200x100", 10); local
16 EXPECT_EQ(10, info.id());
17 EXPECT_EQ("0,0 200x100", info.bounds_in_native().ToString());
18 EXPECT_EQ("200x100", info.size_in_pixel().ToString());
19 EXPECT_EQ(gfx::Display::ROTATE_0, info.rotation());
20 EXPECT_EQ("0,0,0,0", info.overscan_insets_in_dip().ToString());
21 EXPECT_EQ(1.0f, info.configured_ui_scale());
23 info = DisplayInfo::CreateFromSpecWithID("10+20-300x400*2/o", 10);
24 EXPECT_EQ("10,20 300x400", info.bounds_in_native().ToString());
25 EXPECT_EQ("288x380", info
[all...]
/external/chromium/chrome/browser/download/
H A Ddownload_types.cc16 DownloadSaveInfo::DownloadSaveInfo(const DownloadSaveInfo& info) argument
17 : file_path(info.file_path),
18 file_stream(info.file_stream) {
24 DownloadSaveInfo& DownloadSaveInfo::operator=(const DownloadSaveInfo& info) { argument
25 file_path = info.file_path;
26 file_stream = info.file_stream;
H A Dsave_file.cc11 SaveFile::SaveFile(const SaveFileCreateInfo* info) argument
12 : BaseFile(FilePath(), info->url, GURL(), 0, linked_ptr<net::FileStream>()),
13 info_(info) {
16 DCHECK(info);
17 DCHECK(info->path.empty());
/external/chromium/net/base/
H A Dssl_info.cc19 SSLInfo::SSLInfo(const SSLInfo& info) argument
20 : cert(info.cert),
21 cert_status(info.cert_status),
22 security_bits(info.security_bits),
23 connection_status(info.connection_status),
24 is_issued_by_known_root(info.is_issued_by_known_root),
25 public_key_hashes(info.public_key_hashes) {
31 SSLInfo& SSLInfo::operator=(const SSLInfo& info) { argument
32 cert = info.cert;
33 cert_status = info
[all...]
/external/webrtc/src/system_wrappers/source/
H A Dset_thread_name_win.h27 THREADNAME_INFO info; local
28 info.dwType = 0x1000;
29 info.szName = szThreadName;
30 info.dwThreadID = dwThreadID;
31 info.dwFlags = 0;
35 RaiseException(0x406D1388, 0, sizeof(info) / sizeof(DWORD),
36 (ULONG_PTR*)&info);
/external/pixman/test/
H A Doob-test.c29 const composite_info_t info[] = variable
66 make_image (const image_info_t *info) argument
68 char *data = malloc (info->stride * info->height);
71 for (i = 0; i < info->height * info->stride; ++i)
74 return pixman_image_create_bits (info->format, info->width, info->height, (uint32_t *)data, info
78 test_composite(const composite_info_t *info) argument
[all...]
/external/chromium_org/net/ssl/
H A Dssl_info.cc18 SSLInfo::SSLInfo(const SSLInfo& info) { argument
19 *this = info;
25 SSLInfo& SSLInfo::operator=(const SSLInfo& info) { argument
26 cert = info.cert;
27 cert_status = info.cert_status;
28 security_bits = info.security_bits;
29 connection_status = info.connection_status;
30 is_issued_by_known_root = info.is_issued_by_known_root;
31 client_cert_sent = info.client_cert_sent;
32 channel_id_sent = info
[all...]
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dinfo_view.css6 #info-view {
10 #info-view h3 {
14 #info-view .row-title {
18 #info-view table {
23 #info-view table,
24 #info-view th,
25 #info-view td {
32 #info-view .feature-green {
36 #info-view .feature-yellow {
40 #info
[all...]
/external/chromium_org/chrome/browser/net/
H A Durl_info_unittest.cc29 UrlInfo info_practice, info; local
43 info.SetUrl(url1);
44 EXPECT_TRUE(info.NeedsDnsUpdate()) << "error in construction state";
45 info.SetQueuedState(UrlInfo::UNIT_TEST_MOTIVATED);
46 EXPECT_FALSE(info.NeedsDnsUpdate()) << "update needed after being queued";
47 info.SetAssignedState();
48 EXPECT_FALSE(info.NeedsDnsUpdate()) << "update needed during resolution";
50 info.SetFoundState();
52 if (info.NeedsDnsUpdate()) {
61 info
96 UrlInfo info; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
H A Docclusion-query.c17 static struct graw_info info; variable in typeref:struct:graw_info
91 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
92 info.ctx->bind_vertex_elements_state(info.ctx, handle);
97 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
103 info.ctx->set_vertex_buffers(info.ctx, 1, &vbuf);
108 set_vertex_shader(struct graw_info *info) argument
121 handle = graw_parse_vertex_shader(info
131 set_fragment_shader(struct graw_info *info) argument
[all...]
/external/mesa3d/src/gallium/tests/graw/
H A Docclusion-query.c17 static struct graw_info info; variable in typeref:struct:graw_info
91 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
92 info.ctx->bind_vertex_elements_state(info.ctx, handle);
97 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
103 info.ctx->set_vertex_buffers(info.ctx, 1, &vbuf);
108 set_vertex_shader(struct graw_info *info) argument
121 handle = graw_parse_vertex_shader(info
131 set_fragment_shader(struct graw_info *info) argument
[all...]

Completed in 1978 milliseconds

1234567891011>>