HomeSort by relevance Sort by last modified time
    Searched refs:Spec (Results 1 - 25 of 200) sorted by null

1 2 3 4 5 6 7 8

  /development/samples/ApiDemos/src/com/example/android/apis/view/
GridLayout3.java 50 Spec titleRow = spec(0);
51 Spec introRow = spec(1);
52 Spec emailRow = spec(2, BASELINE);
53 Spec passwordRow = spec(3, BASELINE);
54 Spec button1Row = spec(5)
    [all...]
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestGridLayoutCodeLtr.java 42 import static android.widget.GridLayout.Spec;
43 import static android.widget.GridLayout.spec;
69 Spec row1 = spec(0);
70 Spec row2 = spec(1);
71 Spec row3 = spec(2, BASELINE);
72 Spec row4 = spec(3, BASELINE)
    [all...]
BiDiTestGridLayoutCodeRtl.java 42 import static android.widget.GridLayout.Spec;
43 import static android.widget.GridLayout.spec;
69 Spec row1 = spec(0);
70 Spec row2 = spec(1);
71 Spec row3 = spec(2, BASELINE);
72 Spec row4 = spec(3, BASELINE)
    [all...]
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/view/
GridLayout3.java 25 import static android.support.v7.widget.GridLayout.spec;
36 import android.support.v7.widget.GridLayout.Spec;
61 Spec titleRow = spec(0);
62 Spec introRow = spec(1);
63 Spec emailRow = spec(2, BASELINE);
64 Spec passwordRow = spec(3, BASELINE)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Script/
InputSectDesc.h 30 struct Spec {
53 bool operator==(const Spec& pRHS) const {
73 const Spec& pSpec,
79 const Spec& spec() const { return m_Spec; } function in class:mcld::InputSectDesc
91 Spec m_Spec;
  /external/v8/test/mjsunit/asm/
if-folding.js 73 function Spec(a,b,c) {
93 assertEquals(36, Spec(0,0,0).f());
94 assertEquals(35, Spec(0,0,1).f());
95 assertEquals(34, Spec(0,1,0).f());
96 assertEquals(33, Spec(0,1,1).f());
97 assertEquals(32, Spec(1,0,0).f());
98 assertEquals(31, Spec(1,0,1).f());
99 assertEquals(30, Spec(1,1,0).f());
100 assertEquals(29, Spec(1,1,1).f());
if-reduction.js 85 function Spec(a,b) {
108 assertEquals(60, Spec(0,0).f());
109 assertEquals(59, Spec(0,1).f());
110 assertEquals(50, Spec(1,0).f());
111 assertEquals(49, Spec(1,1).f());
  /external/llvm/lib/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.cpp 72 for (const AttributeSpec &Spec : AttributeSpecs) {
74 const char *attrString = AttributeString(Spec.Attr);
78 OS << format("DW_AT_Unknown_%x", Spec.Attr);
80 const char *formString = FormEncodingString(Spec.Form);
84 OS << format("DW_FORM_Unknown_%x", Spec.Form);
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
StateTransitionAnimation.java 30 public static class Spec {
31 public static final Spec OUTGOING;
32 public static final Spec INCOMING;
33 public static final Spec PHOTO_INCOMING;
54 OUTGOING = new Spec();
64 INCOMING = new Spec();
77 private static Spec specForTransition(Transition t) {
80 return Spec.OUTGOING;
82 return Spec.INCOMING;
84 return Spec.PHOTO_INCOMING
    [all...]
  /external/v8/test/cctest/
test-feedback-vector.h 42 template <typename Spec>
43 Handle<TypeFeedbackVector> NewTypeFeedbackVector(Isolate* isolate, Spec* spec) {
45 TypeFeedbackMetadata::New(isolate, spec);
  /external/e2fsprogs/intl/
vasnprintf.h 31 # define __attribute__(Spec) /* empty */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/
build_vc.pl 31 use File::Spec;
62 $h = File::Spec->canonpath($h);
83 $file = File::Spec->canonpath($file);
85 (undef, undef, $f) = File::Spec->splitpath($file);
88 $objfile = File::Spec->catfile('obj', $base.'.o');
116 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/
build_vc.pl 31 use File::Spec;
62 $h = File::Spec->canonpath($h);
83 $file = File::Spec->canonpath($file);
85 (undef, undef, $f) = File::Spec->splitpath($file);
90 $objfile = File::Spec->catfile('obj', $base.'.o');
118 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/
build_vc.pl 31 use File::Spec;
62 $h = File::Spec->canonpath($h);
83 $file = File::Spec->canonpath($file);
85 (undef, undef, $f) = File::Spec->splitpath($file);
88 $objfile = File::Spec->catfile('obj', $base.'.o');
116 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE);
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
GridLayoutTest.java 24 import static android.widget.GridLayout.Spec;
27 import static android.widget.GridLayout.spec;
39 Spec rowSpec = spec(UNDEFINED, null);
40 Spec colSpec = spec(UNDEFINED, null);
  /external/deqp/modules/gles2/functional/
es2fVertexArrayTest.cpp 88 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx],
99 MultiVertexArrayTest::Spec spec; local
100 spec.primitive = Array::PRIMITIVE_TRIANGLES;
101 spec.drawCount = counts[countNdx];
102 spec.first = 0;
103 spec.arrays.push_back(arraySpec);
105 std::string name = spec.getName();
108 addChild(new MultiVertexArrayTest(m_testCtx, m_context.getRenderContext(), spec, name.c_str(), name.c_str()));
158 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx]
169 MultiVertexArrayTest::Spec spec; local
240 MultiVertexArrayTest::Spec spec; local
308 MultiVertexArrayTest::Spec spec; local
371 MultiVertexArrayTest::Spec spec; local
436 MultiVertexArrayTest::Spec spec; local
523 MultiVertexArrayTest::Spec spec; local
644 MultiVertexArrayTest::Spec spec; local
703 MultiVertexArrayTest::Spec spec; local
794 MultiVertexArrayTest::Spec spec; local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexArrayTest.cpp 87 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx],
98 MultiVertexArrayTest::Spec spec; local
99 spec.primitive = Array::PRIMITIVE_TRIANGLES;
100 spec.drawCount = counts[countNdx];
101 spec.first = 0;
102 spec.arrays.push_back(arraySpec);
105 addChild(new MultiVertexArrayTest(m_testCtx, m_context.getRenderContext(), spec, name.c_str(), name.c_str()));
192 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type,
203 MultiVertexArrayTest::Spec spec local
306 MultiVertexArrayTest::Spec spec; local
407 MultiVertexArrayTest::Spec spec; local
501 MultiVertexArrayTest::Spec spec; local
617 MultiVertexArrayTest::Spec spec; local
736 MultiVertexArrayTest::Spec spec; local
857 MultiVertexArrayTest::Spec spec; local
916 MultiVertexArrayTest::Spec spec; local
1007 MultiVertexArrayTest::Spec spec; local
    [all...]
  /external/deqp/modules/egl/
teglMemoryStressTests.cpp 317 struct Spec
327 MemoryStressCase (EglTestContext& eglTestCtx, Spec spec, const char* name, const char* description);
333 Spec m_spec;
344 MemoryStressCase::MemoryStressCase (EglTestContext& eglTestCtx, Spec spec, const char* name, const char* description)
346 , m_spec (spec)
476 MemoryStressCase::Spec spec; local
478 spec.types = OBJECTTYPE_PBUFFER
490 MemoryStressCase::Spec spec; local
504 MemoryStressCase::Spec spec; local
518 MemoryStressCase::Spec spec; local
532 MemoryStressCase::Spec spec; local
546 MemoryStressCase::Spec spec; local
560 MemoryStressCase::Spec spec; local
574 MemoryStressCase::Spec spec; local
588 MemoryStressCase::Spec spec; local
602 MemoryStressCase::Spec spec; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
Test.pm 14 use File::Spec;
68 my $grammar_file = File::Spec->catfile($tmpdir, "$grammar_name.g");
72 my $test_program_file = File::Spec->catfile($tmpdir, 'test.pl');
89 my $g_result = run_program([ File::Spec->catfile($cwd, 'tools', $antlr), '-o', $tmpdir, $grammar_file ]);
96 #local $ENV{PERLCOV_DB} = File::Spec->catfile($tmpdir, 'perlcov.db');
97 #local $ENV{NYTPROF} = 'file=' . File::Spec->catfile($tmpdir, 'nytprof.out');
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
Config.java 30 public SlotView.Spec slotViewSpec;
48 slotViewSpec = new SlotView.Spec();
84 public SlotView.Spec slotViewSpec;
99 slotViewSpec = new SlotView.Spec();
  /external/deqp/modules/gles2/stress/
es2sVertexArrayTests.cpp 89 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx],
100 MultiVertexArrayTest::Spec spec; local
101 spec.primitive = Array::PRIMITIVE_TRIANGLES;
102 spec.drawCount = counts[countNdx];
103 spec.first = 0;
104 spec.arrays.push_back(arraySpec);
106 std::string name = spec.getName();
109 addChild(new MultiVertexArrayTest(m_testCtx, m_context.getRenderContext(), spec, name.c_str(), name.c_str()));
159 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx]
170 MultiVertexArrayTest::Spec spec; local
241 MultiVertexArrayTest::Spec spec; local
309 MultiVertexArrayTest::Spec spec; local
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 69 * Each spec defines the set of rows or columns that are to be
665 Spec spec = horizontal ? p.columnSpec : p.rowSpec; local
667 Interval span = spec.span;
689 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
690 int index = leading ? spec.span.min : spec.span.max;
744 final Spec majorSpec = horizontal ? lp.rowSpec : lp.columnSpec;
752 final Spec minorSpec = horizontal ? lp.columnSpec : lp.rowSpec
828 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1016 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1248 Spec spec = horizontal ? params.columnSpec : params.rowSpec; local
1292 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1308 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1661 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1703 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1734 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1790 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
2588 Spec spec = (Spec) that; local
2624 public static Spec spec(int start, int size, Alignment alignment, float weight) { method
2635 public static Spec spec(int start, Alignment alignment, float weight) { method
2648 public static Spec spec(int start, int size, float weight) { method
2658 public static Spec spec(int start, float weight) { method
2669 public static Spec spec(int start, int size, Alignment alignment) { method
2687 public static Spec spec(int start, Alignment alignment) { method
2704 public static Spec spec(int start, int size) { method
2720 public static Spec spec(int start) { method
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 68 * Each spec defines the set of rows or columns that are to be
652 Spec spec = horizontal ? p.columnSpec : p.rowSpec; local
654 Interval span = spec.span;
680 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
681 int index = leading ? spec.span.min : spec.span.max;
735 final Spec majorSpec = horizontal ? lp.rowSpec : lp.columnSpec;
743 final Spec minorSpec = horizontal ? lp.columnSpec : lp.rowSpec
807 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
915 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1142 Spec spec = horizontal ? params.columnSpec : params.rowSpec; local
1186 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1202 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1555 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1597 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1628 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
1684 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local
2481 Spec spec = (Spec) that; local
2517 public static Spec spec(int start, int size, Alignment alignment, float weight) { method
2528 public static Spec spec(int start, Alignment alignment, float weight) { method
2541 public static Spec spec(int start, int size, float weight) { method
2551 public static Spec spec(int start, float weight) { method
2562 public static Spec spec(int start, int size, Alignment alignment) { method
2580 public static Spec spec(int start, Alignment alignment) { method
2597 public static Spec spec(int start, int size) { method
2613 public static Spec spec(int start) { method
    [all...]
  /external/curl/tests/
sshhelp.pm 28 use File::Spec;
302 my $file = File::Spec->catfile($_, $fn);
319 my $file = File::Spec->catfile($_, $fn);
334 push(@spath, File::Spec->path());
346 push(@hpath, File::Spec->path());
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliteratorRegistry.java 54 * DAG of visible IDs by spec. Hashtable: source => (Hashtable:
72 // class Spec
76 * A Spec is a string specifying either a source or a target. In more
78 * Spec class for sources and targets.
80 * A Spec may be a locale or a script. If it is a locale, it has a
82 * ssss is the script mapping of xx_YY_ZZZ. The Spec API methods
86 * The Spec class canonicalizes itself, so the locale is put into
90 static class Spec {
92 private String top; // top spec
93 private String spec; // current spe field in class:TransliteratorRegistry.Spec
    [all...]

Completed in 1642 milliseconds

1 2 3 4 5 6 7 8