HomeSort by relevance Sort by last modified time
    Searched full:facet (Results 1 - 25 of 305) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libxml2/result/schemas/
facet-whiteSpace_0_0 1 ./test/schemas/facet-whiteSpace_0.xml validates
facet-unionST-err1_0_0 1 ./test/schemas/facet-unionST-err1_0.xml fails to validate
facet-unionST-err1_0_0.err 1 ./test/schemas/facet-unionST-err1_0.xml:3: element foo: Schemas validity error : Element '{http://FOO}foo': 'tiny' is not a valid value of the union type '{http://FOO}fooType.B'.
decimal-2_1_0.err 1 ./test/schemas/decimal-2_0.xml:12: element val: Schemas validity error : Element 'val': [facet 'minInclusive'] The value '-0.1' is less than the minimum value allowed ('0').
3 ./test/schemas/decimal-2_0.xml:13: element val: Schemas validity error : Element 'val': [facet 'minInclusive'] The value '-1' is less than the minimum value allowed ('0').
decimal-3_1_0.err 1 ./test/schemas/decimal-3_0.xml:12: element val: Schemas validity error : Element 'val': [facet 'totalDigits'] The value '0.123' has more digits than are allowed ('2').
3 ./test/schemas/decimal-3_0.xml:13: element val: Schemas validity error : Element 'val': [facet 'totalDigits'] The value '0.023' has more digits than are allowed ('2').
5 ./test/schemas/decimal-3_0.xml:14: element val: Schemas validity error : Element 'val': [facet 'totalDigits'] The value '123' has more digits than are allowed ('2').
7 ./test/schemas/decimal-3_0.xml:15: element val: Schemas validity error : Element 'val': [facet 'totalDigits'] The value '12.3' has more digits than are allowed ('2').
restriction-enum-1_1_0.err 1 ./test/schemas/restriction-enum-1_0.xml:7: element foo: Schemas validity error : Element 'foo': [facet 'enumeration'] The value 'c' is not an element of the set {'a', 'b', 'd'}.
vdv-first4_0_2.err 1 ./test/schemas/vdv-first4_2.xml:24: element born: Schemas validity error : Element 'born': [facet 'pattern'] The value '2000-01-20Z' is not accepted by the pattern '[^:Z]*'.
  /external/mockftpserver/MockFtpServer/
