HomeSort by relevance Sort by last modified time
    Searched defs:name (Results 251 - 275 of 13238) sorted by null

<<11121314151617181920>>

  /frameworks/av/media/extractors/ogg/
OggExtractor.h 41 virtual const char * name() { return "OggExtractor"; } function in struct:android::OggExtractor
  /frameworks/base/core/java/android/gesture/
Prediction.java 20 public final String name; field in class:Prediction
25 name = label;
31 return name;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GenerateProgramPort.java 28 String name(); method in interface:GenerateProgramPort
  /frameworks/base/tools/aapt2/
NameMangler_test.cpp 27 std::string name = "Platform.AppCompat"; local
29 std::string mangled_name = NameMangler::MangleEntry(package, name);
41 std::string name = "foo_bar"; local
43 EXPECT_FALSE(NameMangler::Unmangle(&name, &package));
44 EXPECT_EQ(name, "foo_bar");
  /frameworks/base/tools/bit/
make.h 28 string name; member in struct:Module
34 string get_build_var(const string& name, bool quiet);
37 * Poke around in the out directory and try to find a device name that matches
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDDirectory.h 39 const std::string& name() const { return m_Name; } function in class:mcld::MCLDDirectory
  /frameworks/native/libs/gui/include/gui/view/
Surface.h 44 String16 name; member in class:android::view::Surface
  /frameworks/opt/net/voip/src/jni/rtp/
AudioCodec.cpp 28 const char *name; member in struct:AudioCodecType
42 while (type->name != NULL) {
43 if (strcasecmp(codecName, type->name) == 0) {
45 codec->name = type->name;
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/model/
WorkName.java 27 * Database entity that defines a mapping from a name to a {@link WorkSpec} id.
39 primaryKeys = {"name", "work_spec_id"},
45 @ColumnInfo(name = "name")
46 public final String name; field in class:WorkName
49 @ColumnInfo(name = "work_spec_id")
52 public WorkName(@NonNull String name, @NonNull String workSpecId) {
53 this.name = name;
  /hardware/intel/common/libva/test/common/
va_display.h 35 const char *name; member in struct:__anon47463
  /hardware/intel/common/libva/va/x11/
va_dri2.h 24 * Except as contained in this notice, the name of a copyright holder shall
43 unsigned int name; member in struct:__anon47591
  /hardware/qcom/gps/msm8084/utils/
loc_log.h 12 * * Neither the name of The Linux Foundation, nor the names of its
43 char name[128]; member in struct:__anon50352
  /hardware/qcom/gps/msm8960/utils/
loc_log.h 12 * * Neither the name of The Linux Foundation, nor the names of its
43 char name[128]; member in struct:__anon50609
  /hardware/qcom/gps/msm8994/utils/
loc_log.h 12 * * Neither the name of The Linux Foundation, nor the names of its
43 char name[128]; member in struct:__anon50702
  /hardware/qcom/gps/utils/
loc_log.h 12 * * Neither the name of The Linux Foundation, nor the names of its
43 char name[128]; member in struct:__anon50931
  /hardware/ril/libril/
RilSocket.h 36 * Socket name.
38 const char* name; member in class:RilSocket
50 * @param Socket name.
54 name = socketName;
  /libcore/ojluni/src/main/java/java/nio/file/attribute/
AttributeView.java 40 * Returns the name of the attribute view.
42 * @return the name of the attribute view
44 String name(); method in interface:AttributeView
FileAttribute.java 42 * Returns the attribute name.
44 * @return The attribute name
46 String name(); method in interface:FileAttribute
  /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;
  /libcore/ojluni/src/main/java/sun/nio/ch/
OptionKey.java 29 * Represents the level/name of a socket option
34 private int name; field in class:OptionKey
36 OptionKey(int level, int name) {
38 this.name = name;
45 int name() { method in class:OptionKey
46 return name;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_RATEEST.h 7 char name[IFNAMSIZ]; member in struct:xt_rateest_target_info
  /system/core/libcutils/arch-x86/
android_memset16.S 52 # define ENTRY(name) \
53 .type name, @function; \
54 .globl name; \
56 name: \ label
61 # define END(name) \
63 .size name, .-name
android_memset32.S 52 # define ENTRY(name) \
53 .type name, @function; \
54 .globl name; \
56 name: \ label
61 # define END(name) \
63 .size name, .-name
  /system/core/libcutils/include/cutils/
config_utils.h 32 const char *name; member in struct:cnode
43 cnode* config_node(const char *name, const char *value);
46 cnode* config_find(cnode *root, const char *name);
48 /* look up a child by name and return the boolean value */
49 int config_bool(cnode *root, const char *name, int _default);
51 /* look up a child by name and return the string value */
52 const char* config_str(cnode *root, const char *name, const char *_default);
55 void config_set(cnode *root, const char *name, const char *value);
  /system/core/libvndksupport/tests/
linker_test.cpp 41 std::string name = dp->d_name; local
42 if (android::base::StartsWith(name, "libEGL_")) {
43 return std::string(path) + "/" + name;
50 std::string name = find_sphal_lib(); local
51 ASSERT_NE("", name);
52 void* handle = android_load_sphal_library(name.c_str(), RTLD_NOW | RTLD_LOCAL);

Completed in 400 milliseconds

<<11121314151617181920>>