HomeSort by relevance Sort by last modified time
    Searched full:identifier (Results 651 - 675 of 5290) sorted by null

<<21222324252627282930>>

  /external/clang/lib/AST/
NestedNameSpecifier.cpp 48 assert(II && "Identifier cannot be NULL");
104 assert(II && "Identifier cannot be NULL");
137 return Identifier;
184 case Identifier:
185 // Identifier specifiers always represent dependent types
214 case Identifier:
215 // Identifier specifiers always represent dependent types
234 case Identifier:
260 case Identifier:
337 case NestedNameSpecifier::Identifier
    [all...]
  /external/clang/lib/Parse/
ParseInit.cpp 32 case tok::period: // designator: '.' identifier
50 case tok::identifier:
64 case tok::identifier: // designation: identifier ':'
113 /// [GNU] identifier ':'
121 /// '.' identifier
134 // designation ::= identifier ':'
137 if (Tok.is(tok::identifier)) {
144 SourceLocation NameLoc = ConsumeToken(); // Eat the identifier.
167 // designator: '.' identifier
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
KeySetManagerService.java 263 * Fetches the stable identifier associated with the given KeySet. Returns
339 /* Checks if an identifier refers to a known keyset */
348 * Returns {@code null} if the identifier doesn't
488 * Finds the stable identifier for a KeySet based on a set of PublicKey stable IDs.
503 * Finds the stable identifier for a PublicKey or PUBLIC_KEY_NOT_FOUND.
518 * Gets an unused stable identifier for a KeySet.
660 serializer.attribute(null, "identifier", Long.toString(id));
673 serializer.attribute(null, "identifier", Long.toString(id));
676 serializer.attribute(null, "identifier", Long.toString(keyId));
753 String encodedID = parser.getAttributeValue(null, "identifier");
769 long identifier = Long.parseLong(encodedID); local
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 99 /// nested-name-specifier component of the form 'identifier::'.
104 /// \param Identifier The identifier.
106 /// \param IdentifierLoc The location of the identifier.
109 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
854 /// \brief An identifier.
    [all...]
  /external/clang/include/clang/Basic/
DiagnosticLexKinds.td 58 def ext_dollar_in_identifier : Extension<"'$' in identifier">,
59 InGroup<DiagGroup<"dollar-in-identifier-extension">>;
113 "treating as '\\' followed by identifier">, InGroup<Unicode>;
118 "treating as '\\' followed by identifier">, InGroup<Unicode>;
131 "%select{using this character in an identifier|starting an identifier with "
135 "using this character in an identifier is incompatible with C++98">,
146 "treating as '\\' followed by identifier">, InGroup<Unicode>;
208 "identifier after literal will be treated as a user-defined literal suffix "
211 "identifier after literal will be treated as a reserved user-defined literal
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckMethodAdapter.java 769 * Checks that the given string is a valid Java identifier.
779 * Checks that the given substring is a valid Java identifier.
782 * @param start index of the first character of the identifier (inclusive).
783 * @param end index of the last character of the identifier (exclusive). -1
801 + " (must be a valid Java identifier): " + name);
807 + " (must be a valid Java identifier): " + name);
813 * Checks that the given string is a valid Java identifier or is equal to
830 + " (must be a '<init>', '<clinit>' or a valid Java identifier): "
837 + " (must be '<init>' or '<clinit>' or a valid Java identifier): "
865 * @param start index of the first character of the identifier (inclusive).
    [all...]
  /docs/source.android.com/src/devices/input/
overview.jd 120 <p>A physical scan code is a device-specific identifier that is associated
132 <p>A HID usage is a standard identifier that is used to report the
143 <p>A Linux key code is a standard identifier for a key or button.
157 <p>A Linux relative or absolute axis code is a standard identifier
170 <p>A Linux switch code is a standard identifier for reporting the
181 <p>An Android key code is a standard identifier defined in the Android
197 <p>An Android axis code is a standard identifier defined in the Android
207 <p>An Android meta state is a standard identifier defined in the Android
220 <p>An Android button state is a standard identifier defined in the Android
  /external/mesa3d/src/glsl/
glsl_lexer.ll 58 * - an identifier ...in GLSL < 1.30
69 yylval->identifier = strdup(yytext); \
211 yylval->identifier = strdup(yytext);
212 return IDENTIFIER;
303 return IDENTIFIER;
319 yylval->identifier = strdup(yytext);
320 return IDENTIFIER;
483 yylval->identifier = ralloc_strdup(ctx, yytext);
495 return IDENTIFIER;
  /external/tcpdump/