MockFtpServer.iml 4 <facet type="Spring" name="Spring">
6 </facet>
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
IAutoLauncherStrategy.java 28 * Open Dial Facet.
33 * Open Media Facet.
34 * @param appName open app from media facet.
39 * Open Settings Facet.
40 * @param appName open app from Settings facet.
45 * Open Maps Facet.
46 * @param appName open app from maps facet.
51 * Open Home Facet to select Dial/Media cards.
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
ItemAlignmentFacetHelper.java 35 static int getAlignmentPosition(View itemView, ItemAlignmentFacet.ItemAlignmentDef facet,
39 if (facet.mViewId != 0) {
40 view = itemView.findViewById(facet.mViewId);
45 int alignPos = facet.mOffset;
50 if (facet.mOffsetWithPadding) {
51 if (facet.mOffsetPercent == 0f) {
53 } else if (facet.mOffsetPercent == 100f) {
57 if (facet.mOffsetPercent != ITEM_ALIGN_OFFSET_PERCENT_DISABLED) {
59 : view.getWidth()) * facet.mOffsetPercent) / 100f);
67 if (facet.mOffsetWithPadding)
    [all...]
FacetProvider.java 23 * Queries optional implemented facet.
24 * @param facetClass Facet classes to query, examples are: class of
26 * @return Facet implementation for the facetClass or null if feature not implemented.
  /development/tools/idegen/templates/
android.iml 4 <facet type="android" name="Android">
6 </facet>
  /external/junit/src/main/java/org/junit/validator/
TestClassValidator.java 8 * Validates a single facet of a test class.
14 * Validate a single facet of a test class.
  /external/libcxx/test/libcxx/localization/locales/locale/locale.types/locale.facet/
facet.pass.cpp 12 // class locale::facet
15 // explicit facet(size_t refs = 0);
16 // virtual ~facet();
17 // facet(const facet&) = delete;
18 // void operator=(const facet&) = delete;
27 : public std::locale::facet
31 : std::locale::facet(refs)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/localization/locales/locale/locale.types/locale.facet/
facet.pass.cpp 12 // class locale::facet
15 // explicit facet(size_t refs = 0);
16 // virtual ~facet();
17 // facet(const facet&) = delete;
18 // void operator=(const facet&) = delete;
27 : public std::locale::facet
31 : std::locale::facet(refs)
  /external/libxml2/include/libxml/
xmlschemastypes.h 51 xmlSchemaFacetPtr facet,
55 xmlSchemaValidateFacetWhtsp (xmlSchemaFacetPtr facet,
66 xmlSchemaCheckFacet (xmlSchemaFacetPtr facet,
71 xmlSchemaFreeFacet (xmlSchemaFacetPtr facet);
78 xmlSchemaValidateListSimpleTypeFacet (xmlSchemaFacetPtr facet,
92 xmlSchemaGetFacetValueAsULong (xmlSchemaFacetPtr facet);
95 xmlSchemaFacetPtr facet,
100 xmlSchemaValidateLengthFacetWhtsp(xmlSchemaFacetPtr facet,
  /packages/services/Car/tests/DirectRenderingClusterSample/src/android/car/cluster/sample/
MainClusterActivity.java 51 private HashMap<Button, Facet<?>> mButtonToFacet = new HashMap<>();
52 private SparseArray<Facet<?>> mOrderToFacet = new SparseArray<>();
93 new Facet<>(findViewById(R.id.btn_nav), 0, NavigationFragment.class),
94 new Facet<>(findViewById(R.id.btn_phone), 1, PhoneFragment.class),
95 new Facet<>(findViewById(R.id.btn_music), 2, MusicFragment.class),
96 new Facet<>(findViewById(R.id.btn_car_info), 3, CarInfoFragment.class));
139 private void registerFacets(Facet<?>... facets) {
140 for (Facet<?> f : facets) {
145 private <T> void registerFacet(Facet<T> facet) {
    [all...]
  /external/libxml2/test/schemas/
facet-unionST-err1_0.xml 3 xsi:schemaLocation="http://FOO facet-unionST-err1_0.xsd">tiny</foo>
facet-whiteSpace_0.xml 4 xsi:schemaLocation="http://FOO facet-whiteSpace_0.xsd">hmmm
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
locale_classes.tcc 91 * @brief Test for the presence of a facet.
94 * has_facet tests the locale argument for the presence of the facet type
95 * provided as the template parameter. Facets derived from the facet
98 * @tparam _Facet The facet type to test the presence of.
100 * @return true if @p __loc contains a facet of type _Facet, else false.
107 const locale::facet** __facets = __loc._M_impl->_M_facets;
117 * @brief Return a facet.
120 * use_facet looks for and returns a reference to a facet of type Facet
121 * where Facet is the template parameter. If has_facet(locale) is true
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
locale_classes.tcc 91 * @brief Test for the presence of a facet.
94 * has_facet tests the locale argument for the presence of the facet type
95 * provided as the template parameter. Facets derived from the facet
98 * @tparam _Facet The facet type to test the presence of.
100 * @return true if @p __loc contains a facet of type _Facet, else false.
107 const locale::facet** __facets = __loc._M_impl->_M_facets;
117 * @brief Return a facet.
120 * use_facet looks for and returns a reference to a facet of type Facet
121 * where Facet is the template parameter. If has_facet(locale) is true
    [all...]
  /development/samples/devbytes/telephony/SmsSampleProject/
SmsSampleProject.iml 4 <facet type="java-gradle" name="Java-Gradle">
9 </facet>
  /external/walt/android/WALT/
WALT.iml 4 <facet type="java-gradle" name="Java-Gradle">
9 </facet>
  /external/clang/test/SemaTemplate/
crash-10438657.cpp 5 class collate : public locale::facet {
  /external/swiftshader/third_party/LLVM/test/CodeGen/Alpha/
2006-04-04-zextload.ll 6 %struct._Impl = type { i32, %struct.facet**, i64, %struct.facet**, i8** }
8 %"struct.__codecvt_abstract_base<char,char,__mbstate_t>" = type { %struct.facet }
10 %struct.facet = type { i32 (...)**, i32 }

Completed in 3830 milliseconds

1 2 3 4 5 6 7 8 91011>>