Searched defs:spec (Results 1 - 11 of 11) sorted by relevance

/frameworks/compile/slang/
H A DRSSpec.mk17 RS_SPEC_GEN := $(BUILD_OUT_EXECUTABLES)/rs-spec-gen$(BUILD_EXECUTABLE_SUFFIX)
19 define generate-rs-spec-inc
32 $(call generate-rs-spec-inc,clang-builtin-enums)
38 $(call generate-rs-spec-inc,rs-data-type-enums)
44 $(call generate-rs-spec-inc,rs-matrix-type-enums)
50 $(call generate-rs-spec-inc,rs-object-type-enums)
56 $(call generate-rs-spec-inc,rs-data-element-enums)
/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java90 * @param spec describing some or all scheduler options.
95 public static Options parseOptions(String spec, Options options) argument
97 for (String param : spec.split(" +")) {
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dquantize.c327 Word32 calcSfbDist(const Word32 *spec, argument
348 if (spec[line]) {
353 sa = L_abs(spec[line]);
398 if (spec[line]) {
403 sa = L_abs(spec[line]);
H A Dsf_estim.c116 /* calc sum of sqrt(spec) */
144 static Word16 improveScf(Word32 *spec, argument
160 sfbDist = calcSfbDist(spec, sfbWidth, scf);
175 sfbDist = calcSfbDist(spec, sfbWidth, scf);
189 sfbDist = calcSfbDist(spec, sfbWidth, scf);
212 sfbDist = calcSfbDist(spec, sfbWidth, scf);
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp546 struct timespec spec; local
547 spec.tv_sec = (now + delay) / 1000000000;
548 spec.tv_nsec = (now + delay) % 1000000000;
551 err = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &spec, NULL);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp1027 struct timespec spec; local
1028 spec.tv_sec = next_vsync / 1000000000;
1029 spec.tv_nsec = next_vsync % 1000000000;
1033 err = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &spec, NULL);
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp452 char spec[9]; local
453 spec[0] = config.language[0];
454 spec[1] = config.language[1];
456 spec[2] = '_';
457 spec[3] = config.country[0];
458 spec[4] = config.country[1];
459 spec[5] = 0;
461 spec[3] = 0;
463 setLocaleLocked(spec);
/frameworks/base/services/java/com/android/server/pm/
H A DSettings.java2503 static final void printFlags(PrintWriter pw, int val, Object[] spec) { argument
2505 for (int i=0; i<spec.length; i+=2) {
2506 int mask = (Integer)spec[i];
2508 pw.print(spec[i+1]);
/frameworks/base/core/java/android/widget/
H A DGridLayout.java66 * Each spec defines the set of rows or columns that are to be
615 Spec spec = horizontal ? p.columnSpec : p.rowSpec;
617 Interval span = spec.span;
639 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec;
640 int index = leading ? spec.span.min : spec.span.max;
778 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec;
779 Interval span = spec.span;
964 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec;
965 if (spec
2215 include(GridLayout gl, View c, Spec spec, Axis axis) argument
2426 public static Spec spec(int start, int size, Alignment alignment) { method in class:GridLayout
2440 public static Spec spec(int start, Alignment alignment) { method in class:GridLayout
2453 public static Spec spec(int start, int size) { method in class:GridLayout
2465 public static Spec spec(int start) { method in class:GridLayout
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java66 * Each spec defines the set of rows or columns that are to be
595 Spec spec = horizontal ? p.columnSpec : p.rowSpec;
597 Interval span = spec.span;
619 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec;
620 int index = leading ? spec.span.min : spec.span.max;
908 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec;
909 if (spec.alignment == FILL) {
910 Interval span = spec.span;
1136 Spec spec
2148 include(View c, Spec spec, GridLayout gridLayout, Axis axis) argument
2358 public static Spec spec(int start, int size, Alignment alignment) { method in class:GridLayout
2372 public static Spec spec(int start, Alignment alignment) { method in class:GridLayout
2385 public static Spec spec(int start, int size) { method in class:GridLayout
2397 public static Spec spec(int start) { method in class:GridLayout
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java4842 * @param spec The requirements for this view
4849 public static int getChildMeasureSpec(int spec, int padding, int childDimension) { argument
4850 int specMode = MeasureSpec.getMode(spec);
4851 int specSize = MeasureSpec.getSize(spec);

Completed in 933 milliseconds