Home
last modified time | relevance | path

Searched refs:field (Results 1 – 25 of 26) sorted by relevance

12

/development/ndk/platforms/android-3/include/sys/
Dqueue.h105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \ argument
106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
107 (listelm)->field.le_next->field.le_prev = \
108 &(elm)->field.le_next; \
109 (listelm)->field.le_next = (elm); \
110 (elm)->field.le_prev = &(listelm)->field.le_next; \
113 #define LIST_INSERT_BEFORE(listelm, elm, field) do { \ argument
114 (elm)->field.le_prev = (listelm)->field.le_prev; \
115 (elm)->field.le_next = (listelm); \
116 *(listelm)->field.le_prev = (elm); \
[all …]
/development/ndk/platforms/android-21/include/sys/
Dqueue.h105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \ argument
106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
107 (listelm)->field.le_next->field.le_prev = \
108 &(elm)->field.le_next; \
109 (listelm)->field.le_next = (elm); \
110 (elm)->field.le_prev = &(listelm)->field.le_next; \
113 #define LIST_INSERT_BEFORE(listelm, elm, field) do { \ argument
114 (elm)->field.le_prev = (listelm)->field.le_prev; \
115 (elm)->field.le_next = (listelm); \
116 *(listelm)->field.le_prev = (elm); \
[all …]
/development/ndk/platforms/android-9/arch-x86/include/asm/
Dpda.h57 #define pda_offset(field) offsetof(struct x8664_pda, field) argument
59field,val) do { typedef typeof(_proxy_pda.field) T__; if (0) { T__ tmp__; tmp__ = (val); } … argument
60field) ({ typeof(_proxy_pda.field) ret__; switch (sizeof(_proxy_pda.field)) { case 2: asm(… argument
61 #define read_pda(field) pda_from_op("mov",field) argument
62 #define write_pda(field,val) pda_to_op("mov",field,val) argument
64 #define add_pda(field,val) pda_to_op("add",field,val) argument
65 #define sub_pda(field,val) pda_to_op("sub",field,val) argument
66 #define or_pda(field,val) pda_to_op("or",field,val) argument
67 …,field) ({ int old__; asm volatile("btr %2,%%gs:%c3\n\tsbbl %0,%0" : "=r" (old__), "+m" (_pr… argument
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/inject/
DInjector.java75 for (Field field : mActivity.getClass().getDeclaredFields()) { in inject()
76 for (Annotation annotation : field.getAnnotations()) { in inject()
79 Class<?> fieldType = field.getType(); in inject()
81 field.setAccessible(true); in inject()
86 field + ", can't inject"); in inject()
88 field.set(mActivity, injectedValue); in inject()
89 field.setAccessible(false); in inject()
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/
DDbQueryUtils.java31 public static String getEqualityClause(String table, String field, String value) { in getEqualityClause() argument
32 return getEqualityClause(table + "." + field, value); in getEqualityClause()
36 public static String getEqualityClause(String field, String value) { in getEqualityClause() argument
38 clause.append(field); in getEqualityClause()
/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
DRemoteControlClientCompat.java56 for (Field field : RemoteControlClientCompat.class.getFields()) {
58 Field realField = sRemoteControlClientClass.getField(field.getName());
60 field.set(null, realValue); in field.set()
62 Log.w(TAG, "Could not get real field: " + field.getName());
64 Log.w(TAG, "Error trying to pull field value for: " + field.getName()
67 Log.w(TAG, "Error trying to pull field value for: " + field.getName()
/development/ndk/platforms/android-21/include/linux/
Dbcache.h22field, offset, size) static inline __u64 name(const type *k) { return (k->field >> offset) & ~(~… argument
30 #define KEY_FIELD(name, field, offset, size) BITMASK(name, struct bkey, field, offset, size) argument
Dvideodev2.h47field) ((field) == V4L2_FIELD_TOP || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD… argument
49field) ((field) == V4L2_FIELD_BOTTOM || (field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FI… argument
50field) ((field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_INTERLACED_TB || (field) == … argument
162 __u32 field; member
456 __u32 field; member
537 __u32 field; member
1132 __u32 field; member
1180 __u32 field; member
1220 __u8 field; member
Dv4l2-mediabus.h111 __u32 field; member
/development/ndk/platforms/android-3/include/linux/
Dvideodev2.h46 …4L2_FIELD_HAS_TOP(field) ((field) == V4L2_FIELD_TOP || (field) == V4L2_FIELD_INTERLACED || (fi… argument
47 …FIELD_HAS_BOTTOM(field) ((field) == V4L2_FIELD_BOTTOM || (field) == V4L2_FIELD_INTERLACED || ( argument
48 #define V4L2_FIELD_HAS_BOTH(field) ((field) == V4L2_FIELD_INTERLACED || (field) == V4L2_FIELD_SE… argument
153 enum v4l2_field field; member
269 enum v4l2_field field; member
320 enum v4l2_field field; member
864 __u32 field; member
/development/perftests/panorama/feature_stab/db_vlvm/
Ddb_utilities_camera.cpp29 …Approx3DCalMat(double K[9],double Kinv[9],int im_width,int im_height,double f_correction,int field) in db_Approx3DCalMat() argument
33 if(field) field_fact=2.0; in db_Approx3DCalMat()
Ddb_utilities_camera.h52 …DCalMat(double K[9],double Kinv[9],int im_width,int im_height,double f_correction=1.0,int field=0);
/development/testrunner/
Dam_instrument_parser.py145 for field in re_fields.finditer(result_block_string):
146 key, value = (field.group('key').strip(), field.group('value').strip())
/development/cmds/monkey/src/com/android/commands/monkey/
DMonkeySourceNetworkViews.java177 for (Field field : fields) { in translateCommand()
178 fieldBuilder.append(field.getName() + " "); in translateCommand()
466 Field field = klass.getDeclaredField("mAccessibilityViewId"); in query() local
467 field.setAccessible(true); in query()
468 viewId = ((Integer) field.get(node)).intValue(); in query()
/development/tools/mkstubs/
DREADME.txt30 - a # followed by a field or method name
48 and the specific field and the method with the exact given signature.
71 Suggestion: if type x.y.z is excluded, then any field, annotation, generic type,
/development/cmds/monkey/
Dexample_script.txt38 # Go down to the password field
/development/samples/training/basic/ActivityLifecycle/
Dproguard.cfg6 -optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
/development/samples/training/multiscreen/newsreader/
Dproguard.cfg6 -optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
/development/ndk/platforms/android-21/arch-mips/include/asm/
Dinst.h442 #define BITFIELD_FIELD(field, more) more field; argument
/development/ndk/platforms/android-21/arch-mips64/include/asm/
Dinst.h442 #define BITFIELD_FIELD(field, more) more field; argument
/development/tools/apkcheck/
DREADME.txt95 If apkcheck sees a reference to an unknown field, and the field's defining
/development/ndk/platforms/android-9/arch-mips/include/asm/pci/
Dbridge.h645 } field; member
/development/ndk/platforms/android-3/include/
Djni.h524 jfieldID FromReflectedField(jobject field) in FromReflectedField()
525 { return functions->FromReflectedField(this, field); } in FromReflectedField()
/development/tools/checkstyle/
Dcheckstyle.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml sun_checks.xml com/ ...
/development/samples/SearchableDictionary/res/raw/
Ddefinitions.txt127 …f rules or principles generally established as valid and fundamental in a field or art or philosop…
567 logic - n. the principles that guide reasoning within a given field or situation
574 magnet - n. (physics) a device that attracts iron and produces a magnetic field
795 pundit - n. someone who has been admitted to membership in a scholarly field

12