Searched defs:component_id (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/components/policy/core/common/
H A Dpolicy_namespace.h35 PolicyNamespace(PolicyDomain domain, const std::string& component_id);
45 std::string component_id; member in struct:policy::PolicyNamespace
H A Dpolicy_namespace.cc12 const std::string& component_id)
14 component_id(component_id) {}
18 component_id(other.component_id) {}
24 component_id = other.component_id;
30 (domain == other.domain && component_id < other.component_id);
34 return domain == other.domain && component_id
11 PolicyNamespace(PolicyDomain domain, const std::string& component_id) argument
[all...]
/external/chromium_org/ui/base/ime/chromeos/
H A Dmock_ime_engine_handler.cc36 void MockIMEEngineHandler::Enable(const std::string& component_id) { argument
/external/chromium_org/chrome/browser/ui/webui/
H A Dcomponents_ui.cc119 std::string component_id; local
120 if (!args->GetString(0, &component_id)) {
125 ComponentsUI::OnDemandUpdate(component_id);
155 void ComponentsUI::OnDemandUpdate(const std::string& component_id) { argument
158 cus->GetOnDemandUpdater().OnDemandUpdate(component_id);
/external/chromium_org/third_party/libva/va/
H A Dva_dec_jpeg.h63 unsigned char component_id; member in struct:_VAPictureParameterBufferJPEGBaseline::__anon12924
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dmock_input_method_engine.cc104 void MockInputMethodEngine::Enable(const std::string& component_id) { argument
105 active_component_id_ = component_id;
H A Dinput_method_engine.cc557 void InputMethodEngine::Enable(const std::string& component_id) { argument
558 DCHECK(!component_id.empty());
559 active_component_id_ = component_id;
560 observer_->OnActivate(component_id);
H A Dinput_method_manager_impl.cc68 const std::string component_id = local
72 if (StartsWithASCII(component_id, "xkb:", true)) {
73 ch = component_id[4];
75 } else if (StartsWithASCII(component_id, "zh-", true)) {
76 size_t pos = component_id.find("-t-i0-");
79 ch = component_id[pos];
81 } else if (StartsWithASCII(component_id, "nacl_mozc_", true)) {
82 ch = component_id[10];
84 } else if (StartsWithASCII(component_id, "hangul_", true)) {
85 ch = component_id[
1002 const std::string& component_id = local
[all...]
/external/chromium_org/chrome/browser/component_updater/test/
H A Dcomponent_updater_service_unittest.cc141 const std::string& component_id) {
142 return cus->GetOnDemandUpdater().OnDemandUpdate(component_id);
139 OnDemand( ComponentUpdateService* cus, const std::string& component_id) argument
/external/chromium_org/content/browser/media/
H A Dmedia_internals.cc73 virtual void OnCreated(int component_id,
76 virtual void OnStarted(int component_id) OVERRIDE;
77 virtual void OnStopped(int component_id) OVERRIDE;
78 virtual void OnClosed(int component_id) OVERRIDE;
79 virtual void OnError(int component_id) OVERRIDE;
80 virtual void OnSetVolume(int component_id, double volume) OVERRIDE;
83 void SendSingleStringUpdate(int component_id,
86 void StoreComponentMetadata(int component_id, base::DictionaryValue* dict);
87 std::string FormatCacheKey(int component_id);
105 void AudioLogImpl::OnCreated(int component_id, argument
124 OnStarted(int component_id) argument
128 OnStopped(int component_id) argument
132 OnClosed(int component_id) argument
140 OnError(int component_id) argument
144 OnSetVolume(int component_id, double volume) argument
152 FormatCacheKey(int component_id) argument
156 SendSingleStringUpdate(int component_id, const std::string& key, const std::string& value) argument
166 StoreComponentMetadata(int component_id, base::DictionaryValue* dict) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/input_ime/
H A Dinput_ime_api.cc107 virtual void OnActivate(const std::string& component_id) OVERRIDE {
112 component_id,
119 virtual void OnDeactivated(const std::string& component_id) OVERRIDE {
124 input_ime::OnDeactivated::Create(component_id));
173 const std::string& component_id,
192 ime_event_router->AddRequest(component_id, key_data);
207 input_ime::OnKeyEvent::Create(component_id, key_data_value));
214 const std::string& component_id,
239 component_id, candidate_id, button_enum));
245 virtual void OnMenuItemActivated(const std::string& component_id,
412 GetEngine( const std::string& extension_id, const std::string& component_id) argument
441 std::string component_id = request->second.first; local
448 AddRequest( const std::string& component_id, chromeos::input_method::KeyEventHandle* key_data) argument
[all...]
/external/chromium_org/components/policy/core/common/cloud/
H A Dcomponent_cloud_policy_service.cc34 const std::string& component_id) {
35 return schema_map->GetSchema(PolicyNamespace(domain, component_id)) == NULL;
41 ns->component_id = key.second;
32 NotInSchemaMap(const scoped_refptr<SchemaMap> schema_map, PolicyDomain domain, const std::string& component_id) argument
/external/chromium_org/components/component_updater/
H A Dcomponent_updater_service.cc145 virtual bool GetComponentDetails(const std::string& component_id,
149 virtual Status OnDemandUpdate(const std::string& component_id) OVERRIDE;
158 void DownloadProgress(const std::string& component_id,
185 void EndUnpacking(const std::string& component_id,
190 void DoneInstalling(const std::string& component_id,
510 bool CrxUpdateService::GetComponentDetails(const std::string& component_id, argument
513 const CrxUpdateItem* crx_update_item(FindUpdateItemById(component_id));
521 // |component_id| is a value returned from GetCrxComponentID().
523 const std::string& component_id) {
524 return OnDemandUpdateInternal(FindUpdateItemById(component_id));
522 OnDemandUpdate( const std::string& component_id) argument
780 DownloadProgress( const std::string& component_id, const CrxDownloader::Result& download_result) argument
869 EndUnpacking(const std::string& component_id, const base::FilePath& crx_path, ComponentUnpacker::Error error, int extended_error) argument
890 DoneInstalling(const std::string& component_id, ComponentUnpacker::Error error, int extra_code) argument
[all...]
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_unittest.cc1362 int64 component_id,
1367 component_id,
1361 CheckLatencyInfoComponentInMessage(RenderWidgetHostProcess* process, int64 component_id, WebInputEvent::Type input_type) argument
/external/qemu/
H A Dtap-win32.c210 char component_id[256]; local
245 len = sizeof (component_id);
251 (LPBYTE)component_id,
265 if (/* !strcmp (component_id, TAP_COMPONENT_ID) &&*/
/external/chromium_org/third_party/libjpeg_turbo/
H A Djpeglib.h127 int component_id; /* identifier for this component (0..255) */ member in struct:__anon12758
/external/jpeg/
H A Djpeglib.h120 int component_id; /* identifier for this component (0..255) */ member in struct:__anon22722
/external/qemu/distrib/jpeg-6b/
H A Djpeglib.h120 int component_id; /* identifier for this component (0..255) */ member in struct:__anon29320
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dwebrtcsdp.cc665 // the given value of |component_id|.
667 // The value of |component_id| currently supported are 1 (RTP) and 2 (RTCP).
671 int component_id, std::string* port, std::string* ip) {
677 if (it->component() != component_id) {
984 int component_id = 0; local
985 if (!GetValueFromString(first_line, fields[1], &component_id, error)) {
1084 *candidate = Candidate(id, component_id, cricket::ProtoToString(protocol),
670 GetDefaultDestination(const std::vector<Candidate>& candidates, int component_id, std::string* port, std::string* ip) argument
/external/pdfium/core/include/thirdparties/libjpeg/
H A Djpeglib.h187 int component_id; /* identifier for this component (0..255) */ member in struct:__anon28550
/external/pdfium/core/src/fxcodec/libjpeg/
H A Djpeglib.h187 int component_id; /* identifier for this component (0..255) */ member in struct:__anon28765
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 5811 milliseconds