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

1 2 3 4 5 6 7 8 91011>>

  /sdk/rule_api/src/com/android/ide/common/api/
IAttributeInfo.java 21 * the attribute was declared. This must include a format (string, reference, float, etc.),
30 /** An attribute format, e.g. string, reference, float, etc. */
31 public enum Format {
44 * Returns true if and only if this format is in the given array of
49 * format.
51 public boolean in(Format[] formats) {
55 for (Format f : formats) {
69 * Should have at least one format. */
70 public Format[] getFormats();
  /external/icu4c/data/brkitr/
word_ja.txt 31 $Format = [\p{Word_Break = Format}];
52 # Rules 4 Ignore Format and Extend characters,
55 $KatakanaEx = $Katakana ($Extend | $Format)*;
56 $ALetterEx = $ALetterPlus ($Extend | $Format)*;
57 $MidNumLetEx = $MidNumLet ($Extend | $Format)*;
58 $MidLetterEx = $MidLetter ($Extend | $Format)*;
59 $MidNumEx = $MidNum ($Extend | $Format)*;
60 $NumericEx = $Numeric ($Extend | $Format)*;
61 $ExtendNumLetEx = $ExtendNumLet ($Extend | $Format)*;
    [all...]
word.txt 31 $Format = [\p{Word_Break = Format}];
52 # Rules 4 Ignore Format and Extend characters,
55 $KatakanaEx = $Katakana ($Extend | $Format)*;
56 $ALetterEx = $ALetterPlus ($Extend | $Format)*;
57 $MidNumLetEx = $MidNumLet ($Extend | $Format)*;
58 $MidLetterEx = $MidLetter ($Extend | $Format)*;
59 $MidNumEx = $MidNum ($Extend | $Format)*;
60 $NumericEx = $Numeric ($Extend | $Format)*;
61 $ExtendNumLetEx = $ExtendNumLet ($Extend | $Format)*;
    [all...]
word_POSIX.txt 31 $Format = [\p{Word_Break = Format}];
52 # Rules 4 Ignore Format and Extend characters,
55 $KatakanaEx = $Katakana ($Extend | $Format)*;
56 $ALetterEx = $ALetterPlus ($Extend | $Format)*;
57 $MidNumLetEx = $MidNumLet ($Extend | $Format)*;
58 $MidLetterEx = $MidLetter ($Extend | $Format)*;
59 $MidNumEx = $MidNum ($Extend | $Format)*;
60 $NumericEx = $Numeric ($Extend | $Format)*;
61 $ExtendNumLetEx = $ExtendNumLet ($Extend | $Format)*;
    [all...]
sent.txt 20 $Format = [\p{Sentence_Break = Format}];
33 # incorporate trailing Extend or Format chars.
36 $SpEx = $Sp ($Extend | $Format)*;
37 $LowerEx = $Lower ($Extend | $Format)*;
38 $UpperEx = $Upper ($Extend | $Format)*;
39 $OLetterEx = $OLetter ($Extend | $Format)*;
40 $NumericEx = $Numeric ($Extend | $Format)*;
41 $ATermEx = $ATerm ($Extend | $Format)*;
42 $SContinueEx= $SContinue ($Extend | $Format)*;
    [all...]
sent_el.txt 20 $Format = [\p{Sentence_Break = Format}];
33 # incorporate trailing Extend or Format chars.
36 $SpEx = $Sp ($Extend | $Format)*;
37 $LowerEx = $Lower ($Extend | $Format)*;
38 $UpperEx = $Upper ($Extend | $Format)*;
39 $OLetterEx = $OLetter ($Extend | $Format)*;
40 $NumericEx = $Numeric ($Extend | $Format)*;
41 $ATermEx = $ATerm ($Extend | $Format)*;
42 $SContinueEx= $SContinue ($Extend | $Format)*;
    [all...]
  /external/icu4c/i18n/
format.cpp 7 * File FORMAT.CPP
19 // This file was generated from the java source file Format.java
39 /* Format class implementation ---------------------------------------------- */
43 #include "unicode/format.h"
49 // class Format
66 Format::Format()
74 Format::~Format()
81 Format::Format(const Format &that
105 Format::format(const Formattable& obj, function in class:Format
121 Format::format(const Formattable& \/* unused obj *\/, function in class:Format
    [all...]
currfmt.h 56 * Override Format API.
58 virtual UBool operator==(const Format& other) const;
61 * Override Format API.
63 virtual Format* clone() const;
66 using MeasureFormat::format;
69 * Override Format API.
71 virtual UnicodeString& format(const Formattable& obj,
77 * Override Format API.
84 * Override Format API.
  /external/icu4c/i18n/unicode/
format.h 7 * File FORMAT.H
18 // This file was generated from the java source file Format.java
56 * Many of the concrete subclasses of Format employ the notion of
60 * "$#,##0.00;($#,##0.00)", which is a common US English format for
66 * is not inherent to Format classes in general, and is not part of
71 * NumberFormat which allows the user to format different number ranges
74 * MessageFormat is a formatter which utilizes other Format objects to
75 * format a string containing with multiple values. For instance,
82 * the Format cannot format the type of object, otherwise if there i
    [all...]
selfmt.h 37 * object provided to the format method is a string that's matched
43 * <p>The main use case for the select format is gender based inflection.
104 * the form of the participle, uses a select format based on argument 1:</p>
137 * the <code>format</code> method matches no other keyword.
148 * format patterns. <code>SelectFormat</code> preserves these so that you
152 * automatically evaluate the resulting format pattern.
154 * in phrases to define a nested format pattern.</p>
169 * msgFmt->format(args1, 2, result, ignore, status);
184 class U_I18N_API SelectFormat : public Format {
210 * Sets the pattern used by this select format
    [all...]
measfmt.h 18 #include "unicode/format.h"
31 * <p>To format or parse a measure object, first create a formatter
33 * object's format and parse methods.
37 * @see Format
41 class U_I18N_API MeasureFormat : public Format {
  /external/webkit/Source/WebKit/chromium/public/
WebVideoFrame.h 40 enum Format {
60 virtual Format format() const = 0;
  /libcore/luni/src/test/java/libcore/java/text/
OldFormatFieldTest.java 20 import java.text.Format;
24 private class MockFormatField extends Format.Field {
OldFormatTest.java 22 import java.text.Format;
29 private class MockFormat extends Format {
31 public StringBuffer format(Object obj, StringBuffer toAppendTo, method in class:OldFormatTest.MockFormat
50 * java.text.Format#clone() Test of method java.text.Format#clone().
55 Format fm = new MockFormat();
56 Format fmc = (Format) fm.clone();
62 assertEquals("", mf.format(""));
63 assertTrue("It calls an abstract metod format", true)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
Texture.h 49 enum Format { RGBA8, BGRA8 };
50 static PassRefPtr<Texture> create(GraphicsContext3D*, Format, int width, int height);
54 Format format() const { return m_format; } function in class:WebCore::Texture
57 Texture(GraphicsContext3D*, PassOwnPtr<Vector<unsigned int> > tileTextureIds, Format format, int width, int height, int maxTextureSize);
59 Format m_format;
  /external/llvm/tools/llvm-diff/
DiffLog.h 35 /// might be initializing this format.
36 StringRef Format;
41 LogBuilder(Consumer &c, StringRef Format)
42 : consumer(c), Format(Format) {}
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ProgramFragmentFixedFunctionTest.java 60 for (Builder.Format format : Builder.Format.values()) {
65 b.setTexture(env, format, t);
99 assertEquals(Builder.Format.ALPHA, Builder.Format.valueOf("ALPHA"));
100 assertEquals(Builder.Format.LUMINANCE_ALPHA, Builder.Format.valueOf("LUMINANCE_ALPHA"));
101 assertEquals(Builder.Format.RGB, Builder.Format.valueOf("RGB"))
    [all...]
  /external/protobuf/src/google/protobuf/io/
gzip_stream.h 1 // Protocol Buffers - Google's data interchange format
57 // Format key for constructor
58 enum Format {
65 // Simpler zlib stream format.
69 // buffer_size and format may be -1 for default of 64kB and GZIP format
72 Format format = AUTO,
91 Format format_;
111 // Format key for constructo
122 Format format; member in struct:google::protobuf::io::GzipOutputStream::Options
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestAttributeInfo.java 23 private final Format[] mFormats;
33 public TestAttributeInfo(String name, Format[] formats, String definedBy,
56 public Format[] getFormats() {
  /external/bison/src/
system.h 101 /* The __-protected variants of `format' and `printf' attributes
104 # define __format__ format
154 #define obstack_fgrow1(Obs, Format, Arg1) \
157 sprintf (buf, Format, Arg1); \
161 #define obstack_fgrow2(Obs, Format, Arg1, Arg2) \
164 sprintf (buf, Format, Arg1, Arg2); \
168 #define obstack_fgrow3(Obs, Format, Arg1, Arg2, Arg3) \
171 sprintf (buf, Format, Arg1, Arg2, Arg3); \
175 #define obstack_fgrow4(Obs, Format, Arg1, Arg2, Arg3, Arg4) \
178 sprintf (buf, Format, Arg1, Arg2, Arg3, Arg4);
    [all...]
  /external/jhead/
makernote.c 8 // Process exif format directory, as used by Cannon maker note
38 int Tag, Format, Components;
45 Format = Get16u(DirEntry+2);
48 if ((Format-1) >= NUM_FORMATS) {
50 ErrNonfatal("Illegal number format %d for tag %04x", Format, Tag);
59 ByteCount = Components * BytesPerFormat[Format];
86 switch(Format){
115 PrintFormatNumber(ValuePtr, Format, ByteCount);
126 if (Tag == 4 && Format == FMT_USHORT)
    [all...]
gpsinfo.c 77 int format = GpsTags[i].Format; local
78 if (format == 0) {
79 printf("tag %s format not defined", GpsTags[i].Desc);
95 int format = GpsTags[i].Format; local
96 if (format == 0) {
97 printf("tag %s format not defined", GpsTags[i].Desc);
100 return format;
143 unsigned Tag, Format, Components
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
VideoFrameChromium.h 50 enum Format {
70 virtual Format format() const = 0;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/descriptors/
ResourcesDescriptors.java 19 import com.android.ide.common.api.IAttributeInfo.Format;
82 AttributeInfo nameAttrInfo = new AttributeInfo(NAME_ATTR, new Format[] { Format.STRING } );
136 new Format[] { Format.STRING, Format.ENUM }
139 new FlagAttributeDescriptor("format", //$NON-NLS-1$
140 "Format",
142 "The optional format of this resource.",
143 new AttributeInfo("format",
    [all...]
  /frameworks/compile/linkloader/utils/
raw_ostream.h 21 #include <llvm/Support/Format.h>
29 char const * = "", // Format string.
30 ...); // Format variable.

Completed in 688 milliseconds

1 2 3 4 5 6 7 8 91011>>