/frameworks/base/libs/binder/ |
Parcel.cpp | 134 const sp<IBinder>& binder, const flat_binder_object& flat, Parcel* out) 136 return out->writeObject(flat, false); 219 BpBinder* proxy, const flat_binder_object& flat, const Parcel& in) 227 const flat_binder_object* flat = in.readObject(false); local 229 if (flat) { 230 switch (flat->type) { 232 *out = static_cast<IBinder*>(flat->cookie); 233 return finish_unflatten_binder(NULL, *flat, in); 235 *out = proc->getStrongProxyForHandle(flat->handle); 237 static_cast<BpBinder*>(out->get()), *flat, in) 246 const flat_binder_object* flat = in.readObject(false); local 413 flat_binder_object* flat local 968 const flat_binder_object* flat = readObject(true); local 1080 const flat_binder_object* flat local 1140 const flat_binder_object* flat local 1161 const flat_binder_object* flat local 1175 const flat_binder_object* flat local 1312 const flat_binder_object* flat local 1393 const flat_binder_object* flat local [all...] |
/frameworks/base/core/java/android/widget/ |
ExpandableListConnector.java | 34 * <li> flPos - Flat list position, the position used by ListView 46 * Internally, this connector translates the flat list position that the 58 * of data essential for efficiently translating between flat list positions 96 * Translates a flat list position to either a) group pos if the specified 97 * flat list position corresponds to a group, or b) child pos if it 99 * groups list to find the flat list pos if it is an exp group, otherwise 100 * finds where the flat list pos fits in between the exp groups. 102 * @param flPos the flat list position to be translated 103 * @return the group position or child position of the specified flat list 137 * the same as the flat list position (since there are no children befor [all...] |
ExpandableListPosition.java | 56 * The position of the item in the flat list (optional, used internally when 57 * the corresponding flat list position for the group or child is known)
|
ExpandableListView.java | 336 * @param pos The flat list position of the item whose indicator 487 * @param position An absolute (including header and footer) flat list position. 496 * Converts an absolute item flat position into a group/child flat position, shifting according 499 * @param flatListPosition The absolute flat position 500 * @return A group/child flat position as expected by the connector. 507 * Converts a group/child flat position into an absolute flat position, that takes into account 510 * @param flatListPosition The child/group flat position 511 * @return An absolute flat position [all...] |
/external/skia/src/core/ |
SkPictureRecord.cpp | 540 SkFlatBitmap* flat = SkFlatBitmap::Flatten(&fHeap, bitmap, fBitmapIndex, local 543 bitmaps.count(), (SkFlatData*) flat, sizeof(flat), &SkFlatData::Compare); 545 (void)fHeap.unalloc(flat); 549 *bitmaps.insert(index) = flat; 556 SkFlatMatrix* flat = SkFlatMatrix::Flatten(&fHeap, *matrix, fMatrixIndex); 558 matrices.count(), (SkFlatData*) flat, sizeof(flat), &SkFlatData::Compare); 560 (void)fHeap.unalloc(flat); 564 *matrices.insert(index) = flat; 573 SkFlatPaint* flat = SkFlatPaint::Flatten(&fHeap, *paint, fPaintIndex, local 588 SkFlatRegion* flat = SkFlatRegion::Flatten(&fHeap, region, fRegionIndex); local [all...] |
/external/jpeg/ |
jconfig.dj | 14 #undef NEED_FAR_POINTERS /* DJGPP uses flat 32-bit addressing */
|
jconfig.vc | 14 #undef NEED_FAR_POINTERS /* we presume a 32-bit flat memory model */
|
jconfig.wat | 14 #undef NEED_FAR_POINTERS /* Watcom uses flat 32-bit addressing */
|
/frameworks/base/docs/html/shareables/ |
icon_templates-v2.0.zip | |
icon_templates-v1.0.zip | |
/packages/inputmethods/LatinIME/dictionaries/ |
sample.xml | 3 The format of the word list is a flat list of word entries.
|
/system/extras/tests/bionic/libstdc++/ |
README.TXT | 16 The directory layout is currently flat because there is one Bionic test. If you
|
/external/dbus/dbus/ |
dbus-types.h | 86 * compilers support one. GLib for example flat-out requires 99 * compilers support one. GLib for example flat-out requires 113 * compilers support one. GLib for example flat-out requires
|
/frameworks/base/awt/java/awt/geom/ |
FlatteningPathIterator.java | 33 * dividing each curved segment into smaller and smaller flat segments until 57 * The type of current segment to be flat. 131 * the flattening factor that indicates how far the flat path is 147 * smaller and smaller flat segments until either the segments are within 153 * the flattening factor that indicates how far the flat path is 157 * the maximum number of flat segments to divide each curve into. 212 * Calculates flat path points for current segment of the source shape. Line 213 * segment is flat by itself. Flatness of quad and cubic curves evaluated by
|
/external/v8/test/cctest/ |
test-strings.cc | 238 Handle<String> flat = ConstructBalanced(building_blocks); local 239 FlattenString(flat); 244 Traverse(flat, symmetric); 246 Traverse(flat, left_asymmetric); 248 Traverse(flat, right_asymmetric); 261 Traverse(flat, left_asymmetric); 265 Traverse(flat, right_asymmetric); 269 Traverse(flat, symmetric); 353 // Make sure we cover all always-flat lengths and at least one above.
|
/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
deringing_luma.cpp | 86 /* threshold rearrangement for flat region adjacent to non-flat region */ 140 /* threshold rearrangement for flat region adjacent to non-flat region */ 202 /* threshold rearrangement for flat region adjacent to non-flat region */
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
deringing_luma.cpp | 85 /* threshold rearrangement for flat region adjacent to non-flat region */ 139 /* threshold rearrangement for flat region adjacent to non-flat region */ 201 /* threshold rearrangement for flat region adjacent to non-flat region */
|
/development/samples/GlobalTime/src/com/android/globaltime/ |
LatLongSphere.java | 65 // Place vertices onto a flat projection 104 // since this vertex carries the color for flat
|
/external/freetype/include/freetype/internal/ |
ftcalc.h | 152 * Return TRUE if a corner is flat or nearly flat. This is equivalent to
|
/external/webkit/WebCore/platform/ |
SharedBuffer.h | 84 // to be merged into a flat buffer. Use getSomeData() whenever possible 93 // to be merged into a flat buffer. Use getSomeData() whenever possible
|
/frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/ |
ExpandableListTester.java | 156 Assert.assertEquals("Group not found at flat position " + expectedFlatPosition, 160 Assert.assertEquals("Wrong flat position for group " + groupIndex, 183 Assert.assertEquals("Wrong flat position for child ", 187 Assert.assertEquals("Wrong flat position for child ",
|
/external/webkit/WebCore/html/ |
HTMLParser.h | 117 bool insertNodeAfterLimitBlockDepth(Node*, bool flat = false); 118 bool insertNode(Node*, bool flat = false); 119 bool handleError(Node*, bool flat, const AtomicString& localName, int tagPriority);
|
/frameworks/base/core/java/android/hardware/ |
SensorEvent.java | 105 * <li>When the device lies flat on a table and is pushed on its left 108 * <li>When the device lies flat on a table, the acceleration value is 112 * <li>When the device lies flat on a table and is pushed toward the sky
|
/frameworks/base/services/jni/ |
com_android_server_KeyInputQueue.cpp | 135 int32_t minValue, maxValue, flat, fuzz; local 140 &minValue, &maxValue, &flat, &fuzz); 148 env->SetIntField(info, gInputOffsets.mFlat, (jint)flat); 316 = env->GetFieldID(absoluteInfo, "flat", "I"); 317 LOG_FATAL_IF(gInputOffsets.mFlat == NULL, "Unable to find InputDevice.AbsoluteInfo.flat");
|
/sdk/ddms/app/src/com/android/ddms/ |
PrefsDialog.java | 338 super(FLAT); // use "flat" layout 374 super(FLAT); // use "flat" layout 408 super(FLAT); // use "flat" layout
|