/external/chromium_org/ppapi/proxy/ |
file_ref_resource.cc | 164 int32_t FileRefResource::Query(PP_FileInfo* info, 166 if (info == NULL) 172 base::Bind(&FileRefResource::OnQueryReply, this, info, callback)); 195 PPB_FileRef_CreateInfo *info = new PPB_FileRef_CreateInfo(); local 196 return *info; 200 int32_t FileRefResource::QueryInHost(linked_ptr<PP_FileInfo> info, 238 const PP_FileInfo& info) { 243 *out_info = info;
|
ppb_message_loop_proxy.cc | 94 const TaskInfo& info = pending_tasks_[i]; local 95 PostClosure(info.from_here, info.closure, info.delay_ms); 184 TaskInfo info; local 185 info.from_here = FROM_HERE; 186 info.closure = closure; 187 info.delay_ms = delay_ms; 188 pending_tasks_.push_back(info);
|
ppb_testing_proxy.cc | 161 const InterfaceProxy::Info* PPB_Testing_Proxy::GetInfo() { 162 static const Info info = { local 169 return &info;
|
/external/chromium_org/ppapi/tests/ |
test_flash_file.cc | 227 PP_FileInfo info; local 228 ASSERT_FALSE(FileModuleLocal::QueryFile(instance_, dirname, &info)); 230 ASSERT_TRUE(FileModuleLocal::QueryFile(instance_, dirname, &info)); 231 ASSERT_EQ(info.type, PP_FILETYPE_DIRECTORY); 240 PP_FileInfo info; local 250 ASSERT_TRUE(FileModuleLocal::QueryFile(instance_, filename, &info)); 251 ASSERT_EQ(static_cast<size_t>(info.size), contents.size()); 252 ASSERT_EQ(info.type, PP_FILETYPE_REGULAR); 257 ASSERT_TRUE(FileModuleLocal::QueryFile(instance_, dirname, &info)); 258 ASSERT_EQ(info.type, PP_FILETYPE_DIRECTORY) [all...] |
/external/chromium_org/printing/backend/ |
print_backend_win.cc | 83 PrinterBasicInfo info; local 85 InitBasicPrinterInfo(printer, &info)) { 86 info.is_default = (info.printer_name == default_printer); 87 printer_list->push_back(info); 118 // Get printer capabilities. For more info see here:
|
/external/chromium_org/remoting/host/ |
host_main.cc | 112 SHELLEXECUTEINFO info; local 113 memset(&info, 0, sizeof(info)); 114 info.cbSize = sizeof(info); 115 info.lpVerb = L"runas"; 116 info.lpFile = binary.value().c_str(); 117 info.lpParameters = parameters.c_str(); 118 info.nShow = SW_SHOWNORMAL; 120 if (!ShellExecuteEx(&info)) { 203 INITCOMMONCONTROLSEX info; local [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
V8Float64Array.cpp | 50 ScriptWrappable::setTypeInfoInObject(object, &V8Float64Array::info); 60 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/feedback/details/664619/the-namespace-of-local-function-declarations-in-c) 67 WrapperTypeInfo V8Float64Array::info = { V8Float64Array::GetTemplate, V8Float64Array::derefObject, 0, 0, 0, V8Float64Array::installPerContextPrototypeProperties, &V8ArrayBufferView::info, WrapperTypeObjectPrototype }; member in class:WebCore::V8Float64Array 104 static void indexedPropertyGetterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) 107 V8Float64Array::indexedPropertyGetterCustom(index, info); 111 static void indexedPropertySetterCallback(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) 114 V8Float64Array::indexedPropertySetterCustom(index, value, info); 180 V8PerIsolateData::TemplateMap::iterator result = data->templateMap(currentWorldType).find(&info); 187 ConfigureV8Float64ArrayTemplate(data->rawTemplate(&info, currentWorldType), isolate, currentWorldType) [all...] |
V8TestCustomAccessors.cpp | 41 ScriptWrappable::setTypeInfoInObject(object, &V8TestCustomAccessors::info); 51 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/feedback/details/664619/the-namespace-of-local-function-declarations-in-c) 58 WrapperTypeInfo V8TestCustomAccessors::info = { V8TestCustomAccessors::GetTemplate, V8TestCustomAccessors::derefObject, 0, 0, 0, V8TestCustomAccessors::installPerContextPrototypeProperties, 0, WrapperTypeObjectPrototype }; member in class:WebCore::V8TestCustomAccessors 84 static void indexedPropertyGetterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) 87 V8TestCustomAccessors::indexedPropertyGetterCustom(index, info); 91 static void indexedPropertySetterCallback(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) 94 V8TestCustomAccessors::indexedPropertySetterCustom(index, value, info); 98 static void indexedPropertyDeleterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Boolean>& info) 101 V8TestCustomAccessors::indexedPropertyDeleterCustom(index, info); 105 static void namedPropertyGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) [all...] |
V8TestEventConstructor.cpp | 42 ScriptWrappable::setTypeInfoInObject(object, &V8TestEventConstructor::info); 52 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/feedback/details/664619/the-namespace-of-local-function-declarations-in-c) 59 WrapperTypeInfo V8TestEventConstructor::info = { V8TestEventConstructor::GetTemplate, V8TestEventConstructor::derefObject, 0, 0, 0, V8TestEventConstructor::installPerContextPrototypeProperties, 0, WrapperTypeObjectPrototype }; member in class:WebCore::V8TestEventConstructor 65 static void attr1AttrGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) 67 TestEventConstructor* imp = V8TestEventConstructor::toNative(info.Holder()); 68 v8SetReturnValueString(info, imp->attr1(), info.GetIsolate()); 72 static void attr1AttrGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) 75 TestEventConstructorV8Internal::attr1AttrGetter(name, info); 79 static void attr2AttrGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) [all...] |
V8TestExtendedEvent.cpp | 46 ScriptWrappable::setTypeInfoInObject(object, &V8TestExtendedEvent::info); 56 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/feedback/details/664619/the-namespace-of-local-function-declarations-in-c) 63 WrapperTypeInfo V8TestExtendedEvent::info = { V8TestExtendedEvent::GetTemplate, V8TestExtendedEvent::derefObject, 0, 0, 0, V8TestExtendedEvent::installPerContextPrototypeProperties, &V8TestEvent::info, WrapperTypeObjectPrototype }; member in class:WebCore::V8TestExtendedEvent 69 static void locationAttrGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) 71 Event* imp = V8TestExtendedEvent::toNative(info.Holder()); 72 v8SetReturnValueUnsigned(info, imp->location()); 76 static void locationAttrGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) 79 EventV8Internal::locationAttrGetter(name, info); 83 static void keyLocationAttrGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) [all...] |
V8TestInterfaceImplementedAs.cpp | 43 ScriptWrappable::setTypeInfoInObject(object, &V8TestInterfaceImplementedAs::info); 53 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/feedback/details/664619/the-namespace-of-local-function-declarations-in-c) 60 WrapperTypeInfo V8TestInterfaceImplementedAs::info = { V8TestInterfaceImplementedAs::GetTemplate, V8TestInterfaceImplementedAs::derefObject, 0, 0, 0, V8TestInterfaceImplementedAs::installPerContextPrototypeProperties, 0, WrapperTypeObjectPrototype }; member in class:WebCore::V8TestInterfaceImplementedAs 66 static void aAttrGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) 68 RealClass* imp = V8TestInterfaceImplementedAs::toNative(info.Holder()); 69 v8SetReturnValueString(info, imp->a(), info.GetIsolate()); 73 static void aAttrGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) 76 RealClassV8Internal::aAttrGetter(name, info); 80 static void aAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) [all...] |
V8TestSerializedScriptValueInterface.cpp | 42 ScriptWrappable::setTypeInfoInObject(object, &V8TestSerializedScriptValueInterface::info); 52 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/feedback/details/664619/the-namespace-of-local-function-declarations-in-c) 59 WrapperTypeInfo V8TestSerializedScriptValueInterface::info = { V8TestSerializedScriptValueInterface::GetTemplate, V8TestSerializedScriptValueInterface::derefObject, 0, 0, 0, V8TestSerializedScriptValueInterface::installPerContextPrototypeProperties, 0, WrapperTypeObjectPrototype }; member in class:WebCore::V8TestSerializedScriptValueInterface 65 static void valueAttrGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) 67 TestSerializedScriptValueInterface* imp = V8TestSerializedScriptValueInterface::toNative(info.Holder()); 68 v8SetReturnValue(info, imp->value() ? imp->value()->deserialize() : v8::Handle<v8::Value>(v8::Null(info.GetIsolate()))); 72 static void valueAttrGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) 75 TestSerializedScriptValueInterfaceV8Internal::valueAttrGetter(name, info); 79 static void valueAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
WebGLTexture.cpp | 169 LevelInfo& info = m_info[ii][level]; local 170 info.setInfo(info0.internalFormat, width, height, info0.type); 180 const LevelInfo* info = getLevelInfo(target, level); local 181 if (!info) 183 return info->internalFormat; 188 const LevelInfo* info = getLevelInfo(target, level); local 189 if (!info) 191 return info->type; 196 const LevelInfo* info = getLevelInfo(target, level); local 197 if (!info) 204 const LevelInfo* info = getLevelInfo(target, level); local 212 const LevelInfo* info = getLevelInfo(target, level); local 283 const LevelInfo& info = m_info[ii][0]; local 345 const LevelInfo& info = m_info[ii][level]; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorApplicationCacheAgent.cpp | 88 ApplicationCacheHost::CacheInfo info = host->applicationCacheInfo(); local 90 String manifestURL = info.m_manifest.string(); 111 ApplicationCacheHost::CacheInfo info = host->applicationCacheInfo(); local 112 String manifestURL = info.m_manifest.string(); 138 ApplicationCacheHost::CacheInfo info = documentLoader->applicationCacheHost()->applicationCacheInfo(); 139 *manifestURL = info.m_manifest.string(); 149 ApplicationCacheHost::CacheInfo info = host->applicationCacheInfo(); local 154 applicationCache = buildObjectForApplicationCache(resources, info);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/ |
FontPlatformDataChromiumWin.cpp | 108 LOGFONT info; local 109 GetObject(hfont, sizeof(info), &info); 111 int height = info.lfHeight; 117 *paintTextFlags = computePaintTextFlags(info); 118 return adoptRef(SkCreateTypefaceFromLOGFONT(info));
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
ShapeInfo.h | 49 if (InfoType* info = infoMap.get(key)) 50 return info; 55 static InfoType* info(const KeyType* key) { return infoMap().get(key); } function in class:WebCore::MappedInfo
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
NormalizeAlgorithm.cpp | 259 const AlgorithmInfo* info = AlgorithmRegistry::lookupAlgorithmByName(algorithmName); local 260 if (!info) { 265 return info; 275 const AlgorithmInfo* info = algorithmInfo(raw, es); local 276 if (!info) 279 if (info->paramsForOperation[op] == UnsupportedOp) { 284 WebKit::WebCryptoAlgorithmParamsType paramsType = static_cast<WebKit::WebCryptoAlgorithmParamsType>(info->paramsForOperation[op]); 292 algorithm = WebKit::WebCryptoAlgorithm(info->algorithmId, info->algorithmName, params.release());
|
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/ |
mathutil.h | 96 int info[4]; local 97 __cpuid(info, 0); 99 if (info[0] >= 1) 101 __cpuid(info, 1); 103 supports = (info[3] >> 26) & 1;
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-buffer-private.hh | 65 unsigned int idx; /* Cursor into ->info and ->pos arrays */ 66 unsigned int len; /* Length of ->info and ->pos arrays */ 70 hb_glyph_info_t *info; member in struct:hb_buffer_t 74 inline hb_glyph_info_t &cur (unsigned int i = 0) { return info[idx + i]; } 75 inline hb_glyph_info_t cur (unsigned int i = 0) const { return info[idx + i]; } 81 inline hb_glyph_info_t prev (void) const { return info[out_len - 1]; } 83 inline bool has_separate_output (void) const { return info != out_info; } 144 if (unlikely (out_info != info || out_len != idx)) { 146 out_info[out_len] = info[idx]; 160 info[j].mask = mask [all...] |
hb-ot-map.cc | 94 feature_info_t *info = feature_infos.push(); local 95 if (unlikely (!info)) return; 96 info->tag = tag; 97 info->seq = feature_infos.len; 98 info->max_value = value; 99 info->flags = flags; 100 info->default_value = (flags & F_GLOBAL) ? value : 0; 101 info->stage[0] = current_stage[0]; 102 info->stage[1] = current_stage[1]; 207 const feature_info_t *info = &feature_infos[i] local [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
dadrcal.cpp | 45 const DataMap *info= NULL; local 50 if (testData->getInfo(info, status)) { 51 log(info->getString("Description", status)); 126 // #2 'from' info 145 // #4 'operation' info 161 // #3 'params' info 178 // #4 'to' info
|
dadrcoll.cpp | 58 const DataMap *info = NULL; local 62 if(testData->getInfo(info, status)) { 63 log(info->getString("Description", status));
|
dadrfmt.cpp | 47 const DataMap *info= NULL; local 52 if (testData->getInfo(info, status)) { 53 log(info->getString("Description", status));
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcvideocapturer.cc | 72 virtual void DestroyDeviceInfo(webrtc::VideoCaptureModule::DeviceInfo* info) { 73 delete info; 148 webrtc::VideoCaptureModule::DeviceInfo* info = factory_->CreateDeviceInfo(0); local 149 if (!info) { 156 int num_cams = info->NumberOfDevices(); 161 if (info->GetDeviceName(index, vcm_name, ARRAY_SIZE(vcm_name), 171 factory_->DestroyDeviceInfo(info); 178 int32_t num_caps = info->NumberOfCapabilities(vcm_id); 181 if (info->GetCapability(vcm_id, i, cap) != -1) { 191 factory_->DestroyDeviceInfo(info); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_pt.c | 329 if (elements[i] == info->restart_index) { \ 355 const struct pipe_draw_info *info) 357 const unsigned prim = info->mode; 358 const unsigned start = info->start; 359 const unsigned count = info->count; 363 assert(info->primitive_restart); 427 struct pipe_draw_info info; local 429 util_draw_init_info(&info); 431 info.mode = mode; 432 info.start = start [all...] |