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

1 2 3 4 5 6 7 8 91011>>

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
SLConfigDescriptor.java 27 * bit(8) predefined;
28 * if (predefined==0) {
61 int predefined; field in class:SLConfigDescriptor
64 return predefined;
67 public void setPredefined(int predefined) {
68 this.predefined = predefined;
73 predefined = IsoTypeReader.readUInt8(bb);
84 IsoTypeWriter.writeUInt8(out, predefined);
92 sb.append("{predefined=").append(predefined);
    [all...]
  /external/clang/test/Sema/
predef.c 8 char *X = __func__; // expected-warning {{predefined identifier is only valid}} \
16 const char *b = __func__; // expected-warning {{predefined identifier is only valid}}
17 const char *c = __FUNCTION__; // expected-warning {{predefined identifier is only valid}}
18 const char *d = __PRETTY_FUNCTION__; // expected-warning {{predefined identifier is only valid}}
ms_wide_predefined_expr.cpp 4 // Wide character predefined identifiers
  /libcore/luni/src/main/java/java/security/spec/
ECGenParameterSpec.java 24 // Standard (or predefined) name for EC domain
30 * predefined name of the to-be-generated domain parameter.
43 * Returns the name (standard or predefined) of the to-be-generated elliptic
MGF1ParameterSpec.java 31 * The predefined MGF1 parameter specification with an "SHA-1" message
38 * The predefined MGF1 parameter specification with an "SHA-256" message
45 * The predefined MGF1 parameter specification with an "SHA-384" message
52 * The predefined MGF1 parameter specification with an "SHA-512" message
  /dalvik/vm/mterp/mips/
OP_FILL_ARRAY_DATA.S 11 JAL(dvmInterpHandleFillArrayData) # fill the array with predefined data
  /frameworks/compile/mclinker/include/mcld/
AttributeOption.h 24 const Attribute& predefined() const { return m_Predefined; } function in class:mcld::AttributeOption
25 Attribute& predefined() { return m_Predefined; } function in class:mcld::AttributeOption
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
VisualSampleEntry.java 72 private long[] predefined = new long[3]; field in class:VisualSampleEntry
141 predefined[0] = IsoTypeReader.readUInt32(content); // should be zero
142 predefined[1] = IsoTypeReader.readUInt32(content); // should be zero
143 predefined[2] = IsoTypeReader.readUInt32(content); // should be zero
186 IsoTypeWriter.writeUInt32(byteBuffer, predefined[0]);
187 IsoTypeWriter.writeUInt32(byteBuffer, predefined[1]);
188 IsoTypeWriter.writeUInt32(byteBuffer, predefined[2]);
  /external/skia/src/sfnt/
SkOTUtils.cpp 65 const SkOTTableNameRecord::NameID::Predefined::Value namesToCreate[] = {
66 SkOTTableNameRecord::NameID::Predefined::FontFamilyName,
67 SkOTTableNameRecord::NameID::Predefined::FontSubfamilyName,
68 SkOTTableNameRecord::NameID::Predefined::UniqueFontIdentifier,
69 SkOTTableNameRecord::NameID::Predefined::FullFontName,
70 SkOTTableNameRecord::NameID::Predefined::PostscriptName,
130 nameRecords[i].nameID.predefined.value = namesToCreate[i];
  /frameworks/compile/libbcc/lib/Support/
TargetLinkerConfigs.cpp 50 // set up the predefined attributes
51 getLDConfig()->attribute().predefined().unsetWholeArchive();
52 getLDConfig()->attribute().predefined().setDynamic();
92 // set up the predefined attributes
93 getLDConfig()->attribute().predefined().unsetWholeArchive();
94 getLDConfig()->attribute().predefined().setDynamic();
125 // set up the predefined attributes
126 getLDConfig()->attribute().predefined().unsetWholeArchive();
127 getLDConfig()->attribute().predefined().setDynamic();
167 // set up the predefined attribute
    [all...]
  /frameworks/compile/mclinker/tools/mcld/lib/Support/
TargetLinkerConfigs.cpp 42 // set up the predefined attributes
43 getLDConfig()->attribute().predefined().unsetWholeArchive();
44 getLDConfig()->attribute().predefined().setDynamic();
84 // set up the predefined attributes
85 getLDConfig()->attribute().predefined().unsetWholeArchive();
86 getLDConfig()->attribute().predefined().setDynamic();
117 // set up the predefined attributes
118 getLDConfig()->attribute().predefined().unsetWholeArchive();
119 getLDConfig()->attribute().predefined().setDynamic();
159 // set up the predefined attribute
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/include/support/win32/
limits_win32.h 35 // predefined by MinGW GCC
48 // predefined by MinGW GCC
61 // predefined by MinGW GCC
  /dalvik/vm/mterp/armv5te/
OP_FILL_ARRAY_DATA.S 10 bl dvmInterpHandleFillArrayData@ fill the array with predefined data
  /external/chromium/chrome/browser/renderer_host/
gtk_key_bindings_handler.h 27 // matches a predefined key binding, corresponding signal will be emitted.
35 // See webkit/glue/editor_client_impl.cc for key bindings predefined in our
42 // Matches a key event against predefined gtk key bindings, false will be
43 // returned if the key event doesn't correspond to a predefined key binding.
  /external/icu4c/common/unicode/
platform.h 36 * and/or from other macros that are predefined by the compiler
43 * Note: Some compilers provide ways to show the predefined macros.
45 * print the predefined macros with
60 * Solution: #define any defines for non @internal API here, so that they are visible in the docs. If you just set PREDEFINED in Doxyfile.in, they won't be documented.
134 /* Use the predefined value. */
203 /* Use the predefined value. */
218 /* Use the predefined value. */
232 /* Use the predefined value. */
245 /* Use the predefined value. */
258 /* Use the predefined value. *
    [all...]
  /external/icu4c/i18n/unicode/
upluralrules.h 31 * Keywords: ICU locale data has 6 predefined values -
36 * predefined rules, see the CLDR page at
74 * Opens a new UPluralRules object using the predefined cardinal-number plural rules for a
86 * Opens a new UPluralRules object using the predefined plural rules for a
gender.h 40 * Provides access to the predefined GenderInfo object for a given
47 * @return The predefined <code>GenderInfo</code> object pointer for
  /libcore/luni/src/test/java/tests/security/interfaces/
DSAPublicKeyTest.java 33 * Case 1: check with predefined p, q, g, x
43 // Case 1: check with predefined p, q, g, x
  /external/clang/include/clang/Basic/
LangOptions.def 96 LANGOPT(Optimize , 1, 0, "__OPTIMIZE__ predefined macro")
97 LANGOPT(OptimizeSize , 1, 0, "__OPTIMIZE_SIZE__ predefined macro")
98 LANGOPT(Static , 1, 0, "__STATIC__ predefined macro (as opposed to __DYNAMIC__)")
104 LANGOPT(NoInlineDefine , 1, 0, "__NO_INLINE__ predefined macro")
105 LANGOPT(Deprecated , 1, 0, "__DEPRECATED predefined macro")
106 LANGOPT(FastMath , 1, 0, "__FAST_MATH__ predefined macro")
107 LANGOPT(FiniteMathOnly , 1, 0, "__FINITE_MATH_ONLY__ predefined macro")
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExtensionNamespacesManager.java 40 * Vector of ExtensionNamespaceSupport objects for predefined ExtensionNamespaces. Elements
53 * objects is created, one for each predefined extension namespace.
64 * If it is a predefined namespace, create a
139 * For any extension namespace that is not either predefined or defined
206 * Set up a Vector for predefined extension namespaces.
227 lang = "javaclass"; // for remaining predefined extension namespaces.
  /frameworks/compile/mclinker/lib/MC/
InputFactory.cpp 22 m_pAttrSet = new AttributeSet(16, pConfig.attribute().predefined());
24 pConfig.attribute().predefined(),
  /libcore/luni/src/main/java/javax/net/ssl/
X509ExtendedKeyManager.java 46 * no engine is predefined.
66 * no engine is predefined.
  /external/sepolicy/
app.te 2 # Domains for apps that do not run with one of the predefined
  /external/skia/include/core/
SkAnnotation.h 59 * Experimental collection of predefined Keys into the Annotation dictionary
  /external/skia/include/views/
SkOSMenu.h 69 * Helper functions for predefined types
125 * Create predefined items with the given parameters. To be used with the
146 * some predefined types
163 * a predefined item type and retrieve the corresponding state information.

Completed in 1945 milliseconds

1 2 3 4 5 6 7 8 91011>>