print-stp.c 150 * 8 - bytes CIST Root Identifier
152 * 8 - bytes CIST Regional Root Identifier
153 * 2 - bytes CIST Port Identifier
160 * 1 - byte Config Identifier
165 * 8 - bytes CIST Bridge Identifier
174 * 1 - byte Aux Config Identifier
184 * 1 - byte (1 - 4) Agreement Digest Format Identifier
186 * 1 - byte (1 - 4) Agreement Digest Convention Identifier
196 * 8 - bytes MSTI Regional Root Identifier
  /frameworks/base/core/java/android/widget/
SimpleCursorTreeAdapter.java 76 * @param collapsedGroupLayout The resource identifier of a layout file that
79 * @param expandedGroupLayout The resource identifier of a layout file that
88 * @param childLayout The resource identifier of a layout file that defines
91 * @param lastChildLayout The resource identifier of a layout file that
117 * @param collapsedGroupLayout The resource identifier of a layout file that
120 * @param expandedGroupLayout The resource identifier of a layout file that
129 * @param childLayout The resource identifier of a layout file that defines
153 * @param groupLayout The resource identifier of a layout file that defines
162 * @param childLayout The resource identifier of a layout file that defines
SimpleExpandableListAdapter.java 70 * @param groupLayout resource identifier of a view layout that defines the
86 * @param childLayout resource identifier of a view layout that defines the
115 * @param expandedGroupLayout resource identifier of a view layout that
118 * @param collapsedGroupLayout resource identifier of a view layout that
134 * @param childLayout resource identifier of a view layout that defines the
164 * @param expandedGroupLayout resource identifier of a view layout that
167 * @param collapsedGroupLayout resource identifier of a view layout that
183 * @param childLayout resource identifier of a view layout that defines the
187 * @param lastChildLayout resource identifier of a view layout that defines
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 40 /// specifiers, each of which can be a namespace, type, identifier
63 /// can be an identifier, a declaration, or a type.
75 /// \brief An identifier, stored as an IdentifierInfo*.
76 Identifier,
113 /// \brief Builds a specifier combining a prefix and an identifier.
116 /// referencing an identifier are only permitted when the identifier
137 /// \brief Builds a specifier that consists of just an identifier.
167 /// \brief Retrieve the identifier stored in this nested name
392 /// nested-name-specifier component of the form 'identifier::'
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ISms.aidl 238 * message identifier and RAN type. The RAN type specify this message ID
240 * enable the same message identifier, they must both disable it for the
243 * @param messageIdentifier Message identifier as specified in TS 23.041 (3GPP) or
257 * message identifier and RAN type. The RAN type specify this message ID
259 * enable the same message identifier, they must both disable it for the
262 * @param messageIdentifier Message identifier as specified in TS 23.041 (3GPP) or
276 * message identifier range and RAN type. The RAN type specify this message ID range
278 * a message identifier range, they must both disable it for the device
281 * @param startMessageId first message identifier as specified in TS 23.041 (3GPP) or
283 * @param endMessageId last message identifier as specified in TS 23.041 (3GPP) o
    [all...]
  /hardware/qcom/audio/legacy/libalsa-intf/
