Searched defs:name (Results 226 - 250 of 6153) sorted by relevance

1234567891011>>

/external/elfutils/libasm/
H A Dasm_newsym.c44 asm_newsym (AsmScn_t *asmscn, const char *name, GElf_Xword size, argument
56 if (name == NULL)
58 /* If a local symbol name is created the symbol better have
69 name = tempsym;
72 size_t name_len = strlen (name) + 1;
87 memcpy (result + 1, name, name_len), 0);
91 /* We are only interested in the name and don't need to know whether
92 it is a local name or not. */
95 fprintf (asmscn->ctx->out.file, "\t.globl\t%s\n", name);
97 fprintf (asmscn->ctx->out.file, "\t.weak\t%s\n", name);
[all...]
/external/elfutils/libdw/
H A Ddwarf_getabbrevattr.c49 unsigned int name; local
58 get_uleb128 (name, attrp, attrp + len_leb128 (name));
62 if (name == 0 && form == 0)
69 *namep = name;
/external/elfutils/libdwelf/
H A Ddwelf_elf_gnu_debuglink.c1 /* Returns the file name and crc stored in the .gnu_debuglink if found.
50 const char *name = elf_strptr (elf, shstrndx, shdr->sh_name); local
51 if (name == NULL)
54 if (!strcmp (name, ".gnu_debuglink"))
66 /* The CRC comes after the zero-terminated file name,
/external/elfutils/libebl/
H A Deblauxvinfo.c78 const char *name, *format; member in struct:__anon5524
81 #define TYPE(name, fmt) [AT_##name] = { #name, fmt },
88 ebl_auxv_info (Ebl *ebl, GElf_Xword a_type, const char **name, argument
91 int result = ebl->auxv_info (a_type, name, format);
92 if (result == 0 && a_type < nauxv_types && auxv_types[a_type].name != NULL)
95 *name = auxv_types[a_type].name;
H A Deblobjnotetypename.c1 /* Return note type name.
41 ebl_object_note_type_name (Ebl *ebl, const char *name, uint32_t type, argument
44 const char *res = ebl->object_note_type_name (name, type, buf, len);
48 if (strcmp (name, "stapsdt") == 0)
56 #define KNOWNSTYPE(name) [NT_##name] = #name
H A Deblreginfo.c1 /* Return register name information.
38 ebl_register_info (Ebl *ebl, int regno, char *name, size_t namelen, argument
42 return ebl == NULL ? -1 : ebl->register_info (ebl, regno, name, namelen,
/external/elfutils/tests/
H A Dscnnames.c75 char *name = NULL; local
79 name = elf_strptr (elf, strndx, (size_t) shdr.sh_name);
81 printf ("section: `%s'\n", name);
/external/emma/core/java12/com/vladium/util/
H A DResourceLoader.java33 public static Class loadClass (final String name) argument
39 return Class.forName (name, false, loader);
45 public static URL getResource (final String name) argument
51 return loader.getResource (name);
53 return ClassLoader.getSystemResource (name);
59 public static InputStream getResourceAsStream (final String name) argument
65 return loader.getResourceAsStream (name);
67 return ClassLoader.getSystemResourceAsStream (name);
73 public static Enumeration getResources (final String name) argument
80 return loader.getResources (name);
86 loadClass(final String name, final ClassLoader loader) argument
92 getResource(final String name, final ClassLoader loader) argument
100 getResourceAsStream(final String name, final ClassLoader loader) argument
108 getResources(final String name, final ClassLoader loader) argument
[all...]
/external/fio/lib/
H A Dgetopt.h11 const char *name; member in struct:option
/external/google-breakpad/src/client/linux/minidump_writer/
H A Ddirectory_reader_unittest.cc14 // * Neither the name of Google Inc. nor the names of its
65 const char* name; local
66 while (dir_reader.GetNextEntry(&name)) {
67 ASSERT_TRUE(dent_set.find(name) != dent_set.end());
/external/guice/core/test/com/google/inject/example/
H A DJndiProvider.java28 final String name; field in class:JndiProvider
31 JndiProvider(Class<T> type, String name) { argument
32 this.name = name;
38 return type.cast(context.lookup(name));
47 * type and name.
50 Class<T> type, String name) {
51 return new JndiProvider<T>(type, name);
49 fromJndi( Class<T> type, String name) argument
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICUConfig.java45 * Get ICU configuration property value for the given name.
46 * @param name The configuration property name
49 public static String get(String name) { argument
50 return get(name, null);
54 * Get ICU configuration property value for the given name.
55 * @param name The configuration property name
60 public static String get(String name, String def) { argument
62 final String fname = name;
[all...]
/external/icu/icu4c/source/common/
H A Ducnvdisp.c39 const UChar *name; local
53 /* open the resource bundle and get the display name string */
59 /* use the internal name as the key */
60 name=ures_getStringByKey(rb, cnv->sharedData->staticData->name, &length, &localStatus);
68 u_memcpy(displayName, name, uprv_min(length, displayNameCapacity)*U_SIZEOF_UCHAR);
70 /* convert the internal name into a Unicode string */
71 length=(int32_t)uprv_strlen(cnv->sharedData->staticData->name);
72 u_charsToUChars(cnv->sharedData->staticData->name, displayName, uprv_min(length, displayNameCapacity));
/external/icu/icu4c/source/test/intltest/
H A Ditformat.cpp75 name = #TestClass; \
84 void IntlTestFormat::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
143 name = "TimeUnitTest";
158 name = "GenderInfoTest";
167 name = "CompactDecimalFormatTest";
178 name = "RelativeDateTimeFormatterTest";
188 name = "MeasureFormatTest";
197 name = "NumberFormatSpecificationTest";
206 name = "ScientificNumberFormatterTest";
215 name
[all...]
H A Dtextfile.h24 * Open a file with the given name, in the given encoding, in the
26 * 'name' and 'encoding' parameters are aliased or copied.
28 TextFile(const char* name, const char* encoding, UErrorCode& ec);
61 char* name; member in class:TextFile
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUConfig.java43 * Get ICU configuration property value for the given name.
44 * @param name The configuration property name
47 public static String get(String name) { argument
48 return get(name, null);
52 * Get ICU configuration property value for the given name.
53 * @param name The configuration property name
58 public static String get(String name, String def) { argument
60 final String fname = name;
[all...]
/external/iproute2/lib/
H A Dll_proto.c35 const char *name; member in struct:__anon7299
99 return llproto_names[i].name;
109 if (strcasecmp(llproto_names[i].name, buf) == 0) {
H A Dll_types.c35 const char *name; member in struct:__anon7300
117 return arphrd_names[i].name;
H A Dmpls_pton.c10 static int mpls_pton1(const char *name, struct mpls_label *addr) argument
18 label = strtoul(name, &endp, 0);
23 if (endp == name) /* no digits */
36 name = endp + 1;
/external/ipsec-tools/src/racoon/
H A Ddnssec.c17 * 3. Neither the name of the project nor the names of its contributors
66 char *name = NULL; local
73 name = racoon_malloc(namelen + 1);
74 if (!name) {
79 memcpy(name, id_b + 1, namelen);
80 name[namelen] = '\0';
84 error = getcertsbyname(name, &res);
87 "getcertsbyname(\"%s\") failed.\n", name);
146 if (name)
147 racoon_free(name);
[all...]
/external/iptables/extensions/
H A Dtos_values.c16 const char *name; member in struct:tos_symbol_info
34 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol)
36 printf(" %s%s", prefix, symbol->name);
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
H A DClassFileDumper.java44 * Dumps the given binary content under the given name if a non-
47 * @param name
48 * qualified class name in VM notation
54 void dump(final String name, final byte[] contents) throws IOException { argument
58 final int pkgpos = name.lastIndexOf('/');
60 outputdir = new File(location, name.substring(0, pkgpos));
61 localname = name.substring(pkgpos + 1);
64 localname = name;
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
H A DSourceFileCoverageImpl.java27 * @param name
28 * name of the source file
30 * vm name of the package the source file belongs to
32 public SourceFileCoverageImpl(final String name, final String packagename) { argument
33 super(ElementType.SOURCEFILE, name);
/external/jacoco/org.jacoco.report/src/org/jacoco/report/
H A DIReportGroupVisitor.java56 * @param name
57 * name of the group
62 IReportGroupVisitor visitGroup(String name) throws IOException; argument
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DEntryStruct.java25 public String name; field in class:EntryStruct

Completed in 818 milliseconds

1234567891011>>