HomeSort by relevance Sort by last modified time
    Searched refs:phone (Results 1 - 25 of 57) sorted by null

1 2 3

  /device/google/cuttlefish/vsoc_arm64/phone/
device.mk 18 $(call inherit-product, device/google/cuttlefish/shared/phone/device.mk)
22 PRODUCT_MODEL := Cuttlefish arm64 phone
23 PRODUCT_PACKAGE_OVERLAYS := device/google/cuttlefish/vsoc_arm64/phone/overlay
  /device/google/cuttlefish/vsoc_x86/pasan/
device.mk 17 $(call inherit-product, device/google/cuttlefish/shared/phone/device.mk)
21 PRODUCT_MODEL := Cuttlefish x86 phone
22 # Intentionally points to phone overlay to avoid code duplication
23 PRODUCT_PACKAGE_OVERLAYS := device/google/cuttlefish/vsoc_x86/phone/overlay
  /device/google/cuttlefish/vsoc_x86/phone/
device.mk 17 $(call inherit-product, device/google/cuttlefish/shared/phone/device.mk)
21 PRODUCT_MODEL := Cuttlefish x86 phone
22 PRODUCT_PACKAGE_OVERLAYS := device/google/cuttlefish/vsoc_x86/phone/overlay
  /device/google/cuttlefish/vsoc_x86_64/phone/
device.mk 18 $(call inherit-product, device/google/cuttlefish/shared/phone/device.mk)
22 PRODUCT_MODEL := Cuttlefish x86_64 phone
23 PRODUCT_PACKAGE_OVERLAYS := device/google/cuttlefish/vsoc_x86_64/phone/overlay
  /device/google/cuttlefish/vsoc_x86/go_phone/
device.mk 18 $(call inherit-product, device/google/cuttlefish/vsoc_x86/phone/device.mk)
22 PRODUCT_MODEL := Cuttlefish x86 Go phone
23 PRODUCT_PACKAGE_OVERLAYS := device/google/cuttlefish/vsoc_x86/phone/overlay
  /external/grpc-grpc/third_party/nanopb/tests/basic_buffer/
decode_buffer.c 34 Person_PhoneNumber *phone = &person.phone[i]; local
35 printf("phone {\n");
36 printf(" number: \"%s\"\n", phone->number);
38 if (phone->has_type)
40 switch (phone->type)
  /external/nanopb-c/tests/basic_buffer/
decode_buffer.c 34 Person_PhoneNumber *phone = &person.phone[i]; local
35 printf("phone {\n");
36 printf(" number: \"%s\"\n", phone->number);
38 if (phone->has_type)
40 switch (phone->type)
  /external/grpc-grpc/third_party/nanopb/tests/basic_stream/
decode_stream.c 30 Person_PhoneNumber *phone = &person.phone[i]; local
31 printf("phone {\n");
32 printf(" number: \"%s\"\n", phone->number);
34 if (phone->has_type)
36 switch (phone->type)
  /external/nanopb-c/tests/basic_stream/
decode_stream.c 30 Person_PhoneNumber *phone = &person.phone[i]; local
31 printf("phone {\n");
32 printf(" number: \"%s\"\n", phone->number);
34 if (phone->has_type)
36 switch (phone->type)
  /device/google/cuttlefish/
AndroidProducts.mk 18 aosp_cf_arm64_phone:$(LOCAL_DIR)/vsoc_arm64/phone/device.mk \
19 aosp_cf_x86_64_phone:$(LOCAL_DIR)/vsoc_x86_64/phone/device.mk \
22 aosp_cf_x86_phone:$(LOCAL_DIR)/vsoc_x86/phone/device.mk \
  /external/guice/examples/src/example/xml/
