/external/chromium_org/content/common/ |
plugin_list_unittest.cc | 234 WebPluginInfo info; local 235 PluginList::ExtractVersionString("Shockwave Flash 10.1 r102", &info); 236 EXPECT_EQ(ASCIIToUTF16("10.1 r102"), info.version); 237 PluginList::ExtractVersionString("Java(TM) Plug-in 1.6.0_22", &info); 238 EXPECT_EQ(ASCIIToUTF16("1.6.0_22"), info.version); 244 &info); 245 EXPECT_EQ(ASCIIToUTF16("1.2"), info.version);
|
/external/chromium_org/content/renderer/media/ |
media_stream_dependency_factory_unittest.cc | 60 StreamDeviceInfo info; local 61 info.device.type = content::MEDIA_DEVICE_AUDIO_CAPTURE; 62 info.device.name = "audio"; 63 info.session_id = 99; 68 new MediaStreamSourceExtraData(info, dummy_callback)); 72 StreamDeviceInfo info; local 73 info.device.type = content::MEDIA_DEVICE_VIDEO_CAPTURE; 74 info.device.name = "video"; 75 info.session_id = 98; 80 new MediaStreamSourceExtraData(info, dummy_callback)) [all...] |
/external/chromium_org/content/renderer/pepper/ |
pepper_file_chooser_host.cc | 194 ppapi::FileRefCreateInfo info = ppapi::MakeExternalFileRefCreateInfo( local 196 chosen_files.push_back(info);
|
/external/chromium_org/extensions/browser/ |
event_listener_map_unittest.cc | 58 EventFilteringInfo info; local 59 info.SetURL(url); 62 EventRouter::USER_GESTURE_UNKNOWN, info));
|
/external/chromium_org/media/base/android/ |
webaudio_media_codec_bridge.cc | 130 struct WebAudioMediaCodecInfo info = { local 145 HANDLE_EINTR(write(pcm_output_, &info, sizeof(info)));
|
/external/chromium_org/mojo/system/ |
core_impl_unittest.cc | 32 MockHandleInfo info; local 34 EXPECT_EQ(0u, info.GetCtorCallCount()); 35 MojoHandle h = CreateMockHandle(&info); 36 EXPECT_EQ(1u, info.GetCtorCallCount()); 39 EXPECT_EQ(0u, info.GetWriteMessageCallCount()); 43 EXPECT_EQ(1u, info.GetWriteMessageCallCount()); 47 EXPECT_EQ(2u, info.GetWriteMessageCallCount()); 49 EXPECT_EQ(0u, info.GetReadMessageCallCount()); 54 EXPECT_EQ(1u, info.GetReadMessageCallCount()); 59 EXPECT_EQ(2u, info.GetReadMessageCallCount()) 131 MockHandleInfo info; local 168 MockHandleInfo info[2]; local 205 MockHandleInfo info; local 299 MockHandleInfo info; local [all...] |
/external/chromium_org/net/base/ |
directory_lister.h | 29 base::FileEnumerator::FileInfo info; member in struct:net::DirectoryLister::DirectoryListerData
|
file_stream_context_posix.cc | 73 struct stat info; local 74 if (fstat(file_, &info) != 0) { 80 return static_cast<int64>(info.st_size);
|
/external/chromium_org/net/dns/ |
address_sorter_posix_unittest.cc | 154 AddressSorterPosix::SourceAddressInfo* info = &sorter_.source_map_[address]; local 155 if (info->scope == AddressSorterPosix::SCOPE_UNDEFINED) 156 sorter_.FillPolicy(address, info); 157 return info;
|
/external/chromium_org/net/http/ |
http_pipelined_host_impl.cc | 49 PipelineInfo info; local 50 pipelines_.insert(std::make_pair(pipeline, info));
|
/external/chromium_org/net/tools/quic/ |
quic_socket_utils.cc | 33 in6_pktinfo* info = reinterpret_cast<in6_pktinfo*>CMSG_DATA(cmsg); local 34 in6_addr addr = info->ipi6_addr; 38 in_pktinfo* info = reinterpret_cast<in_pktinfo*>CMSG_DATA(cmsg); local 39 in_addr addr = info->ipi_addr; 160 // kSpaceForIp should be big enough to hold both IPv4 and IPv6 packet info.
|
/external/chromium_org/ppapi/proxy/ |
ppp_video_decoder_proxy.cc | 99 const InterfaceProxy::Info* PPP_VideoDecoder_Proxy::GetInfo() { 100 static const Info info = { local 107 return &info;
|
/external/chromium_org/sync/syncable/ |
nigori_util.cc | 176 std::string info; local 179 &info); 183 << info;
|
/external/chromium_org/testing/gtest/test/ |
gtest_stress_test.cc | 90 GTEST_LOG_(INFO) << "Thread #" << id << " running..."; 118 const TestInfo* const info = UnitTest::GetInstance()->current_test_info(); local 119 const TestResult* const result = info->result(); 144 const TestInfo* const info = UnitTest::GetInstance()->current_test_info(); local 145 const TestResult* const result = info->result();
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ScriptWrappable.h | 94 void setTypeInfo(const WrapperTypeInfo* info) 96 m_wrapperOrTypeInfo = reinterpret_cast<uintptr_t>(info); 124 static void setTypeInfoInObject(void* object, const WrapperTypeInfo* info) 129 static void setTypeInfoInObject(ScriptWrappable* object, const WrapperTypeInfo* info) 131 object->setTypeInfo(info); 178 inline void disposeWrapper(v8::Local<v8::Object> value, const WrapperTypeInfo* info) 183 setTypeInfo(info); 188 // If the bottom bit is clear, then this contains a pointer to the wrapper type info in the remaining bits. 197 const WrapperTypeInfo* info = toWrapperTypeInfo(data.GetValue()); local 198 ASSERT(info->derefObjectFunction) [all...] |
V8NPUtils.cpp | 141 ExceptionHandlerInfo* info = new ExceptionHandlerInfo; local 142 info->previous = topHandler; 143 info->handler = handler; 144 info->data = data; 145 topHandler = info;
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8TypedArrayCustom.h | 83 static void v8SetReturnValue(const CallbackInfo& info, TypedArray* impl) 86 v8SetReturnValueNull(info); 89 if (DOMDataStore::setReturnValueFromWrapper<Binding>(info.GetReturnValue(), impl)) 91 v8::Handle<v8::Object> wrapper = wrap(impl, info.Holder(), info.GetIsolate()); 92 info.GetReturnValue().Set(wrapper); 96 static void v8SetReturnValueForMainWorld(const CallbackInfo& info, TypedArray* impl) 98 ASSERT(worldType(info.GetIsolate()) == MainWorld); 100 v8SetReturnValueNull(info); 103 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<Binding>(info.GetReturnValue(), impl) 137 static const WrapperTypeInfo* info() { return &V8TypedArray<TypedArray>::wrapperTypeInfo; } function in class:WebCore::TypedArrayWrapperTraits [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
WebGLProgram.cpp | 169 ActiveInfo info; local 170 context3d->getActiveAttrib(object(), i, info); local 171 m_activeAttribLocations[i] = context3d->getAttribLocation(object(), info.name);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
Canvas2DLayerBridge.cpp | 53 SkImageInfo info; local 54 info.fWidth = size.width(); 55 info.fHeight = size.height(); 56 info.fColorType = kPMColor_SkColorType; 57 info.fAlphaType = kPremul_SkAlphaType; 58 return adoptRef(SkSurface::NewRenderTarget(gr, info, msaaSampleCount));
|
/external/chromium_org/third_party/WebKit/Source/platform/plugins/ |
PluginData.cpp | 91 const MimeClassInfo& info = m_mimes[i]; local 93 if (info.type == mimeType) 102 if (const PluginInfo* info = pluginInfoForMimeType(mimeType)) 103 return info->name; 109 if (const PluginInfo* info = pluginInfoForMimeType(mimeType)) 110 return info->file;
|
/external/chromium_org/third_party/angle/src/compiler/ |
ForLoopUnroll.cpp | 42 void ForLoopUnroll::FillLoopIndexInfo(TIntermLoop* node, TLoopIndexInfo& info) 59 info.id = symbol->getId(); 65 info.initValue = evaluateIntConstant(initNode); 66 info.currentValue = info.initValue; 75 info.incrementValue = getLoopIncrement(node); 76 info.stopValue = evaluateIntConstant( 78 info.op = binOp->getOp(); 84 TLoopIndexInfo& info = mLoopIndexStack[mLoopIndexStack.size() - 1]; local 85 info.currentValue += info.incrementValue 91 TLoopIndexInfo& info = mLoopIndexStack[mLoopIndexStack.size() - 1]; local [all...] |
InfoSink.h | 21 // TPrefixType is used to centralize how info log messages start. 34 // Encapsulate info logs for all objects that have them. 111 TInfoSinkBase info; member in class:TInfoSink
|
VariableInfo.cpp | 85 // Returns info for an attribute, uniform, or varying. 219 TVariableInfo info; local 220 info.name = "gl_FragCoord"; 221 info.mappedName = "gl_FragCoord"; 222 info.type = SH_FLOAT_VEC4; 223 info.size = 1; 224 info.precision = EbpMedium; // Use mediump as it doesn't really matter. 225 info.staticUse = true; 226 mVaryings.push_back(info); 232 TVariableInfo info; local 245 TVariableInfo info; local [all...] |
/external/chromium_org/third_party/cld/languages/internal/ |
languages.cc | 237 const LanguageInfo& info = kLanguageInfoTable[lang]; local 238 if (info.language_code_639_1_) { 239 return info.language_code_639_1_; 240 } else if (info.language_code_639_2_) { 241 return info.language_code_639_2_; 242 } else if (info.language_code_other_) { 243 return info.language_code_other_; 282 const LanguageInfo& info = kLanguageInfoTable[i]; local 283 if ((info.language_code_639_1_ && 284 !base::strcasecmp(lang_code, info.language_code_639_1_)) | [all...] |
/external/chromium_org/third_party/freetype/src/sfnt/ |
pngshim.c | 191 png_infop info; local 219 info = png_create_info_struct( png ); 220 if ( !info ) 235 png_read_info( png, info ); 236 png_get_IHDR( png, info, 261 if ( png_get_valid(png, info, PNG_INFO_tRNS ) ) 281 png_read_update_info(png, info ); 282 png_get_IHDR( png, info, 323 png_read_end( png, info ); 326 png_destroy_read_struct( &png, &info, NULL ) [all...] |