HomeSort by relevance Sort by last modified time
    Searched defs:named (Results 1 - 25 of 244) sorted by null

1 2 3 4 5 6 7 8 910

  /external/guice/core/src/com/google/inject/name/
Names.java 27 * Utility methods for use with {@code @}{@link Named}.
36 * Creates a {@link Named} annotation with {@code name} as the value.
38 public static Named named(String name) { method in class:Names
43 * Creates a constant binding to {@code @Named(key)} for each entry in
56 * Creates a constant binding to {@code @Named(key)} for each property. This
  /frameworks/support/
Android.mk 40 ## Find all of the files under the named directories where
43 ## SRC_FILES := $(call all-named-files-under,.*\.h,src tests)
46 define all-named-files-under-exclude
56 define all-subdir-named-files-exclude
57 $(call all-named-files-under-exclude,$(1),$(2),.)
61 aidl_files := $(addprefix $(LOCAL_PATH)/, $(call all-subdir-named-files-exclude,*.aidl,I*.aidl))
  /external/ltp/testcases/open_posix_testsuite/stress/threads/sem_getvalue/
stress.c 22 * -> Create a named semaphore and an unnamed semaphore, initialized to 0.
119 sem_t unnamed, *named; local
144 named = sem_open(SEM_NAME, O_CREAT, 0777, INIT_VAL);
146 if (named == SEM_FAILED) {
163 ret = pthread_create(&child1, NULL, threaded, named);
177 ret = sem_getvalue(named, &value);
187 ("sem_getvalue returned an invalid value for the named semaphore");
220 ret = sem_close(named);
  /external/testng/src/test/java/test/hook/
HookSuccess862Test.java 7 import javax.inject.Named;
19 if (annotation instanceof Named) {
20 Named named = (Named) annotation; local
21 callBack.getParameters()[0] = callBack.getParameters()[0] + named.value();
36 public void verify(@Named("bar") String bar, String test) {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
print.go 31 named(n LocalSlot, vals []*Value)
80 func (p stringFuncPrinter) named(n LocalSlot, vals []*Value) { func
148 p.named(name, f.NamedValues[name])
html.go 472 func (p htmlFuncPrinter) named(n LocalSlot, vals []*Value) { func
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
print.go 31 named(n LocalSlot, vals []*Value)
80 func (p stringFuncPrinter) named(n LocalSlot, vals []*Value) { func
148 p.named(name, f.NamedValues[name])
html.go 472 func (p htmlFuncPrinter) named(n LocalSlot, vals []*Value) { func
  /external/webrtc/webrtc/modules/audio_conference_mixer/test/
audio_conference_mixer_unittest.cc 62 MockMixerParticipant named[kNamed]; local
66 EXPECT_EQ(0, mixer->SetMixabilityStatus(&named[i], true));
67 EXPECT_TRUE(mixer->MixabilityStatus(named[i]));
85 EXPECT_EQ(0, mixer->SetMixabilityStatus(&named[i], false));
86 EXPECT_FALSE(mixer->MixabilityStatus(named[i]));
94 // named group.
99 // anonymous and named groups.
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
TypeVariableName.java 90 static TypeVariableName named(CharSequence name) { method in class:TypeVariableName
98 return named(variable.asElement().getSimpleName());
  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaFinderProxy.java 23 import com.google.inject.name.Named;
65 //execute as query (named params or otherwise)
118 } else if (annotation instanceof Named) {
119 Named named = (Named) annotation; local
120 jpaQuery.setParameter(named.value(), argument);
121 } else if (annotation instanceof javax.inject.Named) {
122 javax.inject.Named named = (javax.inject.Named) annotation local
    [all...]
  /external/clang/test/Sema/
anonymous-struct-union.c 6 } named; member in struct:X
30 x.f3 = 0; // expected-error{{no member named 'f3'}}
  /external/skia/tests/
ICCTest.cpp 241 sk_sp<SkICC> named = ICCTest::MakeICC(gammas); local
242 test_raw_transfer_fn(r, named.get());
  /external/syslinux/gpxe/src/core/
resolv.c 286 * Named socket opening
291 /** A named socket */
308 * Finish using named socket
310 * @v named Named socket
313 static void named_done ( struct named_socket *named, int rc ) {
316 resolv_nullify ( &named->resolv );
317 xfer_nullify ( &named->xfer );
318 xfer_close ( &named->xfer, rc );
328 struct named_socket *named local
353 struct named_socket *named = local
385 struct named_socket *named; local
    [all...]
  /external/clang/test/Analysis/
cfg.cpp 56 // CHECK-NEXT: 13: struct named myNamed;
68 struct named { int x, y; } myNamed; struct
  /external/clang/test/SemaCXX/
anonymous-union.cpp 6 } named; member in struct:X
54 x.f3 = 0; // expected-error{{no member named 'f3'}}
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
FeatureSpecificTestSuiteBuilder.java 49 * Builder methods of this class (such as {@link #named}) return this type, so
130 public B named(String name) { method in class:FeatureSpecificTestSuiteBuilder
213 throw new IllegalStateException("Call named() before createTestSuite().");
  /external/jemalloc/include/jemalloc/internal/
ctl.h 15 bool named; member in struct:ctl_node_s
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.h 97 } named; member in union:si_state
102 (offsetof(union si_state, named.member) / sizeof(struct si_pm4_state *))
106 (rctx)->queued.named.member = (value); \
111 if ((rctx)->queued.named.member == (value)) { \
112 (rctx)->queued.named.member = NULL; \
120 if ((rctx)->queued.named.member != (value)) { \
122 (struct si_pm4_state *)(rctx)->queued.named.member, \
124 (rctx)->queued.named.member = (value); \
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestSuiteBuilder.java 168 public TestSuiteBuilder named(String newSuiteName) { method in class:TestSuiteBuilder
216 * probably also want to call {@link #named(String)} to override the default suite name.
  /libcore/ojluni/src/main/java/java/beans/
PropertyChangeSupport.java 151 * If some listeners have been added with a named property, then
167 * // with the property named "foo"
234 * with the named property.
238 * the named property. If no such listeners have been added,
323 PropertyChangeListener[] named = (name != null) local
328 fire(named, event);
  /external/guava/guava-testlib/test/com/google/common/testing/
EqualsTesterTest.java 225 .addEqualityGroup(named("foo").addPeers("bar"), named("bar"));
240 named("foo").addPeers("bar", "baz"),
241 named("bar").addPeers("foo"),
242 named("baz").addPeers("foo"));
256 .addEqualityGroup(named("foo"), named("bar"));
271 named("foo").addPeers("bar"),
272 named("bar").addPeers("foo", "x"))
274 named("baz").addPeers("x")
403 private static NamedObject named(String name) { method in class:EqualsTesterTest
    [all...]
  /external/clang/test/Index/
print-type-size.cpp 84 // test that fields in incomplete named record do not crash
85 union named { union in namespace:Incomplete
112 // incomplete not in root level, in named record
117 } s1_x; // named record shows in s1->field_iterator
190 //named struct within anonymous struct
  /cts/tests/tests/graphics/src/android/graphics/cts/
ColorSpaceTest.java 74 for (ColorSpace.Named named : ColorSpace.Named.values()) {
75 ColorSpace colorSpace = ColorSpace.get(named);
78 assertEquals(named.ordinal(), colorSpace.getId());
144 ColorSpace cs = ColorSpace.get(ColorSpace.Named.SRGB);
162 cs = ColorSpace.get(ColorSpace.Named.CIE_LAB);
180 cs = ColorSpace.get(ColorSpace.Named.CIE_XYZ);
305 assertEquals(3, ColorSpace.get(ColorSpace.Named.SRGB).getComponentCount());
306 assertEquals(3, ColorSpace.get(ColorSpace.Named.LINEAR_SRGB).getComponentCount())
    [all...]
  /build/make/core/
definitions.mk 184 ## Look in the named list of directories for makefiles,
190 define all-named-subdir-makefiles
195 ## Find all of the directories under the named directories with
198 ## INC_DIRS := $(call all-named-dirs-under,inc,.)
201 define all-named-dirs-under
210 define all-subdir-named-dirs
211 $(call all-named-dirs-under,$(1),.)
215 ## Find all of the files under the named directories with
218 ## SRC_FILES := $(call all-named-files-under,*.h,src tests)
221 define all-named-files-unde
    [all...]

Completed in 899 milliseconds

1 2 3 4 5 6 7 8 910