Searched refs:tag (Results 1 - 25 of 30) sorted by relevance

12

/development/ndk/platforms/android-3/include/android/
H A Dlog.h43 * - a log tag
46 * The tag normally corresponds to the component that emits the log message,
94 int __android_log_write(int prio, const char *tag, const char *text);
99 int __android_log_print(int prio, const char *tag, const char *fmt, ...)
109 int __android_log_vprint(int prio, const char *tag,
116 void __android_log_assert(const char *cond, const char *tag,
/development/ndk/platforms/android-3/arch-arm/include/asm/arch/
H A Dboard.h140 u16 tag; member in struct:omap_board_config_entry
146 u16 tag; member in struct:omap_board_config_kernel
160 #define omap_get_config(tag, type) ((const type *) __omap_get_config((tag), sizeof(type), 0))
161 #define omap_get_nr_config(tag, type, nr) ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
/development/tools/emulator/system/camera/
H A DEmulatedCameraHal.cpp33 tag: HARDWARE_MODULE_TAG,
H A DEmulatedCamera2.h151 /** Custom tag definitions */
152 const char* getVendorSectionName(uint32_t tag);
153 const char* getVendorTagName(uint32_t tag);
154 int getVendorTagType(uint32_t tag);
261 uint32_t tag);
264 uint32_t tag);
267 uint32_t tag);
H A DEmulatedBaseCamera.cpp48 device->tag = HARDWARE_DEVICE_TAG;
H A DEmulatedCamera2.cpp242 /** Custom tag query methods */
244 const char* EmulatedCamera2::getVendorSectionName(uint32_t tag) { argument
248 const char* EmulatedCamera2::getVendorTagName(uint32_t tag) { argument
252 int EmulatedCamera2::getVendorTagType(uint32_t tag) { argument
490 uint32_t tag) {
492 return ec->getVendorSectionName(tag);
497 uint32_t tag) {
499 return ec->getVendorTagName(tag);
504 uint32_t tag) {
506 return ec->getVendorTagType(tag);
488 get_camera_vendor_section_name( const vendor_tag_query_ops_t *v, uint32_t tag) argument
495 get_camera_vendor_tag_name( const vendor_tag_query_ops_t *v, uint32_t tag) argument
502 get_camera_vendor_tag_type( const vendor_tag_query_ops_t *v, uint32_t tag) argument
[all...]
/development/cmds/monkey/src/com/android/commands/monkey/
H A DMonkeyPowerEvent.java72 private void bufferLogEvent(String tag, String value) { argument
75 if (tag.compareTo(TEST_STARTED) == 0) {
77 } else if (tag.compareTo(TEST_IDLE_ENDED) == 0) {
80 tag = TEST_ENDED;
81 } else if (tag.compareTo(TEST_DELAY_STARTED) == 0) {
84 tag = TEST_STARTED;
89 event.put("tag", tag);
111 buffer.append(event.getAsString("tag"));
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DTabs2.java52 public View createTabContent(String tag) { argument
54 tv.setText("Content for tab with tag " + tag);
H A DTabs5.java49 public View createTabContent(String tag) { argument
51 tv.setText("Content for tab with tag " + tag);
H A DTabs6.java50 public View createTabContent(String tag) { argument
52 tv.setText("Content for tab with tag " + tag);
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentTabs.java89 private final String tag; field in class:FragmentTabs.TabManager.TabInfo
95 tag = _tag;
109 public View createTabContent(String tag) { argument
126 String tag = tabSpec.getTag();
128 TabInfo info = new TabInfo(tag, clss, args);
133 info.fragment = mActivity.getSupportFragmentManager().findFragmentByTag(tag);
140 mTabs.put(tag, info);
158 ft.add(mContainerId, newTab.fragment, newTab.tag);
H A DFragmentTabsPager.java94 private final String tag; field in class:FragmentTabsPager.TabsAdapter.TabInfo
99 tag = _tag;
113 public View createTabContent(String tag) { argument
133 String tag = tabSpec.getTag();
135 TabInfo info = new TabInfo(tag, clss, args);
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DFragmentTabs.java77 public TabListener(Activity activity, String tag, Class<T> clz) { argument
78 this(activity, tag, clz, null);
81 public TabListener(Activity activity, String tag, Class<T> clz, Bundle args) { argument
83 mTag = tag;
/development/ndk/platforms/android-3/include/linux/
H A Dmodule.h79 #define MODULE_INFO(tag, info) __MODULE_INFO(tag, tag, info)
H A Dmoduleparam.h28 #define __MODULE_INFO(tag, name, info) static const char __module_cat(name,__LINE__)[] __attribute_used__ __attribute__((section(".modinfo"),unused)) = __stringify(tag) "=" info
30 #define __MODULE_INFO(tag, name, info)
H A Dblkdev.h152 int tag; member in struct:request
/development/ndk/platforms/android-9/arch-x86/include/asm/
H A Dsigcontext.h42 unsigned long tag; member in struct:_fpstate
/development/samples/RSSReader/src/com/example/android/rssreader/
H A DRssReader.java201 * Simple code to strip out <tag>s -- primitive way to sortof display HTML as
495 String tag = xpp.getName();
496 if (tag.equals("item")) {
498 } else if (tag.equals("title")) {
499 xpp.next(); // Skip to next element -- assume text is directly inside the tag
501 } else if (tag.equals("link")) {
504 } else if (tag.equals("description")) {
512 String tag = xpp.getName();
513 if (tag.equals("item")) {
546 String tag
[all...]
/development/apps/Development/src/com/android/development/
H A DLogViewer.java106 CharSequence tag
111 builder.append(tag)
/development/samples/Support13Demos/src/com/example/android/supportv13/app/
H A DActionBarTabsPager.java144 Object tag = tab.getTag();
146 if (mTabs.get(i) == tag) {
/development/tools/emulator/system/lights/
H A Dlights_qemu.c188 dev->common.tag = HARDWARE_DEVICE_TAG;
206 .tag = HARDWARE_MODULE_TAG,
/development/tools/elftree/
H A Delftree.c131 static int find_dyn(struct dyn_state *d, GElf_Sxword tag, GElf_Dyn *dyn_out) argument
139 if (dyn_out->d_tag == tag)
/development/ndk/platforms/android-3/include/netinet/
H A Dicmp6.h669 #define icmp6_ifstat_inc(ifp, tag) \
672 ((struct in6_ifextra *)((ifp)->if_afdata[AF_INET6]))->icmp6_ifstat->tag++; \
/development/tools/emulator/system/sensors/
H A Dsensors_qemu.c605 dev->device.common.tag = HARDWARE_DEVICE_TAG;
628 .tag = HARDWARE_MODULE_TAG,
/development/samples/training/multiscreen/newsreader/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/content/ ...

Completed in 657 milliseconds

12