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

1 2 3 4 5 67 8 91011>>

  /system/update_engine/payload_generator/
annotated_operation.h 31 // The name given to the operation, for logging and debugging purposes only.
33 std::string name; member in struct:chromeos_update_engine::AnnotatedOperation
  /tools/metalava/stub-annotations/src/main/java/androidx/annotation/
RequiresFeature.java 31 /** The name of the feature that is required. */
32 String name(); method in interface:RequiresFeature
35 * Defines the name of the method that should be called to check whether the feature is
37 * multiple parameters, but the feature name parameter must be of type String and must also be
  /art/test/952-invoke-custom/src/annotations/
BootstrapMethod.java 37 /** The bootstrap method name. */
38 String name(); method in interface:BootstrapMethod
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
Field.java 24 * The name of the field.
26 public final String name; field in class:Field
36 * @param name name of the field
39 public Field(String name, Type type) {
40 this.name = name;
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
OpcodeInfo.java 28 public final String name; field in class:OpcodeInfo
35 public OpcodeInfo(Opcode opcode, String name, int opcodeValue, AbstractFormat fmt) {
37 this.name = name;
  /bionic/libc/arch-x86/atom/string/
ssse3-strcmp-atom.S 15 * Neither the name of Intel Corporation nor the names of its contributors
64 # define ENTRY(name) \
65 .type name, @function; \
66 .globl name; \
68 name: \ label
73 # define END(name) \
75 .size name, .-name
    [all...]
  /bionic/libc/arch-x86/silvermont/string/
sse2-strlen-slm.S 15 * Neither the name of Intel Corporation nor the names of its contributors
60 # define ENTRY(name) \
61 .type name, @function; \
62 .globl name; \
64 name: \ label
69 # define END(name) \
71 .size name, .-name
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_RATEEST.h 5 *** of the same name, to make information necessary for userspace to
24 char name[IFNAMSIZ]; member in struct:xt_rateest_target_info
  /bionic/libc/kernel/uapi/linux/
rpmsg.h 5 *** of the same name, to make information necessary for userspace to
24 char name[32]; member in struct:rpmsg_endpoint_info
  /dalvik/dexgen/src/com/android/dexgen/rop/
BaseAttribute.java 22 * the attribute name but leaves the rest up to subclasses.
25 /** {@code non-null;} attribute name */
26 private final String name; field in class:BaseAttribute
31 * @param name {@code non-null;} attribute name
33 public BaseAttribute(String name) {
34 if (name == null) {
35 throw new NullPointerException("name == null");
38 this.name = name;
    [all...]
  /device/generic/goldfish-opengl/system/GLESv1_enc/
gl_ftable.h 8 const char *name; member in struct:_gl_funcs_by_name
  /device/generic/goldfish-opengl/system/GLESv2_enc/
gl2_ftable.h 8 const char *name; member in struct:_gl2_funcs_by_name
  /device/generic/goldfish-opengl/system/renderControl_enc/
renderControl_ftable.h 8 const char *name; member in struct:_renderControl_funcs_by_name
  /device/google/cuttlefish_common/guest/commands/rename_netiface/
main.cpp 31 const char *const name = argv[1]; local
32 int32_t index = if_nametoindex(name);
34 fprintf(stderr, "%s: invalid interface name '%s'\n", argv[0], name);
42 std::unique_ptr<cvd::NetworkInterface> ni(nm->Open(new_name, name));
49 fprintf(stderr, "%s: renaming interface '%s' failed\n", argv[0], name);
  /device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
tbbr_config.h 18 char *name; member in struct:toc_entry
  /device/linaro/bootloader/edk2/BaseTools/Source/C/PyEfiCompressor/
setup.py 26 name="EfiCompressor", variable
  /device/linaro/bootloader/edk2/BaseTools/Source/C/PyUtility/
setup.py 26 name="PyUtility", variable
  /external/boringssl/src/fipstools/
cavp_main.cc 33 std::string name; member in struct:TestSuite
66 if (s.name == suite) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECNamedCurveGenParameterSpec.java 13 private String name; field in class:ECNamedCurveGenParameterSpec
16 String name)
18 this.name = name;
22 * return the name of the curve the EC domain parameters belong to.
26 return name;
  /external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
resource.py 30 def name(self): member in class:Resource
31 """The dotted name for this resource based on its relative path."""
40 name = dirname.replace(os.path.sep, '.') + '.' + modname
42 name = modname
43 return name
  /external/clang/test/CodeGen/
2008-08-07-AlignPadding2.c 6 const char *name; member in struct:__anon15783
global-blocks-lines.c 20 typedef void (^ HelloBlock_t)(const char * name); variable
23 HelloBlock_t helloBlock = ^(const char * name) {
24 printf("Hello there, %s!\n", name);
28 static HelloBlock_t s_helloBlock = ^(const char * name) {
29 printf("Hello there, %s!\n", name);
redefine_extname.c 4 #pragma redefine_extname name alias
8 int name; variable
11 int fish() { return fake() + __PRAGMA_REDEFINE_EXTNAME + name; }
18 // same name. PR23923.
  /external/curl/docs/examples/
sslbackend.c 43 const char *name = argc > 1 ? argv[1] : "openssl"; local
46 if(!strcmp("list", name)) {
55 i, list[i]->name, list[i]->id);
59 else if(isdigit(*name)) {
60 curl_sslbackend id = (curl_sslbackend)atoi(name);
65 result = curl_global_sslset(-1, name, NULL);
68 fprintf(stderr, "Unknown SSL backend id: %s\n", name);
74 printf("Version with SSL backend '%s':\n\n\t%s\n", name, curl_version());
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
HasTypeName.java 19 TypeName name(); method in interface:HasTypeName

Completed in 647 milliseconds

1 2 3 4 5 67 8 91011>>