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

1 2

  /external/javassist/src/main/javassist/compiler/ast/
Keyword.java 21 * Keyword.
23 public class Keyword extends ASTree {
26 public Keyword(int token) {
Visitor.java 46 public void atKeyword(Keyword n) throws CompileError {}
  /external/markdown/markdown/
inlinepatterns.py 123 Keyword arguments:
145 Keyword arguments:
  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
windows_types.h 120 IN NDIS_HANDLE ConfigurationHandle, IN PNDIS_STRING Keyword, IN NDIS_PARAMETER_TYPE ParameterType );
122 IN PNDIS_STRING Keyword, IN PNDIS_CONFIGURATION_PARAMETER ParameterValue );
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 45 /// \brief Priority for a language keyword (that isn't any of the other
204 /// \brief Code completion occurred after the "enum" keyword, to indicate
207 /// \brief Code completion occurred after the "union" keyword, to indicate
210 /// \brief Code completion occurred after the "struct" or "class" keyword,
334 /// match the code-completion string, typically a keyword or the name of a
655 RK_Keyword, ///< Refers to a keyword or symbol.
665 /// \brief When Kind == RK_Keyword, the string representing the keyword
667 const char *Keyword;
730 /// \brief Build a result that refers to a keyword or symbol.
731 CodeCompletionResult(const char *Keyword, unsigned Priority = CCP_Keyword
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
lex.c 40 typedef struct Keyword {
44 } Keyword;
46 Keyword keywords[] ={ /* keep sorted: binary searched */
437 int binsearch(char *w, Keyword *kp, int n)
457 Keyword *kp;
  /external/protobuf/editors/
proto.vim 53 syn keyword pbTodo contained TODO FIXME XXX
56 syn keyword pbSyntax syntax import option
57 syn keyword pbStructure package message group
58 syn keyword pbRepeat optional required repeated
59 syn keyword pbDefault default
60 syn keyword pbExtend extend extensions to max
61 syn keyword pbRPC service rpc returns
63 syn keyword pbType int32 int64 uint32 uint64 sint32 sint64
64 syn keyword pbType fixed32 fixed64 sfixed32 sfixed64
65 syn keyword pbType float double bool string byte
    [all...]
  /external/clang/lib/Basic/
IdentifierTable.cpp 84 // Add the '_experimental_modules_import' contextual keyword.
89 // Language Keyword Implementation
117 /// The C90/C99/CPP/CPP0x flags are set to 3 if the token is a keyword in a
121 static void AddKeyword(StringRef Keyword,
143 // Don't add this keyword under MicrosoftMode.
146 // Don't add this keyword if disabled in this language.
150 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
155 /// AddCXXOperatorKeyword - Register a C++ operator keyword alternative
157 static void AddCXXOperatorKeyword(StringRef Keyword,
160 IdentifierInfo &Info = Table.get(Keyword, TokenCode)
    [all...]
  /external/clang/lib/AST/
Type.cpp     [all...]
ASTContext.cpp     [all...]
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
osRgstry_parser.c 117 IN NDIS_HANDLE config_handle, IN PNDIS_STRING keyword, IN NDIS_PARAMETER_TYPE param_type )
119 char *name = keyword->Buffer;
210 IN PNDIS_STRING Keyword,
  /external/clang/include/clang/AST/
Type.h     [all...]
ASTContext.h     [all...]
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 493 OS << Results[I].Keyword << '\n';
586 llvm_unreachable("Macro and keyword kinds are handled by the constructors");
601 return R.Keyword;
SemaTemplateInstantiate.cpp     [all...]
  /external/javassist/src/main/javassist/compiler/
MemberResolver.java 545 Keyword k = (Keyword)mods.head();
MemberCodeGen.java 468 else if (method instanceof Keyword) { // constructor
477 if (((Keyword)method).get() == SUPER)
491 if (target instanceof Keyword)
492 if (((Keyword)target).get() == SUPER)
    [all...]
Parser.java 173 list = new ASTList(new Keyword(lex.get()), list);
    [all...]
TypeChecker.java 473 return new Keyword(((Boolean)value).booleanValue()
635 else if (method instanceof Keyword) { // constructor
637 if (((Keyword)method).get() == SUPER)
962 public void atKeyword(Keyword k) throws CompileError {
    [all...]
CodeGen.java 258 Keyword k = (Keyword)mods.head();
310 if (target instanceof Keyword) {
311 int token = ((Keyword)target).get();
    [all...]
  /external/llvm/utils/vim/
llvm.vim 17 syn keyword llvmType void float double half
18 syn keyword llvmType x86_fp80 fp128 ppc_fp128
19 syn keyword llvmType type label opaque
25 syn keyword llvmStatement add fadd sub fsub mul fmul
26 syn keyword llvmStatement sdiv udiv fdiv srem urem frem
27 syn keyword llvmStatement and or xor
28 syn keyword llvmStatement icmp fcmp
29 syn keyword llvmStatement eq ne ugt uge ult ule sgt sge slt sle
30 syn keyword llvmStatement oeq ogt oge olt ole one ord ueq ugt uge
31 syn keyword llvmStatement ult ule une un
    [all...]
  /external/v8/src/
dateparser-inl.h 201 return DateToken::Keyword(KeywordTable::GetType(index),
dateparser.h 215 static DateToken Keyword(KeywordType tag, int value, int length) {
291 // Look up a word in the keyword table and return an index.
295 // Get the type of the keyword at index i.
299 // Get the value of the keyword at index i.
  /external/clang/lib/Parse/
ParseDecl.cpp 706 IdentifierInfo *Keyword = Tok.getIdentifierInfo();
709 if (Keyword == Ident_unavailable) {
712 << Keyword << SourceRange(UnavailableLoc);
725 << Keyword;
730 if (Keyword == Ident_message) {
749 if (Keyword == Ident_introduced)
751 else if (Keyword == Ident_deprecated)
753 else if (Keyword == Ident_obsoleted)
761 << Keyword
771 << Keyword << VersionRange
    [all...]
  /external/libvpx/build/make/
gen_msvs_proj.sh 276 # List Keyword for this target
278 x86*) keyword="ManagedCProj"
313 Keyword="${keyword}" \

Completed in 8404 milliseconds

1 2