Searched refs:component (Results 26 - 50 of 439) sorted by relevance

1234567891011>>

/external/deqp/android/package/src/com/drawelements/deqp/testercore/
H A DRemoteAPI.java58 ComponentName component = ComponentName.unflattenFromString(testerName);
59 if (component == null) {
60 Log.e(LOG_TAG, "Invalid component name supplied (" + testerName + "), using default");
61 component = getDefaultTesterComponent();
63 return component;
71 // Choose component
72 ComponentName component = getTesterComponent(testerName);
75 testIntent.setComponent(component);
92 Log.e(LOG_TAG, "Can't resolve component as activity or service (" + component
[all...]
/external/chromium_org/build/android/pylib/device/
H A Dintent.py14 category=None, component=None, data=None, extras=None,
21 component.
23 component: A string that specifies the component to send the intent to.
29 component.
37 self._component = component
43 if self._component and '/' in component:
44 self._package, self._activity = component.split('/', 1)
61 def component(self): member in class:Intent
/external/chromium_org/third_party/webrtc/base/
H A Dmacutils.cc152 ComponentInstance component = NULL; local
163 component = OpenDefaultComponent(kOSAComponentType, typeAppleScript);
164 if (component == NULL) {
165 LOG(LS_ERROR) << "Failed opening Apple Script component";
170 CloseComponent(component);
175 err = OSACompile(component, &script_desc, kOSAModeCanInteract, &script_id);
179 OSADispose(component, script_id);
181 CloseComponent(component);
186 err = OSAExecute(component, script_id, kOSANullScript, kOSAModeCanInteract,
192 OSAScriptError(component, kOSAErrorMessag
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dportallocator.cc35 int component,
40 component_(component),
60 int component,
74 content_name, component, ice_ufrag, ice_pwd);
83 new PortAllocatorSessionProxy(content_name, component, flags_);
87 return CreateSessionInternal(content_name, component, ice_ufrag, ice_pwd);
34 PortAllocatorSession(const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd, uint32 flags) argument
57 CreateSession( const std::string& sid, const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd) argument
/external/chromium_org/chromeos/
H A Dchromeos_test_utils.cc14 bool GetTestDataPath(const std::string& component, argument
26 path = path.Append(component);
H A Dchromeos_test_utils.h18 bool GetTestDataPath(const std::string& component,
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMMediaStreamTrack.cpp63 WebMediaStreamTrack WebDOMMediaStreamTrack::component() const function in class:blink::WebDOMMediaStreamTrack
65 return WebMediaStreamTrack(m_private->component());
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dobject_store_creator.py62 for component in (category, app_version):
63 if component and ('&' in component or '=' in component):
/external/chromium_org/media/audio/
H A Dfake_audio_log_factory.h21 AudioComponent component) OVERRIDE;
/external/chromium_org/remoting/host/setup/
H A Doauth_helper.cc15 const url::Component component) {
16 if (component.len < 0) {
19 return url.substr(component.begin, component.len);
14 GetComponent(const std::string& url, const url::Component component) argument
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DRTCStatsRequest.h49 virtual MediaStreamComponent* component() = 0;
/external/replicaisland/src/com/replica/replicaisland/
H A DChangeComponentsComponent.java20 * A game component that can swap other components in and out of its parent game object. The
64 GameComponent component = unrelasedComponents.get(x);
65 if (!component.shared) {
66 factory.releaseComponent(component);
95 public void addSwapInComponent(GameComponent component) { argument
96 mComponentsToInsert.add(component);
99 public void addSwapOutComponent(GameComponent component) { argument
100 mComponentsToRemove.add(component);
/external/chromium_org/ash/wm/workspace/
H A Dworkspace_event_handler.cc40 int component = local
42 multi_window_resize_controller_.Show(target, component,
56 int component = target->delegate()-> local
58 if (component == HTCAPTION &&
59 component == click_component_) {
123 int component = local
125 if (component == HTBOTTOM || component == HTTOP) {
131 } else if (component == HTLEFT || component
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/share/
H A DShareHelper.java99 ComponentName component =
101 setLastShareComponentName(activity, component);
102 Intent intent = getDirectShareIntentForComponent(title, url, screenshot, component,
121 ComponentName component = getLastShareComponentName(activity);
122 if (component == null) return;
124 title, url, screenshot, component, extraIntentFlags);
138 ComponentName component = getLastShareComponentName(activity);
139 if (component != null) {
141 directShareIcon = activity.getPackageManager().getActivityIcon(component);
143 component
168 getDirectShareIntentForComponent(String title, String url, Bitmap screenshot, ComponentName component, int extraIntentFlags) argument
185 setLastShareComponentName(Context context, ComponentName component) argument
[all...]
/external/chromium_org/ui/views/window/
H A Dnon_client_view.cc274 int component; local
277 component = HTTOPLEFT;
279 component = HTBOTTOMLEFT;
281 component = HTLEFT;
284 component = HTTOPRIGHT;
286 component = HTBOTTOMRIGHT;
288 component = HTRIGHT;
291 component = HTTOPLEFT;
293 component = HTTOPRIGHT;
295 component
[all...]
/external/chromium_org/content/browser/resources/media/
H A Dmain.js43 for (var component in everything) {
44 media.updateAudioComponent(everything[component]);
126 media.updateAudioComponent = function(component) {
127 var uniqueComponentId = component.owner_id + ':' + component.component_id;
128 switch (component.status) {
131 component.component_type, uniqueComponentId);
135 component.component_type, uniqueComponentId, component);
/external/deqp/framework/randomshaders/
H A DrsgUtils.cpp67 float minVal = valueRange.component(ndx).getMin().asFloat();
68 float maxVal = valueRange.component(ndx).getMax().asFloat();
69 dst.component(ndx).asFloat() = getQuantizedFloat(rnd, minVal, maxVal, quantizeStep);
76 int minVal = valueRange.component(ndx).getMin().asBool() ? 1 : 0;
77 int maxVal = valueRange.component(ndx).getMin().asBool() ? 1 : 0;
78 dst.component(ndx).asBool() = rnd.getInt(minVal, maxVal) == 1;
87 int minVal = valueRange.component(ndx).getMin().asInt();
88 int maxVal = valueRange.component(ndx).getMax().asInt();
89 dst.component(ndx).asInt() = rnd.getInt(minVal, maxVal);
138 if (valueRange.getMin().component(nd
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaStreamTrack.cpp44 MediaStreamTrack* MediaStreamTrack::create(ExecutionContext* context, MediaStreamComponent* component) argument
46 MediaStreamTrack* track = adoptRefCountedGarbageCollectedWillBeNoop(new MediaStreamTrack(context, component));
51 MediaStreamTrack::MediaStreamTrack(ExecutionContext* context, MediaStreamComponent* component) argument
56 , m_component(component)
149 MediaStreamCenter::instance().didStopMediaStreamTrack(component());
156 RefPtr<MediaStreamComponent> clonedComponent = MediaStreamComponent::create(component()->source());
196 MediaStreamComponent* MediaStreamTrack::component() function in class:blink::MediaStreamTrack
208 return MediaStreamCenter::instance().createWebAudioSourceFromMediaStreamTrack(component());
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Didl_reader.py58 """Returns a dictionary whose key is component and value is an IdlDefinitions object for an IDL file, including all dependencies."""
60 component = idl_filename_to_component(idl_filename)
63 return {component: definitions}
68 return {component: definitions}
70 return self.interface_dependency_resolver.resolve_dependencies(definitions, component)
/external/chromium_org/tools/findit/
H A Dcomponent_dictionary.py60 It maps each component path to a file dictionary.
68 for component in components:
69 self.component_dict[component] = FileDictionary()
74 def GetFileDict(self, component):
75 """Returns a file dictionary for a given component."""
76 return self.component_dict.get(component)
82 # If the component of this line is not in the list of components to
94 # Add the file to this component's dictionary of files.
117 # to be noisy. Parse the stacktrace into the component dictionary.
/external/chromium_org/tools/json_schema_compiler/
H A Dcpp_util.py117 for component in cpp_namespace.split('::'):
118 c.Append('namespace %s {' % component)
126 for component in reversed(cpp_namespace.split('::')):
127 c.Append('} // namespace %s' % component)
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
H A Dspeech_rule_engine.js135 for (var i = 0, component; component = components[i]; i++) {
137 var content = component['content'] || '';
138 switch (component.type) {
150 component['sepFunc'],
151 this.constructString(node, component['separator']),
152 component['ctxtFunc'],
153 this.constructString(node, component['context']));
167 if (navs[0] && component['context'] &&
168 component
[all...]
/external/libpng/contrib/examples/
H A Dpngpixel.c30 /* Return component 'c' of pixel 'x' from the given row. */
32 component(png_const_bytep row, png_uint_32 x, unsigned int c, function
79 printf("GRAY %u\n", component(row, x, 0, bit_depth, 1));
88 PNG_CONST unsigned int index = component(row, x, 0, bit_depth, 1);
117 printf("RGB %u %u %u\n", component(row, x, 0, bit_depth, 3),
118 component(row, x, 1, bit_depth, 3),
119 component(row, x, 2, bit_depth, 3));
123 printf("GRAY+ALPHA %u %u\n", component(row, x, 0, bit_depth, 2),
124 component(row, x, 1, bit_depth, 2));
128 printf("RGBA %u %u %u %u\n", component(ro
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_wm_pass0.c81 GLuint component,
89 c->pass0_fp_reg[file][idx][component] = ref;
96 GLuint component,
99 c->pass0_fp_reg[file][idx][component] = src_ref;
169 GLuint component )
171 const struct brw_wm_ref *ref = c->pass0_fp_reg[file][idx][component];
183 ref = get_param_ref(c, &c->fp->program.Base.LocalParams[idx][component]);
187 ref = get_param_ref(c, &c->env_param[idx][component]);
207 ref = get_const_ref(c, &plist->ParameterValues[idx][component].f);
214 ref = get_param_ref(c, &plist->ParameterValues[idx][component]
78 pass0_set_fpreg_value( struct brw_wm_compile *c, GLuint file, GLuint idx, GLuint component, struct brw_wm_value *value ) argument
93 pass0_set_fpreg_ref( struct brw_wm_compile *c, GLuint file, GLuint idx, GLuint component, const struct brw_wm_ref *src_ref ) argument
267 GLuint component = GET_SWZ(src.Swizzle,i); local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_wm_pass0.c81 GLuint component,
89 c->pass0_fp_reg[file][idx][component] = ref;
96 GLuint component,
99 c->pass0_fp_reg[file][idx][component] = src_ref;
169 GLuint component )
171 const struct brw_wm_ref *ref = c->pass0_fp_reg[file][idx][component];
183 ref = get_param_ref(c, &c->fp->program.Base.LocalParams[idx][component]);
187 ref = get_param_ref(c, &c->env_param[idx][component]);
207 ref = get_const_ref(c, &plist->ParameterValues[idx][component].f);
214 ref = get_param_ref(c, &plist->ParameterValues[idx][component]
78 pass0_set_fpreg_value( struct brw_wm_compile *c, GLuint file, GLuint idx, GLuint component, struct brw_wm_value *value ) argument
93 pass0_set_fpreg_ref( struct brw_wm_compile *c, GLuint file, GLuint idx, GLuint component, const struct brw_wm_ref *src_ref ) argument
267 GLuint component = GET_SWZ(src.Swizzle,i); local
[all...]

Completed in 9435 milliseconds

1234567891011>>