alsa_ucm.c 72 * Create an identifier
101 * identifier - NULL for card list
106 const char *identifier,
112 if (identifier == NULL) {
125 if (!strncmp(identifier, "_verbs", 6)) {
135 } else if (!strncmp(identifier, "_devices", 8)) {
159 } else if (!strncmp(identifier, "_modifiers", 10)) {
183 } else if (!strncmp(identifier, "_enadevs", 8)) {
213 } else if (!strncmp(identifier, "_enamods", 8)) {
244 ALOGE("Invalid identifier: %s", identifier)
    [all...]
  /developers/build/prebuilts/gradle/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 149 * the pointer identifier of this touch from the first index
159 * Store the data under its pointer identifier. The pointer
189 * Store the data under its pointer identifier. The index of
191 * pointer is always identified by the same identifier for this
206 * Extract the pointer identifier for the only event stored in
256 * This identifier is used to keep track of a pointer across
  /developers/samples/android/input/multitouch/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 149 * the pointer identifier of this touch from the first index
159 * Store the data under its pointer identifier. The pointer
189 * Store the data under its pointer identifier. The index of
191 * pointer is always identified by the same identifier for this
206 * Extract the pointer identifier for the only event stored in
256 * This identifier is used to keep track of a pointer across
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.h 62 * Each of these correspond to an ALooper identifier returned by
91 // The identifier of this source. May be LOOPER_ID_MAIN or
190 * is returned as an identifier from ALooper_pollOnce(). The data for this
191 * identifier is a pointer to an android_poll_source structure.
199 * application's window, which is returned as an identifier from
200 * ALooper_pollOnce(). The data for this identifier is a pointer to an
  /development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/
TouchDisplayView.java 149 * the pointer identifier of this touch from the first index
159 * Store the data under its pointer identifier. The pointer
189 * Store the data under its pointer identifier. The index of
191 * pointer is always identified by the same identifier for this
206 * Extract the pointer identifier for the only event stored in
256 * This identifier is used to keep track of a pointer across
  /external/clang/docs/
PCHInternals.rst 228 :ref:`identifier table <pchinternals-ident-table>`.
352 Identifier Table Block
355 The identifier table block contains an on-disk hash table that maps each
356 identifier mentioned within the AST file to the serialized representation of
357 the identifier's information (e.g, the ``IdentifierInfo`` structure). The
360 * The actual identifier string.
361 * Flags that describe whether this identifier is the name of a built-in, a
362 poisoned identifier, an extension token, or a macro.
363 * If the identifier names a macro, the offset of the macro definition within
365 * If the identifier names one or more declarations visible from translatio
    [all...]
  /external/clang/test/Parser/
pragma-loop.cpp 63 /* expected-error {{use of undeclared identifier 'Vec'}} */ #pragma clang loop vectorize_width(Vec) interleave_count(I)
64 /* expected-error {{use of undeclared identifier 'Int'}} */ #pragma clang loop vectorize_width(V) interleave_count(Int)
176 /* expected-error {{use of undeclared identifier 'undefined'}} */ #pragma clang loop vectorize_width(VV+undefined)
180 /* expected-error {{use of undeclared identifier 'badvalue'}} */ #pragma clang loop vectorize_width(badvalue)
181 /* expected-error {{use of undeclared identifier 'badvalue'}} */ #pragma clang loop interleave_count(badvalue)
182 /* expected-error {{use of undeclared identifier 'badvalue'}} */ #pragma clang loop unroll_count(badvalue)
  /external/harfbuzz_ng/src/
hb-ot-layout-gdef-table.hh 110 USHORT caretValueFormat; /* Format identifier--format = 1 */
136 USHORT caretValueFormat; /* Format identifier--format = 2 */
159 USHORT caretValueFormat; /* Format identifier--format = 3 */
194 USHORT format; /* Format identifier */
284 USHORT format; /* Format identifier--format = 1 */
313 USHORT format; /* Format identifier */
  /external/kernel-headers/original/uapi/linux/raid/
md_p.h 121 __u32 md_magic; /* 0 MD identifier */
126 __u32 set_uuid0; /* 5 Raid set identifier */
134 __u32 set_uuid1; /* 13 Raid set identifier #2 */
135 __u32 set_uuid2; /* 14 Raid set identifier #3 */
136 __u32 set_uuid3; /* 15 Raid set identifier #4 */
249 __le32 dev_number; /* permanent identifier of this device - not role in raid */
  /frameworks/data-binding/compiler/src/test/java/android/databinding/
BindingExpressionParserTest.java 161 assertEquals("abcdEfg", primary.identifier().getText());
228 assertEquals("three", expression.Identifier().getText());
231 assertEquals("two", left.Identifier().getText());
233 assertEquals("one", ((PrimaryContext) left.expression()).identifier().getText());
240 assertEquals("one", ((PrimaryContext) expression.left).identifier().getText());
241 assertEquals("two", ((PrimaryContext) expression.right).identifier().getText());
  /libcore/luni/src/main/java/org/xml/sax/
HandlerBase.java 60 * identifier provided in the XML document. This method implements
67 * @param systemId The system identifier provided in the XML
97 * @param publicId The notation public identifier, or null if not
99 * @param systemId The notation system identifier.
116 * @param publicId The entity public identifier, or null if not
118 * @param systemId The entity system identifier.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/raid/
md_p.h 120 __u32 md_magic; /* 0 MD identifier */
125 __u32 set_uuid0; /* 5 Raid set identifier */
133 __u32 set_uuid1; /* 13 Raid set identifier #2 */
134 __u32 set_uuid2; /* 14 Raid set identifier #3 */
135 __u32 set_uuid3; /* 15 Raid set identifier #4 */
243 __le32 dev_number; /* permanent identifier of this device - not role in raid */

Completed in 1062 milliseconds

<<21222324252627282930>>