HomeSort by relevance Sort by last modified time
    Searched full:part (Results 476 - 500 of 4853) sorted by null

<<11121314151617181920>>

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
c-common.def 8 This file is part of GCC.
gsstruct.def 7 This file is part of GCC.
ipa-reference.h 5 This file is part of GCC.
ipa-utils.h 5 This file is part of GCC.
mode-classes.def 5 This file is part of GCC.
plugin.h 4 This file is part of GCC.
pointer-set.h 4 This file is part of GCC.
predict.h 4 This file is part of GCC.
statistics.h 6 This file is part of GCC.
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/java/
java-tree.def 5 This file is part of GCC.
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/objc/
objc-tree.def 7 This file is part of GCC.
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/
iso646.h 3 This file is part of GCC.
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
xf86Privstr.h 81 /* keyboard part */
113 /* mouse part */
119 /* event handler part */
129 /* graphics part */
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/install-tools/include/
iso646.h 3 This file is part of GCC.
  /prebuilt/linux-x86/toolchain/sh-4.3.3/lib/gcc/sh-linux-gnu/4.3.3/include/
iso646.h 3 This file is part of GCC.
  /prebuilt/linux-x86_64/swt/about_files/
IJG_README 91 for example, the color quantization modules are not strictly part of JPEG
136 (1) If any part of the source code for this software is distributed, then this
141 documentation must state that "this software is based in part on the work of
166 ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part
239 1992, ANSI was charging $95 for Part 1 and $47 for Part 2, plus 7%
240 shipping/handling. The standard is divided into two parts, Part 1 being the
241 actual specification, while Part 2 covers compliance testing methods. Part 1
243 Part 1: Requirements and guidelines" and has document numbers ISO/IEC I
    [all...]
  /prebuilt/windows/swt/about_files/
IJG_README 91 for example, the color quantization modules are not strictly part of JPEG
136 (1) If any part of the source code for this software is distributed, then this
141 documentation must state that "this software is based in part on the work of
166 ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part
239 1992, ANSI was charging $95 for Part 1 and $47 for Part 2, plus 7%
240 shipping/handling. The standard is divided into two parts, Part 1 being the
241 actual specification, while Part 2 covers compliance testing methods. Part 1
243 Part 1: Requirements and guidelines" and has document numbers ISO/IEC I
    [all...]
  /prebuilt/windows-x86_64/swt/about_files/
IJG_README 91 for example, the color quantization modules are not strictly part of JPEG
136 (1) If any part of the source code for this software is distributed, then this
141 documentation must state that "this software is based in part on the work of
166 ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part
239 1992, ANSI was charging $95 for Part 1 and $47 for Part 2, plus 7%
240 shipping/handling. The standard is divided into two parts, Part 1 being the
241 actual specification, while Part 2 covers compliance testing methods. Part 1
243 Part 1: Requirements and guidelines" and has document numbers ISO/IEC I
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/
UiViewEditPart.java 25 * Graphical edit part for an {@link UiElementNode} that represents a View.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationAttributesPart.java 36 * Application's attributes section part for Application page.
38 * This part is displayed at the top of the application page and displays all the possible
57 * Changes and refreshes the Application UI node handle by the this part.
70 * <code>initialize</code> (i.e. right after the form part is added to the managed form.)
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduPart.java 26 * The pdu part.
108 * Header of part.
118 * Part data.
132 * Set part data. The data are stored as byte array.
146 * @return A copy of the part data or null if the data wasn't set or
170 * @return The Uri of the part data or null if the data wasn't set or
304 * Get Content-Type value of part.
  /packages/apps/Gallery3D/src/com/cooliris/media/
Utils.java 120 long crc = INITIALCRC, part; local
123 part = i;
125 int value = ((int) part & 1);
127 part = (part >> 1) ^ POLY64REV;
129 part >>= 1;
131 CRCTable[i] = part;
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/
DefaultPolicyScanner.java 407 * The URL part of keystore clause.
412 * The typename part of keystore clause.
427 * The signers part of grant clause. This is a comma-separated list of
433 * The codebase part of grant clause. This is an URL from which code
479 * The classname part of principal clause.
484 * The name part of principal clause.
500 * The classname part of permission clause.
505 * The name part of permission clause.
510 * The actions part of permission clause.
515 * The signers part of permission clause. This is a comma-separated lis
    [all...]
  /external/skia/src/core/
SkStream.cpp 643 size_t part = offset + count > size ? size - offset : count; local
644 memcpy(block->start() + offset, buffer, part);
645 if (count <= part)
647 count -= part;
648 buffer = (const void*) ((char* ) buffer + part);
664 size_t part = offset + count > size ? size - offset : count; local
665 memcpy(buffer, block->start() + offset, part);
666 if (count <= part)
668 count -= part;
669 buffer = (void*) ((char* ) buffer + part);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 65 /** The master-detail part, composed of a main tree and an auxiliary detail part */
84 * Initializes the part.
98 * Called when the provided part has changed selection state.
100 * Only reply when our master part originates the selection.
102 public void selectionChanged(IFormPart part, ISelection selection) {
103 if (part == mMasterPart &&
147 * Returns true if the part has been modified with respect to the data
163 * Called by the master part when the tree is refreshed after the framework resources
475 * Marks the part dirty. Called as a result of user interaction with the widgets in th
    [all...]

Completed in 116 milliseconds

<<11121314151617181920>>