HomeSort by relevance Sort by last modified time
    Searched refs:id (Results 201 - 225 of 20383) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webrtc/webrtc/modules/media_file/
media_file_defines.h 26 // durationMs ms. id is the identifier for the MediaFile instance calling
28 virtual void PlayNotification(const int32_t id,
32 // durationMs ms. id is the identifier for the MediaFile instance calling
34 virtual void RecordNotification(const int32_t id,
38 // playing. id is the identifier for the MediaFile instance calling the
40 virtual void PlayFileEnded(const int32_t id) = 0;
43 // recording. id is the identifier for the MediaFile instance calling the
45 virtual void RecordFileEnded(const int32_t id) = 0;
  /frameworks/base/cmds/incident/
incident_sections.h 22 int id; member in struct:IncidentSection
  /frameworks/data-binding/extensions/library/src/doc/java/com/android/databinding/library/
R.java 27 public static class id { class in class:R
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glDebugMessageInsertKHR.java 1 // C function void glDebugMessageInsertKHR ( GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf )
6 int id,
  /frameworks/support/jetifier/jetifier/preprocessor/
build.gradle 18 id("SupportKotlinLibraryPlugin")
19 id("application")
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
BlobEntity.java 25 public long id; field in class:BlobEntity
28 public BlobEntity(long id, byte[] content) {
29 this.id = id;
Product.java 27 public final int id; field in class:Product
32 public Product(int id, @NonNull String name) {
33 this.id = id;
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
ResourcesWrapper.java 53 public CharSequence getText(int id) throws NotFoundException {
54 return mResources.getText(id);
58 public CharSequence getQuantityText(int id, int quantity) throws NotFoundException {
59 return mResources.getQuantityText(id, quantity);
63 public String getString(int id) throws NotFoundException {
64 return mResources.getString(id);
68 public String getString(int id, Object... formatArgs) throws NotFoundException {
69 return mResources.getString(id, formatArgs);
73 public String getQuantityString(int id, int quantity, Object... formatArgs)
75 return mResources.getQuantityString(id, quantity, formatArgs)
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
MutableSelection.java 26 public boolean add(String id) {
27 return super.add(id);
31 public boolean remove(String id) {
32 return super.remove(id);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
ASTaddr_spec.java 6 public ASTaddr_spec(int id) {
7 super(id);
10 public ASTaddr_spec(AddressListParser p, int id) {
11 super(p, id);
ASTaddress.java 6 public ASTaddress(int id) {
7 super(id);
10 public ASTaddress(AddressListParser p, int id) {
11 super(p, id);
ASTaddress_list.java 6 public ASTaddress_list(int id) {
7 super(id);
10 public ASTaddress_list(AddressListParser p, int id) {
11 super(p, id);
ASTangle_addr.java 6 public ASTangle_addr(int id) {
7 super(id);
10 public ASTangle_addr(AddressListParser p, int id) {
11 super(p, id);
ASTdomain.java 6 public ASTdomain(int id) {
7 super(id);
10 public ASTdomain(AddressListParser p, int id) {
11 super(p, id);
ASTgroup_body.java 6 public ASTgroup_body(int id) {
7 super(id);
10 public ASTgroup_body(AddressListParser p, int id) {
11 super(p, id);
ASTlocal_part.java 6 public ASTlocal_part(int id) {
7 super(id);
10 public ASTlocal_part(AddressListParser p, int id) {
11 super(p, id);
ASTmailbox.java 6 public ASTmailbox(int id) {
7 super(id);
10 public ASTmailbox(AddressListParser p, int id) {
11 super(p, id);
ASTname_addr.java 6 public ASTname_addr(int id) {
7 super(id);
10 public ASTname_addr(AddressListParser p, int id) {
11 super(p, id);
ASTphrase.java 6 public ASTphrase(int id) {
7 super(id);
10 public ASTphrase(AddressListParser p, int id) {
11 super(p, id);
ASTroute.java 6 public ASTroute(int id) {
7 super(id);
10 public ASTroute(AddressListParser p, int id) {
11 super(p, id);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
patchkey.h 25 # define _PATCHKEY(id) (0xfd00|id)
27 # define _PATCHKEY(id) ((id<<8)|0x00fd)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/
enabled_hashes.pass.cpp 25 test_hash_enabled_for_type<std::thread::id>();
  /system/update_engine/
boot_control_recovery_stub.cc 20 .id = "stub",
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/tbbr/
tbb_key.c 16 .id = ROT_KEY,
22 .id = TRUSTED_WORLD_KEY,
28 .id = NON_TRUSTED_WORLD_KEY,
34 .id = SCP_FW_CONTENT_CERT_KEY,
40 .id = SOC_FW_CONTENT_CERT_KEY,
46 .id = TRUSTED_OS_FW_CONTENT_CERT_KEY,
52 .id = NON_TRUSTED_FW_CONTENT_CERT_KEY,
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
SessionInfo.java 21 private final String id; field in class:SessionInfo
30 * @param id
38 public SessionInfo(final String id, final long start, final long dump) {
39 if (id == null) {
42 this.id = id;
51 return id;
81 return "SessionInfo[" + id + "]";

Completed in 269 milliseconds

1 2 3 4 5 6 7 891011>>