HomeSort by relevance Sort by last modified time
    Searched defs:name (Results 526 - 550 of 10397) sorted by null

<<21222324252627282930>>

  /bionic/libc/arch-x86/silvermont/string/
sse4-memcmp-slm.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
  /bionic/libc/bionic/
vdso.cpp 39 const char* name; member in struct:vdso_entry
118 if (strcmp(vdso_entries[j].name, strtab + symtab[i].st_name) == 0) {
  /bionic/libc/include/
getopt.h 47 /* name of long option */
48 const char *name; member in struct:option
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regerror.c 18 * 3. Neither the name of the University nor the names of its contributors
55 * 4. Neither the name of the University nor the names of its contributors
129 = #define REG_ATOI 255 // convert name to number (!)
130 = #define REG_ITOA 0400 // convert number to name (!)
134 const char *name; member in struct:rerr
186 (void)strlcpy(convbuf, r->name, sizeof convbuf);
216 if (strcmp(r->name, preg->re_endp) == 0)
  /cts/suite/audio_quality/lib/include/task/
ModelBuilder.h 58 const char* name; // XML element name member in struct:ModelBuilder::ParsingInfo
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 45 * Creates a new component with the provided name.
46 * @param name The name of the component.
48 public Component(String name, Component parent) {
49 mName = name;
57 String name= prop.getName(); local
58 ArrayList<Property> props = mPropsMap.get(name);
61 mPropsMap.put(name, props);
67 * Returns a list of properties with the specified name. Returns null
69 * @param name The name of the property that should be returned
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
PrivateAttributeTest.java 45 final String name = res.getResourceEntryName(currentAttr); local
46 throw new AssertionError("Found attribute '" + name + "'"
  /cts/tests/tests/jni/libjnitest/
helper.c 54 const char *name = va_arg(args, const char *); local
55 if (name == NULL) {
61 ALOGI("running %s", name);
68 name, oneResult);
  /cts/tools/dasm/src/java_cup/
symbol.java 4 * both terminals and non-terminals). Each symbol has a name string, and
22 * @param nm the name of the symbol.
23 * @param tp a string with the type name.
40 * @param nm the name of the symbol.
51 /** String for the human readable name of the symbol. */
54 /** String for the human readable name of the symbol. */
55 public String name() {return _name;} method in class:symbol
102 return name();
  /cts/tools/dex-tools/test/dex/reader/util/
MemoryByteCode.java 31 private final String name; field in class:MemoryByteCode
33 public MemoryByteCode(String name) {
34 super(URI.create("byte:///" + name.replace(".", "/") + ".class"),
36 this.name = name;
41 return name;
  /cts/tools/signature-tools/src/signature/converter/
Main.java 31 // (doclet | dex) sourcefiles --out file --name name --packages packageName{
49 if (!"--name".equals(args[++at])) {
52 String name = args[++at]; local
74 externalizer.externalizeApi(targetFile, factory.loadApi(name,
  /cts/tools/signature-tools/src/signature/model/impl/
SigPackage.java 31 private String name; field in class:SigPackage
34 public SigPackage(String name) {
35 this.name = name;
39 return name;
43 return Arrays.asList(name.split("\\."));
SigTypeVariableDefinition.java 31 private String name; field in class:SigTypeVariableDefinition
35 public SigTypeVariableDefinition(String name,
37 this.name = name;
42 return name;
61 builder.append(name);
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
NameValuePair.java 24 * A (name, value) pair. These are used as the contents of an annotation.
27 /** {@code non-null;} the name */
28 private final CstUtf8 name; field in class:NameValuePair
36 * @param name {@code non-null;} the name
39 public NameValuePair(CstUtf8 name, Constant value) {
40 if (name == null) {
41 throw new NullPointerException("name == null");
53 this.name = name;
    [all...]
  /dalvik/dx/src/com/android/dx/rop/annotation/
NameValuePair.java 23 * A (name, value) pair. These are used as the contents of an annotation.
26 /** {@code non-null;} the name */
27 private final CstString name; field in class:NameValuePair
35 * @param name {@code non-null;} the name
38 public NameValuePair(CstString name, Constant value) {
39 if (name == null) {
40 throw new NullPointerException("name == null");
47 this.name = name;
    [all...]
  /developers/build/prebuilts/gradle/BasicMediaRouter/Application/src/main/java/com/example/android/basicmediarouter/
SamplePresentation.java 32 * It displays the name of the display in which it has been embedded (see
58 * Show the name of the display this presentation was embedded in.
61 final String name = getDisplay().getName(); local
62 smallText.setText(getResources().getString(R.string.display_name, name));
  /developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 35 attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String");
39 String name = attributes.get(uuid); local
40 return name == null ? defaultName : name;
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Attraction.java 29 public String name; field in class:Attraction
43 public Attraction(String name, String description, String longDescription, Uri imageUrl,
45 this.name = name;
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 35 attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String");
39 String name = attributes.get(uuid); local
40 return name == null ? defaultName : name;
  /developers/samples/android/media/BasicMediaRouter/Application/src/main/java/com/example/android/basicmediarouter/
SamplePresentation.java 32 * It displays the name of the display in which it has been embedded (see
58 * Show the name of the display this presentation was embedded in.
61 final String name = getDisplay().getName(); local
62 smallText.setText(getResources().getString(R.string.display_name, name));
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Attraction.java 29 public String name; field in class:Attraction
43 public Attraction(String name, String description, String longDescription, Uri imageUrl,
45 this.name = name;
  /development/ndk/platforms/android-21/include/
getopt.h 47 /* name of long option */
48 const char *name; member in struct:option
  /development/ndk/platforms/android-3/arch-arm/include/asm/arch/
gpio-switch.h 5 *** of the same name, to make information necessary for userspace to
24 const char *name; member in struct:omap_gpio_switch
  /development/ndk/platforms/android-3/include/linux/mtd/
partitions.h 5 *** of the same name, to make information necessary for userspace to
18 char *name; member in struct:mtd_partition
33 const char *name; member in struct:mtd_part_parser
  /development/ndk/platforms/common/src/
crtbrand.c 64 char name[sizeof ABI_VENDOR]; member in struct:__anon2660

Completed in 283 milliseconds

<<21222324252627282930>>