Searched refs:component (Results 1 - 25 of 372) sorted by relevance

1234567891011>>

/external/llvm/tools/llvm-config/
H A DLibraryDependencies.inc10 /// The name of the component.
13 /// The name of the library for this component (or NULL).
16 /// Whether the component is installed.
19 /// The list of libraries required when linking this component.
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_util.h46 unsigned component );
52 unsigned component );
58 unsigned component );
68 unsigned component );
/external/dagger2/examples/android-activity-graphs/src/main/java/com/example/dagger/activitygraphs/ui/
H A DHomeActivity.java27 private HomeComponent component; field in class:HomeActivity
29 HomeComponent component() { method in class:HomeActivity
30 if (component == null) {
31 component = DaggerHomeComponent.builder()
32 .applicationComponent(((DemoApplication) getApplication()).component())
36 return component;
41 component().inject(this);
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/
H A DProductionGraphValidationTest.java35 JavaFileObject component = JavaFileObjects.forSourceLines("test.MyComponent",
60 assertAbout(javaSources()).that(Arrays.asList(module, component))
65 .in(component).onLine(8);
69 JavaFileObject component = JavaFileObjects.forSourceLines("test.TestClass",
85 assertAbout(javaSource()).that(component)
88 .withErrorContaining(expectedError).in(component).onLine(11);
92 JavaFileObject component = JavaFileObjects.forSourceLines("test.TestClass",
127 assertAbout(javaSource()).that(component)
130 .withErrorContaining(expectedError).in(component).onLine(30);
134 JavaFileObject component
[all...]
H A DGraphValidationTest.java40 JavaFileObject component = JavaFileObjects.forSourceLines("test.MyComponent",
63 assertAbout(javaSources()).that(Arrays.asList(component, injectable, nonInjectable))
67 .in(component).onLine(7);
71 JavaFileObject component =
90 .that(component)
95 .in(component)
101 .in(component)
106 JavaFileObject component = JavaFileObjects.forSourceLines("test.TestClass",
126 assertAbout(javaSource()).that(component)
129 .withErrorContaining(expectedError).in(component)
[all...]
/external/swiftshader/src/Renderer/
H A DSetupProcessor.cpp109 for(int component = 0; component < 4; component++)
111 state.gradient[interpolant][component].attribute = Unused;
112 state.gradient[interpolant][component].flat = false;
113 state.gradient[interpolant][component].wrap = false;
129 for(int component = 0; component < 4; component++)
131 int project = context->isProjectionComponent(interpolant - 2, component)
[all...]
/external/dagger2/compiler/src/it/functional-tests/src/test/java/test/
H A DNonComponentDependencyTest.java27 NonComponentDependencyComponent component =
31 assertThat(component).isNotNull();
32 assertThat(component.thingTwo()).isNotNull();
H A DGenericTest.java35 GenericComponent component = DaggerGenericComponent.create();
36 assertThat(component).isNotNull();
40 GenericComponent component = DaggerGenericComponent.create();
41 assertThat(component.referencesGeneric().genericA.t).isNotNull();
45 GenericComponent component = DaggerGenericComponent.create();
46 GenericDoubleReferences<A> doubleA = component.doubleGenericA();
52 GenericDoubleReferences<B> doubleB = component.doubleGenericB();
60 GenericComponent component = DaggerGenericComponent.create();
62 component.complexGenerics();
66 GenericComponent component
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DMultiArrayType.java27 private MultiType component; field in class:MultiArrayType
30 public MultiArrayType(MultiType component, int dims) { argument
32 this.component = component;
37 CtClass clazz = component.getCtClass();
55 return component.popChanged();
63 return dims == 1 ? (Type)component : new MultiArrayType(component, dims - 1);
114 return component.isAssignableTo(typeRoot);
122 return component
[all...]
/external/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { argument
46 SkASSERT(component <= 255);
47 return (scale * component + (1 << 23)) >> 24;
/external/swiftshader/src/Shader/
H A DPixelShader.hpp35 bool usesDiffuse(int component) const;
36 bool usesSpecular(int component) const;
37 bool usesTexture(int coordinate, int component) const;
/external/webrtc/webrtc/p2p/base/
H A Dportallocator.cc17 int component,
22 component_(component),
34 int component,
37 return CreateSessionInternal(content_name, component, ice_ufrag, ice_pwd);
16 PortAllocatorSession(const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd, uint32_t flags) argument
31 CreateSession( const std::string& sid, const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd) argument
H A Dp2ptransport.cc30 TransportChannelImpl* P2PTransport::CreateTransportChannel(int component) { argument
31 return new P2PTransportChannel(name(), component, this, port_allocator());
/external/skia/src/gpu/glsl/
H A DGrGLSLBlend.cpp22 char component = kComponents[i]; local
23 fsBuilder->codeAppendf("if (2.0 * %s.%c <= %s.a) {", src, component, src);
25 final, component, src, component, dst, component);
28 final, component, src, dst, dst, dst, component, src, src,
29 component);
36 // Does one component of color-dodge
41 const char component) {
37 color_dodge_component(GrGLSLFragmentBuilder* fsBuilder, const char* final, const char* src, const char* dst, const char component) argument
61 color_burn_component(GrGLSLFragmentBuilder* fsBuilder, const char* final, const char* src, const char* dst, const char component) argument
82 soft_light_component_pos_dst_alpha(GrGLSLFragmentBuilder* fsBuilder, const char* final, const char* src, const char* dst, const char component) argument
[all...]
/external/proguard/src/proguard/gui/
H A DTabbedPane.java66 * Adds a component with a given title to the tabbed pane.
69 * @param component the component that will be added as a tab.
71 public Component add(final String title, Component component) argument
137 cardPanel.add(title, component);
139 return component;
148 * @return the component containing the image.
158 JButton component = new JButton(new ImageIcon(image));
159 component.setFocusPainted(false);
160 component
[all...]
/external/dagger2/examples/android-simple/src/main/java/com/example/dagger/simple/
H A DDemoApplication.java39 private ApplicationComponent component; field in class:DemoApplication
43 component = DaggerDemoApplication_ApplicationComponent.builder()
46 component().inject(this); // As of now, LocationManager should be injected into this.
49 public ApplicationComponent component() { method in class:DemoApplication
50 return component;
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
H A Dmjpeg_decoder.h104 // Sample factors of the n-th component.
105 int GetHorizSampFactor(int component);
107 int GetVertSampFactor(int component);
109 int GetHorizSubSampFactor(int component);
111 int GetVertSubSampFactor(int component);
117 int GetComponentScanlinesPerImcuRow(int component);
119 // Width of a component in bytes.
120 int GetComponentWidth(int component);
122 // Height of a component.
123 int GetComponentHeight(int component);
[all...]
/external/libyuv/files/include/libyuv/
H A Dmjpeg_decoder.h103 // Sample factors of the n-th component.
104 int GetHorizSampFactor(int component);
106 int GetVertSampFactor(int component);
108 int GetHorizSubSampFactor(int component);
110 int GetVertSubSampFactor(int component);
116 int GetComponentScanlinesPerImcuRow(int component);
118 // Width of a component in bytes.
119 int GetComponentWidth(int component);
121 // Height of a component.
122 int GetComponentHeight(int component);
[all...]
/external/selinux/libselinux/src/
H A Dcontext.c14 char *(component[4]); member in struct:__anon16624
19 * 4 colon-separated components and no whitespace in any component other
20 * than the MLS component.
38 n->current_str = n->component[0] = n->component[1] = n->component[2] =
39 n->component[3] = 0;
62 n->component[3] = 0;
67 /* MLS range is one component */
71 n->component[
[all...]
/external/autotest/client/cros/cellular/wardmodem/
H A Dglobal_state.py18 To declare a new state component called dummy_var, with allowed values
25 use the state component, viz,
35 # A map to record the allowed values for each state component.
40 # This value can be assigned to any state component to indicate invalid
42 # This is also the default value assigned when the state component is
47 def __getitem__(self, component):
49 Read current value of a state component.
51 @param component: The component of interest.
53 @return: String value of the state component
[all...]
/external/dagger2/producers/src/main/java/dagger/producers/monitoring/
H A DProductionComponentMonitor.java25 * the component, and the resulting single instance will be used to create individual monitors for
53 /** Creates a component-specific monitor when the component is created. */
54 ProductionComponentMonitor create(Object component); argument
/external/dagger2/compiler/src/it/functional-tests/src/test/java/test/nullables/
H A DNullabilityTest.java29 NullComponent component = DaggerNullComponent.builder().nullModule(module).build();
33 component.nullFoo();
41 NullFoo nullFoo = component.nullFoo();
82 NullComponentWithDependency component =
84 validate(false, component.string(), component.stringProvider(), component.numberProvider());
86 // Also validate that the component's number() method fails
88 component.number();
91 assertThat(npe).hasMessage("Cannot return null from a non-@Nullable component metho
[all...]
/external/dagger2/compiler/src/it/producers-functional-tests/src/test/java/producerstest/builder/
H A DProductionComponentBuilderTest.java33 TestComponentWithBuilder component =
39 assertThat(component.s().get()).isEqualTo("arg: 42");
40 assertThat(component.d().get()).isEqualTo(15.3);
45 TestComponentWithBuilder component =
50 assertThat(component.s().get()).isEqualTo("arg: 42");
51 assertThat(component.d().get()).isEqualTo(15.3);
/external/deqp/framework/randomshaders/
H A DrsgVariableValue.cpp63 float aMin = a.component(ndx).getMin().asFloat();
64 float aMax = a.component(ndx).getMax().asFloat();
65 float bMin = b.component(ndx).getMin().asFloat();
66 float bMax = b.component(ndx).getMax().asFloat();
78 int aMin = a.component(ndx).getMin().asInt();
79 int aMax = a.component(ndx).getMax().asInt();
80 int bMin = b.component(ndx).getMin().asInt();
81 int bMax = b.component(ndx).getMax().asInt();
91 bool aMin = a.component(ndx).getMin().asBool();
92 bool aMax = a.component(nd
[all...]
/external/dagger2/compiler/src/it/functional-tests/src/test/java/test/membersinject/
H A DMembersInjectTest.java34 MembersInjectComponent component = DaggerMembersInjectComponent.builder().build();
37 component.inject(childOfStringArray);
41 MembersInjectComponent component = DaggerMembersInjectComponent.builder().build();
45 component.inject(childOfArrayOfParentOfStringArray);
49 MembersInjectComponent component = DaggerMembersInjectComponent.builder().build();
52 component.inject(childOfPrimitiveIntArray);
57 MembersInjectionVisibilityComponent component =
60 component.inject(aParent);
65 component.inject(aChild);
72 component
[all...]

Completed in 2109 milliseconds

1234567891011>>