HomeSort by relevance Sort by last modified time
    Searched refs:name (Results 201 - 225 of 44835) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/av/media/libaudiohal/2.0/
DevicesFactoryHalHybrid.cpp 34 status_t DevicesFactoryHalHybrid::openDevice(const char *name, sp<DeviceHalInterface> *device) {
35 if (mHidlFactory != 0 && strcmp(AUDIO_HARDWARE_MODULE_ID_A2DP, name) != 0 &&
36 strcmp(AUDIO_HARDWARE_MODULE_ID_HEARING_AID, name) != 0) {
37 return mHidlFactory->openDevice(name, device);
39 return mLocalFactory->openDevice(name, device);
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
ABase.h 25 #define DISALLOW_EVIL_CONSTRUCTORS(name) \
26 name(const name &); \
27 name &operator=(const name &) /* NOLINT */
  /frameworks/ml/nn/common/
Android.bp 18 name: "libneuralnetworks_common_headers",
24 name: "libneuralnetworks_utils",
46 name: "libneuralnetworks_common",
114 name: "neuralnetworks_op_test_defaults",
127 name: "embedding_lookup_test",
135 name: "hashtable_lookup_test",
143 name: "lsh_projection_test",
155 name: "lstm_test",
167 name: "rnn_test",
176 name: "svdf_test"
    [all...]
  /libcore/ojluni/src/main/java/java/nio/
ByteOrder.java 39 private String name; field in class:ByteOrder
41 private ByteOrder(String name) {
42 this.name = name;
85 return name;
  /libcore/ojluni/src/main/java/java/nio/charset/
CodingErrorAction.java 45 private String name; field in class:CodingErrorAction
47 private CodingErrorAction(String name) {
48 this.name = name;
81 return name;
  /libcore/ojluni/src/main/java/java/nio/file/attribute/
UserPrincipalNotFoundException.java 42 private final String name; field in class:UserPrincipalNotFoundException
47 * @param name
48 * the principal name; may be {@code null}
50 public UserPrincipalNotFoundException(String name) {
52 this.name = name;
56 * Returns the user principal name if this exception was created with the
57 * user principal name that was not found, otherwise <tt>null</tt>.
59 * @return the user principal name or {@code null}
62 return name;
    [all...]
  /libcore/ojluni/src/main/java/java/security/
Permission.java 36 private String name; field in class:Permission
38 public Permission(String name) {
39 this.name = name;
47 return name;
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLSessionBindingEvent.java 38 * event of this type. The event's <code>name</code> field is the
55 * @serial The name to which the object is being bound or unbound
57 private String name; field in class:SSLSessionBindingEvent
63 * @param name the name to which the object is being bound or unbound
66 public SSLSessionBindingEvent(SSLSession session, String name)
69 this.name = name;
73 * Returns the name to which the object is being bound, or the name
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
FmClassNameToResourceMethod.java 40 String name = args.get(0).toString(); local
42 if (name.isEmpty()) {
46 name = stripSuffix(name, ACTIVITY_NAME_SUFFIX);
47 name = stripSuffix(name, "Fragment"); //$NON-NLS-1$
48 name = stripSuffix(name, "Service"); //$NON-NLS-1$
49 name = stripSuffix(name, "Provider"); //$NON-NLS-1
    [all...]
  /external/webrtc/webrtc/libjingle/xmllite/
qname_unittest.cc 19 QName name("test");
20 EXPECT_EQ(name.LocalPart(), "test");
21 EXPECT_EQ(name.Namespace(), "");
25 QName name("a:test");
26 EXPECT_EQ(name.LocalPart(), "test");
27 EXPECT_EQ(name.Namespace(), "a");
34 QName name("a", "test");
35 EXPECT_EQ(name.LocalPart(), "test");
36 EXPECT_EQ(name.Namespace(), "a");
37 EXPECT_EQ(name.Merged(), "a:test")
57 StaticQName name = { "a", "test" }; local
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixUserPrincipals.java 37 private static User createSpecial(String name) { return new User(-1, name); }
46 private final String name; field in class:UnixUserPrincipals.User
48 private User(int id, boolean isGroup, String name) {
51 this.name = name;
54 User(int id, String name) {
55 this(id, false, name);
76 return name;
81 return name;
116 String name = null; local
127 String name = null; local
    [all...]
  /external/elfutils/backends/
arm_regs.c 41 int regno, char *name, size_t namelen,
45 if (name == NULL)
59 name[0] = 'r';
60 name[1] = regno + '0';
65 name[0] = 'r';
66 name[1] = '1';
67 name[2] = regno % 10 + '0';
73 name[0] = "slp"[regno - 13];
74 name[1] = "prc"[regno - 13];
85 name[0] = 'f'
    [all...]
  /external/harfbuzz_ng/src/
hb-gobject-structs.cc 40 #define HB_DEFINE_BOXED_TYPE(name,copy_func,free_func) \
42 hb_gobject_##name##_get_type (void) \
46 GType id = g_boxed_type_register_static (g_intern_static_string ("hb_" #name "_t"), \
54 #define HB_DEFINE_OBJECT_TYPE(name) \
55 HB_DEFINE_BOXED_TYPE (name, hb_##name##_reference, hb_##name##_destroy);
57 #define HB_DEFINE_VALUE_TYPE(name) \
58 static hb_##name##_t *_hb_##name##_reference (const hb_##name##_t *l)
    [all...]
  /external/tensorflow/tensorflow/python/framework/
registry.py 40 def __init__(self, name):
42 self._name = name
45 def register(self, candidate, name=None):
46 """Registers a Python object "candidate" for the given "name".
50 name: An optional string specifying the registry key for the candidate.
53 KeyError: If same name is used twice.
55 if not name:
56 name = candidate.__name__
57 if name in self._registry:
59 self._registry[name][_LOCATION_TAG]
    [all...]
  /device/google/marlin/dataservices/datatop/src/
datatop_polling.h 13 * Neither the name of The Linux Foundation nor the names of its
38 void dtop_dual_line_init(char *name);
39 void dtop_single_line_init(char *name);
40 void dtop_value_only_init(char *name);
  /external/curl/docs/cmdline-opts/
service-name.d 1 Long: service-name
2 Help: SPNEGO service name
3 Arg: <name>
6 This option allows you to change the service name for SPNEGO.
8 Examples: --negotiate --service-name sockd would use sockd/server-name.
  /external/elfutils/libebl/
ebldebugscnp.c 1 /* Check section name for being that of a debug informatino section.
39 ebl_debugscn_p (Ebl *ebl, const char *name)
41 return name != NULL && ebl->debugscn_p (name);
  /external/robolectric-shadows/sandbox/src/test/java/org/robolectric/testing/
AnInstrumentedChild.java 9 public AnInstrumentedChild(String name) {
10 super(name.toUpperCase() + "'s child");
11 this.childName = name;
  /external/syslinux/com32/include/sys/
exec.h 15 * EXEC_ROOT_NAME - The name of the ELF module associated with the COM32 module.
24 * @name the name of the library/executable to use, including the extension
28 * the program name.
30 * This procedure in essence loads takes the name of a module and checks to see what
34 extern int spawn_load(const char *name, int argc, char **argv);
38 * @name: the name of the program to spawn, including the extension
41 * the program name.
57 extern int spawnv(const char *name, const char **argv)
    [all...]
  /external/vogar/test/vogar/target/junit3/
LazyTestCreationTest.java 23 public LazyTestCreationTest(String name) {
24 super(name);
25 System.out.println("Creating: " + name);
  /frameworks/base/core/java/android/gesture/
Prediction.java 20 public final String name; field in class:Prediction
25 name = label;
31 return name;
  /frameworks/ml/nn/runtime/
Android.bp 18 name: "libneuralnetworks_headers",
25 name: "libneuralnetworks_private_headers",
31 name: "libneuralnetworks",
89 name: "libneuralnetworks_ndk_headers",
97 name: "libneuralnetworks",
104 name: "libneuralnetworks",
  /libcore/ojluni/src/main/java/java/lang/reflect/
ReflectPermission.java 36 public ReflectPermission(String name) {
37 super(name);
40 public ReflectPermission(String name, String actions) {
  /libcore/ojluni/src/main/java/java/security/spec/
ECGenParameterSpec.java 39 private String name; field in class:ECGenParameterSpec
43 * generation using a standard (or predefined) name
48 * @param stdName the standard name of the to-be-generated EC
57 this.name = stdName;
61 * Returns the standard or predefined name of the
63 * @return the standard or predefined name.
66 return name;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
ifunc-1.s 1 .macro define,name
2 .type \name,%gnu_indirect_function
3 \name:
5 .size \name,.-\name
8 .macro test_relocs,name
9 bl \name
16 .word \name
18 .word \name-.
20 .word \name(GOTOFF
    [all...]

Completed in 502 milliseconds

1 2 3 4 5 6 7 891011>>