HomeSort by relevance Sort by last modified time
    Searched refs:component (Results 176 - 200 of 1396) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
ProductionComponentProcessorTest.java 88 JavaFileObject component = JavaFileObjects.forSourceLines("test.TestClass", local
256 assertAbout(javaSource()).that(component)
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_vertex_buffers.h 124 struct pipe_vertex_buffer vl_vb_get_ycbcr(struct vl_vertex_buffer *buffer, int component);
126 struct vl_ycbcr_block *vl_vb_get_ycbcr_stream(struct vl_vertex_buffer *buffer, int component);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
StringUtil.java 69 String component = (String) iter.next(); local
70 buf.append(component);
  /external/replicaisland/src/com/replica/replicaisland/
DynamicCollisionComponent.java 21 * A component to include dynamic collision volumes (such as those produced every frame from
24 * in valid "hits"), this component creates a bounding volume that encompasses the set and submits
25 * it to the dynamic collision system. Including this component in a game object will allow it to
59 public void setHitReactionComponent(HitReactionComponent component) {
60 mHitReactionComponent = component;
  /external/webrtc/webrtc/p2p/base/
transportchannelimpl.h 36 int component)
37 : TransportChannel(transport_name, component) {}
faketransportcontroller.h 50 int component)
51 : TransportChannelImpl(name, component),
413 TransportChannelImpl* CreateTransportChannel(int component) override {
414 if (channels_.find(component) != channels_.end()) {
418 new FakeTransportChannel(this, name(), component);
421 SetChannelDestination(component, channel);
422 channels_[component] = channel;
427 channels_.erase(channel->component());
432 FakeTransportChannel* GetFakeChannel(int component) {
433 auto it = channels_.find(component);
    [all...]
candidate.h 43 Candidate(int component,
53 component_(component),
67 int component() const { return component_; } function in class:cricket::Candidate
68 void set_component(int component) { component_ = component; }
187 // (2^0)*(256 - component ID)
238 // Used during parsing and writing to map component to channel name
245 int component, std::string* channel_name) const = 0;
247 const std::string& channel_name, int* component) const = 0;
transportchannel.h 53 TransportChannel(const std::string& transport_name, int component)
55 component_(component),
71 int component() const { return component_; } function in class:cricket::TransportChannel
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SystemUI.java 48 public <T, C extends T> void putComponent(Class<T> interfaceType, C component) {
50 mComponents.put(interfaceType, component);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
PackageManagerAdapter.java 50 public ServiceInfo getServiceInfo(ComponentName component, int flags)
52 return mPackageManager.getServiceInfo(component, flags);
TileServices.java 83 ComponentName component = tile.getComponent(); local
84 TileServiceManager service = onCreateTileService(component, tile.getQsTile());
87 mTiles.put(component, tile);
93 protected TileServiceManager onCreateTileService(ComponentName component, Tile tile) {
94 return new TileServiceManager(this, mHandler, component, tile);
147 throw new SecurityException("Component outside caller's uid");
154 private void requestListening(ComponentName component) {
156 CustomTile customTile = getTileForComponent(component);
158 Log.d("TileServices", "Couldn't find tile for " + component);
298 private CustomTile getTileForComponent(ComponentName component) {
    [all...]
  /frameworks/native/cmds/lshal/
utils.h 53 for (const auto &component : components) {
57 out << component; local
  /hardware/intel/common/libstagefrighthw/
WrsOMXPlugin.h 81 OMX_COMPONENTTYPE **component);
84 OMX_COMPONENTTYPE *component);
  /hardware/intel/common/libva/test/decode/
tinyjpeg-internal.h 74 struct component struct
107 struct component component_infos[COMPONENTS];
  /external/deqp/framework/randomshaders/
rsgProgramExecutor.cpp 146 dst.component(elementNdx).asFloat(dstComp) = interpolateVertex(valueRange.getMin().component(elementNdx).asFloat(), valueRange.getMax().component(elementNdx).asFloat(), xd, yd);
156 dst.component(ndx).asFloat(dstComp) = interpolateFragment(tcu::Vec4(vtx0.component(ndx).asFloat(), vtx1.component(ndx).asFloat(), vtx2.component(ndx).asFloat(), vtx3.component(ndx).asFloat()), x, y);
164 dst.component(elemNdx).asFloat() = src.component(elemNdx).asFloat(compNdx)
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/PrivilegedUpdateApp/src/com/android/cts/privilegedupdate/
PrivilegedUpdateTest.java 135 private void assertFilterPriority(ComponentName component, String action, int priority) {
136 assertFilterPriority(component, action, null /*data*/, priority);
139 ComponentName component, String action, String data, int priority) {
141 final String className = component.getClassName();
143 intent.setPackage(component.getPackageName());
  /frameworks/base/cmds/telecom/src/com/android/commands/telecom/
Telecom.java 64 "usage: telecom set-phone-account-enabled <COMPONENT> <ID> <USER_SN>\n" +
65 "usage: telecom set-phone-account-disabled <COMPONENT> <ID> <USER_SN>\n" +
66 "usage: telecom register-phone-account <COMPONENT> <ID> <USER_SN> <LABEL>\n" +
67 "usage: telecom register-sim-phone-account <COMPONENT> <ID> <USER_SN> <LABEL> <ADDRESS>\n" +
68 "usage: telecom unregister-phone-account <COMPONENT> <ID> <USER_SN>\n" +
80 "telecom set-default-dialer: Sets the default dialer to the given component. \n" +
206 final ComponentName component = parseComponentName(nextArgRequired()); local
216 return new PhoneAccountHandle(component, accountId, userHandle);
219 private ComponentName parseComponentName(String component) {
220 ComponentName cn = ComponentName.unflattenFromString(component);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
LauncherAppsCompat.java 77 public abstract void startActivityForProfile(ComponentName component, UserHandle user,
81 public abstract void showAppDetailsForProfile(ComponentName component, UserHandle user,
86 public abstract boolean isActivityEnabledForProfile(ComponentName component,
147 public void showAppDetailsForProfile(ComponentName component, UserHandle user) {
148 showAppDetailsForProfile(component, user, null, null);
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 515 Class component; local
519 component = arrayOf (typedescriptor.substring (1));
522 component = Class.forName (vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length() - 1)));
525 component = primitive (first);
528 Object array = Array.newInstance (component, 0);
573 String component; local
577 component = arrayOf (typedescriptor.substring (1));
580 component = vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length() - 1));
582 component = primitive (first);
584 String array = component + " []"
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrint.java 41 String component; field in class:FingerPrint
46 if (!name.startsWith("global")) this.component = name;
65 if (this.component != null) {
66 buffer.append(this.component);
76 if (this.component == null) {
79 this.stream.print(this.component);
80 this.stream.print(" component.<br>\n");
110 List scenarios = performanceResults.getComponentSummaryScenarios(this.component, configName);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs_constval.c 37 /* Component is active if it may diverge from [0,0,0,1]. Undef values
76 GLuint component,
81 return component < 3 ? 0 : (1<<component);
83 return component == 3 ? 0 : (1<<component);
89 return t->active[file][index] & (1<<component);
91 return 1 << component;
183 * component index which might vary from [0,0,0,1]
  /system/netd/server/
InterfaceController.cpp 57 inline bool isNormalPathComponent(const char *component) {
58 return (strcmp(component, ".") != 0) &&
59 (strcmp(component, "..") != 0) &&
60 (strchr(component, '/') == nullptr);
63 inline bool isAddressFamilyPathComponent(const char *component) {
64 return strcmp(component, "ipv4") == 0 || strcmp(component, "ipv6") == 0;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/vr/
MockVrListenerService.java 128 public void onCurrentVrActivityChanged(ComponentName component) {
129 Log.i(TAG, "onCurrentVrActivityChanged called with: " + component);
131 sEventQueue.put(Event.build(this, EventType.ONCURRENTVRMODEACTIVITYCHANGED, component));
  /external/skia/src/codec/
SkMasks.cpp 47 * Convert an n bit component to an 8-bit component
50 static uint8_t convert_to_8(uint8_t component, uint32_t n) {
54 return n_bit_to_8_bit_lookup_table[(1 << n) - 2 + component];
57 return component;
68 * Get a color component
  /test/vts-testcase/hal/media/omx/V1_0/host/
VtsHalMediaOmxV1_0HostTest.py 91 argumented with different component and role values.
106 for component, roles in self.components.iteritems():
118 test_name = component + '_' + role
122 component, role, instance_name, test_suite, test_name,

Completed in 570 milliseconds

1 2 3 4 5 6 78 91011>>