HomeSort by relevance Sort by last modified time
    Searched defs:standard (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /cts/tests/tests/text/src/android/text/style/cts/
AlignmentSpan_StandardTest.java 25 import android.text.style.AlignmentSpan.Standard;
31 * Test {@link Standard}.
38 new Standard(Alignment.ALIGN_CENTER);
40 Standard standard = new Standard(Alignment.ALIGN_NORMAL); local
43 standard.writeToParcel(p, 0);
45 new Standard(p);
53 Standard standard = new Standard(Alignment.ALIGN_NORMAL) local
65 Standard standard = new Standard(Alignment.ALIGN_NORMAL); local
71 Standard standard = new Standard(Alignment.ALIGN_NORMAL); local
82 Standard standard = new Standard(p); local
93 Standard standard = new Standard(p); local
104 Standard standard = new Standard(p); local
    [all...]
LeadingMarginSpan_StandardTest.java 25 import android.text.style.LeadingMarginSpan.Standard;
35 new Standard(1, 2);
36 new Standard(3);
37 new Standard(-1, -2);
38 new Standard(-3);
40 Standard standard = new Standard(10, 20); local
43 standard.writeToParcel(p, 0);
45 new Standard(p)
56 Standard standard = new LeadingMarginSpan.Standard(first, rest); local
67 Standard standard = new LeadingMarginSpan.Standard(10); local
73 Standard standard = new Standard(1); local
79 Standard standard = new Standard(1); local
90 Standard standard = new Standard(p); local
102 Standard standard = new Standard(p); local
    [all...]
TabStopSpan_StandardTest.java 24 import android.text.style.TabStopSpan.Standard;
34 new TabStopSpan.Standard(3);
36 new TabStopSpan.Standard(-3);
41 Standard standard = new Standard(3); local
42 assertEquals(3, standard.getTabStop());
44 standard = new Standard(-4);
45 assertEquals(-4, standard.getTabStop())
    [all...]
  /external/skia/src/gpu/gl/win/
GrGLCreateNativeInterface_win.cpp 80 GrGLStandard standard = GrGLGetStandardInUseFromString(verStr); local
82 if (kGLES_GrGLStandard == standard) {
84 } else if (kGL_GrGLStandard == standard) {
  /external/fmtlib/support/
travis-build.py 81 standard = os.environ['STANDARD'] variable
92 if standard != '0x':
94 '-DCMAKE_CXX_FLAGS=-std=c++' + standard, '-DFMT_USE_CPP11=OFF'
115 check_call(['cmake', '-DCMAKE_CXX_FLAGS=-std=c++' + standard,
  /external/skia/src/gpu/gl/
GrGLAssembleInterface.cpp 29 GrGLStandard standard = GrGLGetStandardInUseFromString(verStr); local
31 if (kGLES_GrGLStandard == standard) {
33 } else if (kGL_GrGLStandard == standard) {
    [all...]
GrGLContext.h 28 GrGLStandard standard() const { return fInterface->fStandard; } function in class:GrGLContextInfo
GrGLCaps.cpp 21 fStandard = ctxInfo.standard();
66 GrGLStandard standard = ctxInfo.standard(); local
73 if (kGLES_GrGLStandard == standard) {
77 SkASSERT(kGL_GrGLStandard == standard);
89 if (kGL_GrGLStandard == standard) {
104 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
107 if (kGL_GrGLStandard == standard) {
115 if (kGL_GrGLStandard == standard) {
125 if (kGL_GrGLStandard == standard) {
690 GrGLStandard standard = ctxInfo.standard(); local
1488 GrGLStandard standard = ctxInfo.standard(); local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
stdnmtst.c 39 static int dotestname(const char *name, const char *standard, const char *expected) {
46 tag = ucnv_getStandardName(name, standard, &error);
48 log_err_status(error, "FAIL: could not find %s standard name for %s\n", standard, name);
51 log_err("FAIL: expected %s for %s standard name for %s, got %s\n", expected, standard, name, tag);
67 const char *standard; local
70 standard = ucnv_getStandard(i, &err);
74 } else if (!standard || !*standard) {
    [all...]
  /external/libopus/celt/dump_modes/
dump_modes.c 77 int standard, framerate; local
80 standard = (mode->Fs == 400*(opus_int32)mode->shortMdctSize);
83 if (!standard)
104 if (!standard)
234 if (standard)
244 if (standard)
  /external/guice/extensions/struts2/lib/
jsp-api-2.1.jar 
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/
FlexibleScalarStylesInJavaBeanTest.java 82 Set<Property> standard = super.getProperties(type); local
84 sorted.addAll(standard);
121 NodeTuple standard = super.representJavaBeanProperty(javaBean, property, local
126 SequenceNode n = (SequenceNode) standard.getValueNode();
127 return new NodeTuple(standard.getKeyNode(), new SequenceNode(n.getTag(),
135 ScalarNode n = (ScalarNode) standard.getValueNode();
136 return new NodeTuple(standard.getKeyNode(), new ScalarNode(n.getTag(),
140 return standard;
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
MediaSizeUtils.java 38 /** The media size standard for all media sizes no standard is defined for */
57 * Get the standard the {@link MediaSize} belongs to.
62 * @return The standard the {@link MediaSize} belongs to
80 Integer standard = sMediaSizeToStandardMap.get(mediaSize); local
81 return (standard != null) ? standard : sMediaSizeStandardIso;
85 * Comparator for ordering standard media sizes. The ones for the current
86 * standard go to the top and the ones for the other standards follow grouped
87 * by standard. Media sizes of the same standard are ordered alphabetically
    [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTextureGL_test.cpp 583 android_native_rect_t standard = {10, 20, 330, 200}; local
584 ASSERT_EQ(OK, native_window_set_crop(mANW.get(), &standard));
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
Spiller.cpp 32 enum SpillerName { trivial, standard, inline_ }; enumerator in enum:__anon31198::SpillerName
37 cl::desc("Spiller to use: (default: standard)"),
40 clEnumVal(standard, "default spiller"),
43 cl::init(standard));
238 case standard: return new StandardSpiller(pass, mf, vrm);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/shaping/
ArabicShapingRegTest.java 60 public static final int STANDARD = 0;
64 public static TestData standard(String source, int flags, String result) { method in class:ArabicShapingRegTest.TestData
65 return new TestData(STANDARD, source, flags, result, 0, null);
85 private static final String[] typenames = { "standard", "preflight", "error" };
204 TestData.standard(lamAlefSpecialVLTR,
213 TestData.standard(lamAlefSpecialVLTR,
222 TestData.standard(lamAlefSpecialVLTR,
231 TestData.standard(lamAlefSpecialVLTR,
241 TestData.standard(lamAlefSpecialVLTR,
250 TestData.standard(lamAlefSpecialVLTR
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/shaping/
ArabicShapingRegTest.java 59 public static final int STANDARD = 0;
63 public static TestData standard(String source, int flags, String result) { method in class:ArabicShapingRegTest.TestData
64 return new TestData(STANDARD, source, flags, result, 0, null);
84 private static final String[] typenames = { "standard", "preflight", "error" };
203 TestData.standard(lamAlefSpecialVLTR,
212 TestData.standard(lamAlefSpecialVLTR,
221 TestData.standard(lamAlefSpecialVLTR,
230 TestData.standard(lamAlefSpecialVLTR,
240 TestData.standard(lamAlefSpecialVLTR,
249 TestData.standard(lamAlefSpecialVLTR
    [all...]
  /frameworks/av/media/libstagefright/foundation/
ColorUtils.cpp 60 // NOTE: there is no close match to the matrix used by standard film, chose closest
116 int32_t standard,
119 if (sStandards.map((ColorStandard)standard, &res)) {
128 if (standard >= (int32_t)kColorStandardVendorStart) {
133 if (standard >= start && standard < start + numPrimaries * numCoeffs) {
134 int32_t product = standard - start;
231 int32_t range, int32_t standard, int32_t transfer, ColorAspects &aspects) {
234 standard, &aspects.mPrimaries, &aspects.mMatrixCoeffs);
241 const ColorAspects &aspects, int32_t *range, int32_t *standard, int32_t *transfer)
498 ColorStandard standard = kColorStandardBT709; local
553 int32_t range, standard, transfer; local
579 int32_t range = 0, standard = 0, transfer = 0; local
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
DomTest.java 84 + " <name a:standard=\"strawberry\" deluxe=\"&sp;\">Waffles</name>\n"
107 private Attr standard; field in class:DomTest
150 standard = name.getAttributeNode("a:standard");
178 itemXmlnsA, name, standard, deluxe, waffles, description,
214 assertEquals("http://addons", standard.lookupNamespaceURI("a"));
246 assertEquals("http://food", standard.lookupNamespaceURI(null));
284 assertEquals("a", standard.lookupPrefix("http://addons"));
328 assertEquals(null, standard.lookupPrefix("http://usda"));
360 assertTrue(standard.isDefaultNamespace("http://food"))
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsUsageMonitor.java 84 /** Return value from {@link #checkDestination} for standard rate (non-premium) short codes. */
162 /** XML attribute for the standard rate short code regex pattern. */
163 private static final String ATTR_STANDARD = "standard";
333 String standard = parser.getAttributeValue(null, ATTR_STANDARD); local
334 return new ShortCodePatternMatcher(pattern, premium, free, standard);
  /hardware/qcom/msm8994/kernel-headers/media/
msm_vpu.h 136 struct vpu_ctrl_standard standard; member in union:vpu_control::control_data
  /hardware/qcom/msm8994/original-kernel-headers/media/
msm_vpu.h 13 * VPU uses standard V4L2 buffer flags, and defines some custom
83 * Standard V4L2 formats, defined in videodev2.h :
198 * Standard VPU Controls
254 struct vpu_ctrl_standard standard; member in union:vpu_control::control_data
267 * IDs for standard controls (use in control_id field of struct vpu_control)
275 * VPU_CTRL_ANAMORPHIC_SCALING: anamorphic scaling config, data: standard,
279 * data: standard, value: [0, 100] (step in increments of 1).
  /hardware/qcom/msm8996/kernel-headers/media/
msm_vpu.h 136 struct vpu_ctrl_standard standard; member in union:vpu_control::control_data
  /hardware/qcom/msm8996/original-kernel-headers/media/
msm_vpu.h 13 * VPU uses standard V4L2 buffer flags, and defines some custom
83 * Standard V4L2 formats, defined in videodev2.h :
198 * Standard VPU Controls
254 struct vpu_ctrl_standard standard; member in union:vpu_control::control_data
267 * IDs for standard controls (use in control_id field of struct vpu_control)
275 * VPU_CTRL_ANAMORPHIC_SCALING: anamorphic scaling config, data: standard,
279 * data: standard, value: [0, 100] (step in increments of 1).
  /hardware/qcom/msm8x84/kernel-headers/media/
msm_vpu.h 131 struct vpu_ctrl_standard standard; member in union:vpu_control::control_data

Completed in 1349 milliseconds

1 2 3 4 5 6