Main.java 28 final URL xmlUrl = Main.class.getResource("phone.xml");
39 Phone phone = injector.getInstance(Phone.class); local
41 if (phone.getContacts() == null) {
  /frameworks/av/services/audiopolicy/enginedefault/config/example/
Android.mk 15 LOCAL_SRC_FILES := phone/$(LOCAL_MODULE)
29 LOCAL_SRC_FILES := phone/$(LOCAL_MODULE)
37 LOCAL_SRC_FILES := phone/$(LOCAL_MODULE)
45 LOCAL_SRC_FILES := phone/$(LOCAL_MODULE)
  /device/google/cuttlefish/vsoc_x86/gsi/
aosp_cf_x86_gsi.mk 36 PRODUCT_PACKAGE_OVERLAYS := device/google/cuttlefish/vsoc_x86/phone/overlay
  /external/protobuf/examples/
list_people_test.go 28 Home phone #: 555-4321
84 Work phone #: 555-555-5555
88 Home phone #: 555-555-0000
89 Mobile phone #: 555-555-0001
90 Work phone #: 555-555-0002
94 Mobile phone #: 555-777-0000
95 Home phone #: 555-777-0001
list_people.go 24 fmt.Fprint(w, " Mobile phone #: ")
26 fmt.Fprint(w, " Home phone #: ")
28 fmt.Fprint(w, " Work phone #: ")
add_person.go 46 fmt.Print("Enter a phone number (or leave blank to finish): ")
47 phone, err := rd.ReadString('\n')
51 phone = strings.TrimSpace(phone)
52 if phone == "" {
61 Number: phone,
64 fmt.Print("Is this a mobile, home, or work phone? ")
80 fmt.Printf("Unknown phone type %q. Using default.\n", ptype)
add_person_test.go 46 t.Errorf("want %d phone numbers, got %d", len(want), len(got.Phones))
54 t.Errorf("want phone %q, got %q", *want[i], *got.Phones[i])
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
LockScreenInfoTest.java 51 final String phone = new String(Character.toChars(0x1F4F1)); local
52 setLockInfo(smiley + phone + "\t" + phone + smiley);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
URLParser.java 371 * Parser for the base phone number.
404 * Parser for the local phone #.
536 // JvB: Need to handle 'phone-context' specially
542 // Handle 'phone-context' specially, it may start with '+'
543 if ( pname.equalsIgnoreCase("phone-context")) {
566 * Parses the 'phone-context' parameter in tel: URLs
581 throw new ParseException( "Invalid phone-context:" + la , -1 );
583 return new NameValue( "phone-context", value, false );
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ResolverTest.java 43 yaml.addImplicitResolver(new Tag(Tag.PREFIX + "Phone"), regexp, "0123456789");
44 Phone phone1 = new Phone("12-34-567");
45 Phone phone2 = new Phone("11-22-333");
46 Phone phone3 = new Phone("44-55-777");
47 List<Phone> etalonList = new ArrayList<Phone>();
53 List<Phone> parsedList = (List<Phone>) yaml.load(output)
107 Phone phone = (Phone) data; local
135 Point phone = (Point) data; local
143 Phone phone = (Phone) data; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List7.java 26 import android.provider.ContactsContract.CommonDataKinds.Phone;
43 Phone._ID,
44 Phone.TYPE,
45 Phone.LABEL,
46 Phone.NUMBER,
47 Phone.DISPLAY_NAME
58 mPhone = (TextView) findViewById(R.id.phone);
62 // This query will only return contacts with phone numbers
63 Cursor c = getContentResolver().query(Phone.CONTENT_URI,
64 PHONE_PROJECTION, Phone.NUMBER + " NOT NULL", null, null)
84 String phone = c.getString(COLUMN_PHONE_NUMBER); local
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
PollingAction.java 198 private String getCompleteUri(String phone) {
199 phone = "tel:" + phone;
200 return phone;
  /frameworks/av/services/audiopolicy/engineconfigurable/config/example/
Android.mk 20 LOCAL_SRC_FILES := phone/$(LOCAL_MODULE)
36 LOCAL_SRC_FILES := phone/$(LOCAL_MODULE)
44 LOCAL_SRC_FILES := phone/$(LOCAL_MODULE)
52 LOCAL_SRC_FILES := phone/$(LOCAL_MODULE)
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactOperations.java 29 import android.provider.ContactsContract.CommonDataKinds.Phone;
172 * Adds a phone number
174 * @param phone new phone number for the contact
178 public ContactOperations addPhone(String phone, int phoneType) {
180 if (!TextUtils.isEmpty(phone)) {
181 mValues.put(Phone.NUMBER, phone);
182 mValues.put(Phone.TYPE, phoneType);
183 mValues.put(Phone.MIMETYPE, Phone.CONTENT_ITEM_TYPE)
    [all...]
  /build/make/target/product/
media_system.mk 64 frameworks/base/config/compiled-classes-phone:system/etc/compiled-classes)
68 frameworks/base/dirty-image-objects-phone:system/etc/dirty-image-objects)

Completed in 410 milliseconds

1 2 3