HomeSort by relevance Sort by last modified time
    Searched refs:tok (Results 151 - 175 of 347) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 141 bool HandleFirstTokOnLine(Token &Tok);
155 const Token &Tok) {
156 return ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok);
438 bool PrintPPOutputPPCallbacks::HandleFirstTokOnLine(Token &Tok) {
441 if (!MoveToLine(Tok.getLocation()))
446 unsigned ColNo = SM.getExpansionColumnNumber(Tok.getLocation());
454 if (ColNo <= 1 && Tok.is(tok::hash))
502 while (PragmaTok.isNot(tok::eod)) {
515 static void PrintPreprocessedTokens(Preprocessor &PP, Token &Tok,
    [all...]
  /external/jdiff/src/jdiff/
Diff.java 70 String tok = st.nextToken(); local
72 if (tok.compareTo("<") == 0) {
73 tag = tok;
76 tok = st.nextToken();
77 char ch = tok.charAt(0);
80 tag += tok;
86 docList.add(tok);
90 if (tok.compareTo(">") == 0) {
92 tag += tok;
95 tag += tok;
    [all...]
  /external/tcpdump/
print-lspping.c 83 static const struct tok lspping_msg_type_values[] = {
89 static const struct tok lspping_reply_mode_values[] = {
97 static const struct tok lspping_return_code_values[] = {
142 static const struct tok lspping_tlv_values[] = {
164 static const struct tok lspping_tlvtargetfec_subtlv_values[] = {
453 static const struct tok lspping_tlv_downstream_addr_values[] = {
    [all...]
print-bgp.c 68 static struct tok bgp_msg_values[] = {
152 static struct tok bgp_attr_values[] = {
179 static struct tok bgp_as_path_segment_open_values[] = {
187 static struct tok bgp_as_path_segment_close_values[] = {
199 static struct tok bgp_opt_values[] = {
213 static struct tok bgp_capcode_values[] = {
232 static struct tok bgp_notify_major_values[] = {
245 static struct tok bgp_notify_minor_cease_values[] = {
256 static struct tok bgp_notify_minor_msg_values[] = {
263 static struct tok bgp_notify_minor_open_values[] =
    [all...]
print-ppp.c 68 struct tok ppptype2str[] = {
132 struct tok cpcodes[] = {
246 const struct tok ccpconfopts_values[] = {
269 const struct tok bacconfopts_values[] = {
287 struct tok ipcpopt_values[] = {
302 struct tok ipcpopt_compproto_values[] = {
308 struct tok ipcpopt_compproto_subopt_values[] = {
317 struct tok ip6cpopt_values[] = {
336 struct tok authalg_values[] = {
361 struct tok ppp_callback_values[] =
    [all...]
print-krb.c 74 static struct tok type2str[] = {
87 static struct tok kerr2str[] = {
print-pppoe.c 54 static struct tok pppoecode2str[] = {
78 static struct tok pppoetag2str[] = {
print-sll.c 44 const struct tok sll_pkttype_values[] = {
print-olsr.c 79 static struct tok olsr_msg_values[] = {
127 static struct tok olsr_link_type_values[] = {
135 static struct tok olsr_neighbor_type_values[] = {
netdissect.h 68 struct tok { struct
74 extern const char *tok2strbuf(const struct tok *, const char *, int,
78 extern const char *tok2str(const struct tok *, const char *, int);
79 extern char *bittok2str(const struct tok *, const char *, int);
224 extern const char *tok2str(const struct tok *, const char *, int);
  /external/bison/src/
graphviz.c 145 print_token (struct obstack *out, bool first, char const *tok)
147 char const *q = escape (tok);
  /external/iptables/extensions/
libxt_hashlimit.c 216 char *tok; local
222 for (tok = strtok(arg, ",|");
223 tok;
224 tok = strtok(NULL, ",|")) {
225 if (!strcmp(tok, "dstip"))
227 else if (!strcmp(tok, "srcip"))
229 else if (!strcmp(tok, "srcport"))
231 else if (!strcmp(tok, "dstport"))
  /external/ant-glob/src/org/apache/tools/ant/types/selectors/
SelectorUtils.java 579 String tok = path.substring(start, pos); local
580 l[count++] = tok;
586 String tok = path.substring(start); local
587 l[count/*++*/] = tok;
  /external/bison/examples/calc++/
calc++-parser.hh 138 /// \param tok the lookahead token.
139 virtual std::string yysyntax_error_ (int yystate, int tok);
  /external/clang/lib/Sema/
SemaAttr.cpp 366 void Sema::ActOnPragmaFPContract(tok::OnOffSwitch OOS) {
368 case tok::OOS_ON:
371 case tok::OOS_OFF:
374 case tok::OOS_DEFAULT:
  /external/qemu/android/
config.c 262 int tok = _lex(cs, value);
263 printf("TOKEN(%d) %s %s\n", value, TOKENNAMES[tok],
264 tok == T_TEXT ? cs->text : "");
265 return tok;
  /external/apache-http/src/org/apache/http/conn/ssl/
AbstractVerifier.java 231 String tok = st.nextToken(); local
232 int x = tok.indexOf("CN=");
234 cnList.add(tok.substring(x + 3));
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java 299 String tok = ((String) m_ops.m_tokenQueue.elementAt(pos - 1)); local
301 b = (tok.length() == 1) ? (tok.charAt(0) == c) : false;
446 String tok; local
451 tok = (String) m_ops.m_tokenQueue.elementAt(relative);
455 tok = null;
458 return tok;
713 int tok; local
723 tok = ((Integer) id).intValue();
727 tok = -1
    [all...]
  /external/icu4c/common/
uvectr32.cpp 298 void UVector32::sortedInsert(int32_t tok, UErrorCode& ec) {
299 // Perform a binary search for the location to insert tok at. Tok
301 // tok && tok < b, where there is a 'virtual' elements[-1] always
302 // less than tok and a 'virtual' elements[count] always greater
303 // than tok.
307 //int8_t c = (*compare)(elements[probe], tok);
309 if (elements[probe] > tok) {
320 elements[min] = tok;
    [all...]
  /hardware/ril/rild/
rild.c 72 char * tok; local
75 while ((tok = strtok(s, " \0"))) {
76 argv[count] = tok;
  /external/clang/lib/Lex/
PPLexerChange.cpp 159 void Preprocessor::EnterMacro(Token &Tok, SourceLocation ILEnd,
163 TokLexer = new TokenLexer(Tok, ILEnd, Macro, Args, *this);
166 TokLexer->Init(Tok, ILEnd, Macro, Args);
273 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
333 CurLexer->FormTokenWithChars(Result, EndPos, tok::eof);
449 void Preprocessor::HandleMicrosoftCommentPaste(Token &Tok) {
478 if (!HandleEndOfTokenLexer(Tok)) Lex(Tok);
486 while (Tok.isNot(tok::eod) && Tok.isNot(tok::eof)
    [all...]
Preprocessor.cpp 190 void Preprocessor::DumpToken(const Token &Tok, bool DumpFlags) const {
191 llvm::errs() << tok::getTokenName(Tok.getKind()) << " '"
192 << getSpelling(Tok) << "'";
197 if (Tok.isAtStartOfLine())
199 if (Tok.hasLeadingSpace())
201 if (Tok.isExpandDisabled())
203 if (Tok.needsCleaning()) {
204 const char *Start = SourceMgr.getCharacterData(Tok.getLocation());
205 llvm::errs() << " [UnClean='" << StringRef(Start, Tok.getLength()
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 63 tok::TokenKind Kind;
67 TokenValue(tok::TokenKind Kind) : Kind(Kind), II(0) {
68 assert(Kind != tok::raw_identifier && "Raw identifiers are not supported.");
69 assert(Kind != tok::identifier &&
71 assert(!tok::isLiteral(Kind) && "Literals are not supported.");
72 assert(!tok::isAnnotation(Kind) && "Annotations are not supported.");
74 TokenValue(IdentifierInfo *II) : Kind(tok::identifier), II(II) {}
75 bool operator==(const Token &Tok) const {
76 return Tok.getKind() == Kind &&
77 (!II || II == Tok.getIdentifierInfo())
    [all...]
  /external/linux-tools-perf/
builtin-script.c 560 char *tok; local
574 tok = strchr(str, ':');
575 if (tok) {
576 *tok = '\0';
577 tok++;
600 tok = str;
618 tok = strtok(tok, ",");
619 while (tok) {
621 if (strcmp(tok, all_output_options[i].str) == 0
    [all...]
builtin-kmem.c 619 static int sort_dimension__add(const char *tok, struct list_head *list)
625 if (!strcmp(avail_sorts[i]->name, tok)) {
640 char *tok; local
647 tok = strsep(&str, ",");
648 if (!tok)
650 if (sort_dimension__add(tok, sort_list) < 0) {
651 error("Unknown --sort key: '%s'", tok);

Completed in 1916 milliseconds

1 2 3 4 5 67 8 91011>>