/external/wpa_supplicant_8/src/eap_peer/ |
eap_peap.c | 200 * @id: EAP identifier for the header 350 * @id: EAP identifier for the header 610 *resp = eap_sm_buildIdentity(sm, hdr->identifier, 1); 647 hdr->identifier); 776 req->identifier, NULL, out_data); 811 nhdr->identifier = req->identifier; 844 "identifier=%d length=%lu", hdr->code, hdr->identifier, 891 rhdr->identifier = hdr->identifier [all...] |
/external/clang/lib/Parse/ |
ParseDeclCXX.cpp | 47 /// 'inline'[opt] 'namespace' identifier attributes[opt] 55 /// 'namespace' identifier '=' qualified-namespace-specifier ';' 86 if (Tok.is(tok::identifier)) { 88 IdentLoc = ConsumeToken(); // eat the identifier. 89 while (Tok.is(tok::coloncolon) && NextToken().is(tok::identifier)) { 108 Diag(Tok, diag::err_expected) << tok::identifier; member in class:tok 127 Diag(Tok, diag::err_expected_either) << tok::identifier << tok::l_brace; 266 if (SS.isInvalid() || Tok.isNot(tok::identifier)) { 273 // Parse identifier. 445 if (SS.isInvalid() || Tok.isNot(tok::identifier)) { 1327 Diag(Tok, diag::err_expected) << tok::identifier; member in class:tok 3688 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; member in class:tok [all...] |
ParseStmt.cpp | 70 /// identifier ':' statement 87 /// 'goto' identifier ';' 123 nextTok.is(tok::identifier) || nextTok.is(tok::star) || 126 nextTok.is(tok::identifier) || 129 nextTok.is(tok::identifier) || 176 case tok::identifier: { 179 // identifier ':' statement 183 // Look up the identifier, and typo-correct it to a keyword if it's not 199 // If the identifier was typo-corrected, try again. 200 if (Tok.isNot(tok::identifier)) 928 Diag(Tok, diag::err_expected) << tok::identifier; member in class:tok 1767 Diag(Tok, diag::err_expected) << tok::identifier; member in class:tok [all...] |
/external/llvm/lib/MC/MCParser/ |
AsmParser.cpp | 231 /// \brief Parse an identifier or string (as a quoted identifier) 232 /// and set \p Res to the identifier contents. 782 case AsmToken::Identifier: { 783 StringRef Identifier; 784 if (parseIdentifier(Identifier)) { 810 Split = std::make_pair(Identifier, VName); 813 Split = Identifier.split('@'); 824 Split = std::make_pair(Identifier, VName); 827 EndLoc = SMLoc::getFromPointer(Identifier.end()) [all...] |
/developers/build/prebuilts/gradle/DrawableTinting/Application/src/main/java/com/example/android/drawabletinting/ |
DrawableTintingFragment.java | 111 * Identifier for state of blend mod spinner in state bundle. 115 * Identifier for state of alpha seek bar in state bundle. 119 * Identifier for state of red seek bar in state bundle. 123 * Identifier for state of green seek bar in state bundle. 127 * Identifier for state of blue seek bar in state bundle.
|
/developers/samples/android/ui/DrawableTinting/Application/src/main/java/com/example/android/drawabletinting/ |
DrawableTintingFragment.java | 111 * Identifier for state of blend mod spinner in state bundle. 115 * Identifier for state of alpha seek bar in state bundle. 119 * Identifier for state of red seek bar in state bundle. 123 * Identifier for state of green seek bar in state bundle. 127 * Identifier for state of blue seek bar in state bundle.
|
/development/samples/browseable/DrawableTinting/src/com.example.android.drawabletinting/ |
DrawableTintingFragment.java | 111 * Identifier for state of blend mod spinner in state bundle. 115 * Identifier for state of alpha seek bar in state bundle. 119 * Identifier for state of red seek bar in state bundle. 123 * Identifier for state of green seek bar in state bundle. 127 * Identifier for state of blue seek bar in state bundle.
|
/external/google-breakpad/src/common/windows/ |
pdb_source_line_writer.h | 58 // The pdb's identifier. For recent pdb files, the identifier consists 62 // the identifier is the pdb's 32-bit signature value, in zero-padded 78 // The PE file's code identifier, which consists of its timestamp 178 // file that is being dumped, along with its code identifier,
|
/external/icu/icu4c/source/common/ |
util.h | 180 * Parse a Unicode identifier from the given string at the given 181 * position. Return the identifier, or an empty string if there 182 * is no identifier. 190 * @return the Unicode identifier, or an empty string if there is 191 * no valid identifier at pos.
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
BlenderInputStream.java | 172 byte[] identifier = new byte[7];
173 int bytesRead = this.readBytes(identifier);
175 throw new BlenderFileException("Error reading header identifier. Only " + bytesRead + " bytes read and there should be 7!");
177 String strIdentifier = new String(identifier);
179 throw new BlenderFileException("Wrong file identifier: " + strIdentifier + "! Should be 'BLENDER'!");
|
/external/wpa_supplicant_8/src/ap/ |
ap_config.h | 25 /* Active Path Selection Protocol Identifier */ 27 /* Active Path Selection Metric Identifier */ 29 /* Congestion Control Mode Identifier */ 31 /* Synchronization Protocol Identifier */ 33 /* Authentication Protocol Identifier */
|
/frameworks/base/core/java/android/view/ |
ViewStructure.java | 29 * Set the identifier for this view. 31 * @param id The view's identifier, as per {@link View#getId View.getId()}. 32 * @param packageName The package name of the view's identifier, or null if there is none. 33 * @param typeName The type name of the view's identifier, or null if there is none. 34 * @param entryName The entry name of the view's identifier, or null if there is none.
|
/frameworks/compile/slang/ |
slang_rs_pragma_handler.cpp | 73 // Identifier { . Identifier } 75 // Identifier: 76 // IDENTIFIER 226 if (PragmaToken.is(clang::tok::identifier))
|
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/ |
javascriptlintrules.py | 100 identifier = token.string 101 if identifier.endswith('_') and not identifier.endswith('__'): 107 namespace = namespaces_info.GetClosurizedNamespace(identifier) 112 if namespace in provided_namespaces or regex.match(identifier): 113 variable = identifier.split('.')[-1] 116 elif not identifier.endswith('__'): 118 for piece in identifier.split('.'): 123 if token.type == Type.IDENTIFIER: 210 next_token.type == Type.IDENTIFIER an [all...] |
/external/clang/lib/Basic/ |
IdentifierTable.cpp | 1 //===--- IdentifierTable.cpp - Hash table for identifier lookup -----------===// 33 TokenID = tok::identifier; 60 /// \brief A simple identifier lookup iterator that represents an 80 // Populate the identifier table with info about keywords for the current 171 Table.get(Keyword, AddResult == KS_Future ? tok::identifier : TokenCode); 233 /// \brief Returns true if the identifier represents a keyword in the 300 /// PrintStats - Print statistics about how well the identifier table is doing 309 // TODO: Figure out maximum times an identifier had to probe for -stats. 318 fprintf(stderr, "\n*** Identifier Table Stats:\n"); 323 fprintf(stderr, "Ave identifier length: %f\n" [all...] |
/external/llvm/lib/Target/X86/AsmParser/ |
X86AsmParser.cpp | 674 bool ParseIntelIdentifier(const MCExpr *&Val, StringRef &Identifier, 683 SMLoc End, unsigned Size, StringRef Identifier, 873 if (Tok.isNot(AsmToken::Identifier)) { 964 Parser.Lex(); // Eat identifier token. [all...] |
/external/v8/src/ |
preparser.h | 47 // typedef Identifier; 66 typedef typename Traits::Type::Identifier IdentifierT; 354 return next == Token::IDENTIFIER || 362 if (peek() == Token::IDENTIFIER && 364 Consume(Token::IDENTIFIER); 371 Expect(Token::IDENTIFIER, ok); 461 // Parses an identifier that is valid for the current scope, in particular it 464 // "arguments" as identifier even in strict mode (this is needed in cases like 469 // Parses an identifier or a strict mode future reserved word, and indicate 475 // Parses an identifier and determines whether or not it is 'get' or 'set' [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/ |
wizard.rb | 135 [ :identifier, /[a-z_]\w*/i ], 164 when :identifier then @text = @scanner.matched 203 when :identifier 211 CONTINUE_TYPES = [ :open, :identifier, :percent, :dot ] 223 when :identifier, :percent, :dot 237 ( @token_type = @tokenizer.next_token ) == :identifier or return nil 251 @token_type == :identifier or return nil
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
CoroutineManager.java | 172 * <p>%REVIEW% We could use an object as the identifier. Not sure 220 * @param thisCoroutine the identifier of this coroutine, so we can 254 * @param thisCoroutine Integer identifier for this coroutine. This is the 256 * @param toCoroutine Integer identifier for the coroutine we wish to 309 * @param thisCoroutine Integer identifier for the coroutine requesting exit. 324 * @param thisCoroutine Integer identifier for the coroutine leaving the set. 325 * @param toCoroutine Integer identifier for the coroutine we wish to
|
/external/clang/include/clang/Lex/ |
Preprocessor.h | 70 assert(Kind != tok::identifier && 75 TokenValue(IdentifierInfo *II) : Kind(tok::identifier), II(II) {} 250 /// \brief Whether the module import expects an identifier next. Otherwise, 377 /// deserializing from PCH, we don't need to deserialize identifier & macros 488 /// preserver the identifier table. However to avoid some duplicate 604 /// \brief Given an identifier, return its latest MacroDirective if it is 625 /// \brief Given an identifier, return the (probably #undef'd) MacroInfo 632 /// \brief Add a directive to the macro directive history for this identifier. 673 /// identifier token. 754 /// or the identifier for an object-like macro [all...] |
/external/ipsec-tools/ |
setup.c | 337 char *identifier, char *key) 340 if (identifier[0]) { 341 remoteconf->idv = strtovchar(identifier); 345 if (strchr(identifier, '.')) { 347 if (strchr(identifier, '@')) { 473 " udppsk <identifier> <pre-shared-key> <port>; \n" 477 " xauthpsk <identifier> <pre-shared-key> \\\n"
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
XMLFilterImpl.java | 342 * @param systemId The system identifier as a fully-qualified URI. 366 * @param publicId The entity's public identifier, or null. 367 * @param systemId The entity's system identifier. 397 * @param publicId The notation's public identifier, or null. 398 * @param systemId The notation's system identifier, or null. 415 * @param publicId The entity's public identifier, or null. 416 * @param systemId The entity's system identifier, or null.
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
AvatarUriUtil.java | 60 * regular local resource avatar (2) or an avatar with a SIM identifier (i.e. SIM background with 167 final String identifier = TextUtils.isEmpty(contactLookupKey) local 169 generatedUri = AvatarUriUtil.fromIdentifier(identifier); 252 final String identifier = local 254 builder.appendQueryParameter(PARAM_IDENTIFIER, identifier); 258 private static Uri fromIdentifier(@NonNull final String identifier) { 263 builder.appendQueryParameter(PARAM_IDENTIFIER, identifier);
|
/external/clang/lib/Serialization/ |
GlobalModuleIndex.cpp | 68 /// \brief Trait used to read the identifier index from the on-disk hash 218 // Wire up the identifier index. 296 // If there's no identifier index, there is nothing we can do. 300 // Look into the identifier index. 349 fprintf(stderr, " %u / %u identifier lookups succeeded (%f%%)\n", 395 /// consider this identifier to be interesting. 478 /// \brief The identifier and whether it is "interesting". 484 // The first bit indicates whether this identifier is interesting. 618 // Handle the identifier table 646 /// \brief Trait used to generate the identifier index as an on-disk has [all...] |
/external/mesa3d/src/glsl/ |
glsl_parser.yy | 62 const char *identifier; 111 %token <identifier> IDENTIFIER TYPE_IDENTIFIER NEW_IDENTIFIER 112 %type <identifier> any_identifier 115 %token <identifier> FIELD_SELECTION 149 %type <identifier> variable_identifier 163 %type <identifier> basic_type_specifier_nonarray 331 IDENTIFIER 365 IDENTIFIER 375 $$->primary_expression.identifier = $1 [all...] |