Searched refs:info (Results 1 - 25 of 4808) 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/ash/display/
H A Ddisplay_info_unittest.cc14 DisplayInfo info = DisplayInfo::CreateFromSpecWithID("200x100", 10); local
15 EXPECT_EQ(10, info.id());
16 EXPECT_EQ("0,0 200x100", info.bounds_in_native().ToString());
17 EXPECT_EQ("200x100", info.size_in_pixel().ToString());
18 EXPECT_EQ(gfx::Display::ROTATE_0, info.rotation());
19 EXPECT_EQ("0,0,0,0", info.overscan_insets_in_dip().ToString());
20 EXPECT_EQ(1.0f, info.configured_ui_scale());
22 info = DisplayInfo::CreateFromSpecWithID("10+20-300x400*2/o", 10);
23 EXPECT_EQ("10,20 300x400", info.bounds_in_native().ToString());
24 EXPECT_EQ("288x380", info
[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 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 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* impl = V8DeviceOrientationEvent::toNative(info.Holder());
38 TOSTRING_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 DV8MessageChannelCustom.cpp43 void V8MessageChannel::constructorCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
45 ExecutionContext* context = currentExecutionContext(info.GetIsolate());
49 v8::Local<v8::Object> wrapper = info.Holder();
54 V8HiddenValue::setHiddenValue(info.GetIsolate(), wrapper, V8HiddenValue::port1(info.GetIsolate()), toV8(obj->port1(), info.Holder(), info.GetIsolate()));
55 V8HiddenValue::setHiddenValue(info.GetIsolate(), wrapper, V8HiddenValue::port2(info.GetIsolate()), toV8(obj->port2(), info
[all...]
H A DV8ElementCustom.cpp48 void V8Element::scrollLeftAttributeSetterCustom(v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) argument
50 ExceptionState exceptionState(ExceptionState::SetterContext, "scrollLeft", "Element", info.Holder(), info.GetIsolate());
51 Element* impl = V8Element::toNative(info.Holder());
54 TONATIVE_VOID(Dictionary, scrollOptionsHorizontal, Dictionary(value, info.GetIsolate()));
64 void V8Element::scrollTopAttributeSetterCustom(v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) argument
66 ExceptionState exceptionState(ExceptionState::SetterContext, "scrollTop", "Element", info.Holder(), info.GetIsolate());
67 Element* impl = V8Element::toNative(info.Holder());
70 TONATIVE_VOID(Dictionary, scrollOptionsVertical, Dictionary(value, info
86 animate1Method(const v8::FunctionCallbackInfo<v8::Value>& info) argument
94 animate2Method(const v8::FunctionCallbackInfo<v8::Value>& info) argument
106 animate3Method(const v8::FunctionCallbackInfo<v8::Value>& info) argument
115 animate4Method(const v8::FunctionCallbackInfo<v8::Value>& info) argument
128 animate5Method(const v8::FunctionCallbackInfo<v8::Value>& info) argument
141 animate6Method(const v8::FunctionCallbackInfo<v8::Value>& info) argument
158 animateMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
[all...]
H A DV8HistoryCustom.cpp44 void V8History::stateAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) argument
46 History* history = V8History::toNative(info.Holder());
48 v8::Handle<v8::Value> value = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::state(info.GetIsolate()));
51 v8SetReturnValue(info, value);
56 value = serialized ? serialized->deserialize(info.GetIsolate()) : v8::Handle<v8::Value>(v8::Null(info.GetIsolate()));
57 V8HiddenValue::setHiddenValue(info.GetIsolate(), info
62 pushStateMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
78 replaceStateMethodCustom(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 TOSTRING_VOID(V8StringResource<>, namespaceURI, info[0]);
52 TOSTRING_VOID(V8StringResource<>, localName, info[1]);
53 TOSTRING_VOID(V8StringResource<>, value, info[2]);
55 XSLTProcessor* impl = V8XSLTProcessor::toNative(info.Holder());
59 void V8XSLTProcessor::getParameterMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
61 if (isUndefinedOrNull(info[1]))
64 TOSTRING_VOID(V8StringResource<>, namespaceURI, info[
75 removeParameterMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) argument
[all...]
/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/skia/ext/
H A Dlazy_pixel_ref.cc9 LazyPixelRef::LazyPixelRef(const SkImageInfo& info) : SkPixelRef(info) { argument
/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_org/third_party/webrtc/system_wrappers/source/
H A Dset_thread_name_win.h92 THREADNAME_INFO info; local
93 info.dwType = 0x1000;
94 info.szName = szThreadName;
95 info.dwThreadID = dwThreadID;
96 info.dwFlags = 0;
100 RaiseException(0x406D1388, 0, sizeof(info) / sizeof(DWORD),
101 (ULONG_PTR*)&info);
/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/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/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...]
/external/iptables/extensions/
H A Dlibxt_length.c25 struct xt_length_info *info = cb->data; local
28 info->min = cb->val.u16_range[0];
29 info->max = cb->val.u16_range[0];
31 info->max = cb->val.u16_range[1];
33 info->invert = 1;
39 const struct xt_length_info *info = (void *)match->data; local
41 printf(" length %s", info->invert ? "!" : "");
42 if (info->min == info->max)
43 printf("%u", info
50 const struct xt_length_info *info = (void *)match->data; local
[all...]

Completed in 2990 milliseconds

1234567891011>>