/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 | 55 const char *name = va_arg(args, const char *); local 56 if (name == NULL) { 62 __android_log_print(ANDROID_LOG_INFO, LOG_TAG, "running %s", name); 69 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;
|
/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:__anon2759
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
Tabs5.java | 41 String name = "Tab " + i; local 42 tabHost.addTab(tabHost.newTabSpec(name) 43 .setIndicator(name)
|
/development/samples/Home/src/com/example/android/home/ |
ApplicationInfo.java | 24 * Represents a launchable application. An application is made of a name (or title), an intent 29 * The application name. 49 * Creates the application intent based on a component name and various launch flags. 51 * @param className the class name of the component representing the intent 80 final String name = intent.getComponent().getClassName(); local 81 result = 31 * result + (name != null ? name.hashCode() : 0);
|
/development/samples/browseable/BasicMediaRouter/src/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));
|
/development/samples/browseable/BluetoothLeGatt/src/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;
|
/development/samples/browseable/XYZTouristAttractions/Shared/src/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;
|
/device/google/dragon/recovery/updater/ |
flash_device.h | 26 char * const name; member in struct:flash_device_ops 42 struct flash_device *flash_open(const char *name, const void *params);
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/ |
Rule.java | 14 3. The name of the author may not be used to endorse or promote products 42 private String name; field in class:Rule 44 public Rule(String name) { 45 this.name = name; 48 public String getName() { return name; } 56 return this.name;
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
ActionScriptTarget.java | 14 * 3. The name of the author may not be used to endorse or promote products 52 String name = generator.grammar.getTokenDisplayName(ttype); local 54 // If name is a literal, return the token type instead 55 if (name.charAt(0) == '\'') { 59 return name;
|