Searched defs:compiler (Results 76 - 100 of 197) sorted by relevance

12345678

/external/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.h40 #include <google/protobuf/compiler/code_generator.h>
54 namespace compiler { namespace in namespace:google::protobuf
58 // If you create your own protocol compiler binary and you want it to support
151 } // namespace compiler
/external/protobuf/src/google/protobuf/compiler/
H A Dsubprocess.h52 namespace compiler { namespace in namespace:google::protobuf
103 } // namespace compiler
H A Dzip_writer.h39 namespace compiler { namespace in namespace:google::protobuf
63 } // namespace compiler
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DLexer.java21 package org.apache.xpath.compiler;
75 * @param compiler The owning compiler for this lexer.
80 Lexer(Compiler compiler, PrefixResolver resolver, argument
84 m_compiler = compiler;
H A DOpMapVector.java22 package org.apache.xpath.compiler;
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DChildTestIterator.java27 import org.apache.xpath.compiler.Compiler;
48 * @param compiler A reference to the Compiler that contains the op map.
54 ChildTestIterator(Compiler compiler, int opPos, int analysis) argument
57 super(compiler, opPos, analysis);
H A DOneStepIteratorForward.java26 import org.apache.xpath.compiler.Compiler;
27 import org.apache.xpath.compiler.OpMap;
46 * @param compiler A reference to the Compiler that contains the op map.
52 OneStepIteratorForward(Compiler compiler, int opPos, int analysis) argument
55 super(compiler, opPos, analysis);
58 m_axis = WalkerFactory.getAxisFromStep(compiler, firstStepPos);
H A DWalkingIteratorSorted.java25 import org.apache.xpath.compiler.Compiler;
58 * @param compiler The Compiler which is creating
61 * opcode list from the compiler.
69 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
72 super(compiler, opPos, analysis, shouldLoadWalkers);
68 WalkingIteratorSorted( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
H A DDescendantIterator.java30 import org.apache.xpath.compiler.Compiler;
31 import org.apache.xpath.compiler.OpCodes;
32 import org.apache.xpath.compiler.OpMap;
47 * @param compiler A reference to the Compiler that contains the op map.
53 DescendantIterator(Compiler compiler, int opPos, int analysis) argument
57 super(compiler, opPos, analysis, false);
60 int stepType = compiler.getOp(firstStepPos);
73 int nextStepPos = compiler.getNextStepPos(firstStepPos);
74 if(compiler.getOp(nextStepPos) == OpCodes.FROM_DESCENDANTS_OR_SELF)
83 nextStepPos = compiler
[all...]
H A DMatchPatternIterator.java28 import org.apache.xpath.compiler.Compiler;
29 import org.apache.xpath.compiler.OpMap;
65 * @param compiler The Compiler which is creating
68 * opcode list from the compiler.
74 MatchPatternIterator(Compiler compiler, int opPos, int analysis) argument
78 super(compiler, opPos, analysis, false);
82 m_pattern = WalkerFactory.loadSteps(this, compiler, firstStepPos, 0);
223 // Yuck. Just to shut up the compiler!
/external/clang/unittests/Tooling/
H A DToolingTest.cpp34 clang::CompilerInstance& compiler, StringRef dummy) {
33 CreateASTConsumer( clang::CompilerInstance& compiler, StringRef dummy) argument
/external/javassist/src/main/javassist/compiler/
H A DAccessorMaker.java16 package javassist.compiler;
/external/javassist/src/main/javassist/compiler/ast/
H A DCastExpr.java16 package javassist.compiler.ast;
18 import javassist.compiler.TokenId;
19 import javassist.compiler.CompileError;
H A DCondExpr.java16 package javassist.compiler.ast;
18 import javassist.compiler.CompileError;
H A DDoubleConst.java16 package javassist.compiler.ast;
18 import javassist.compiler.CompileError;
19 import javassist.compiler.TokenId;
H A DExpr.java16 package javassist.compiler.ast;
18 import javassist.compiler.TokenId;
19 import javassist.compiler.CompileError;
H A DIntConst.java16 package javassist.compiler.ast;
18 import javassist.compiler.CompileError;
19 import javassist.compiler.TokenId;
H A DStmnt.java16 package javassist.compiler.ast;
18 import javassist.compiler.TokenId;
19 import javassist.compiler.CompileError;
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_extension.cc35 #include <google/protobuf/compiler/cpp/cpp_extension.h>
37 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
44 namespace compiler { namespace in namespace:google::protobuf
208 } // namespace compiler
H A Dcpp_field.cc35 #include <google/protobuf/compiler/cpp/cpp_field.h>
36 #include <google/protobuf/compiler/cpp/cpp_helpers.h>
37 #include <google/protobuf/compiler/cpp/cpp_primitive_field.h>
38 #include <google/protobuf/compiler/cpp/cpp_string_field.h>
39 #include <google/protobuf/compiler/cpp/cpp_enum_field.h>
40 #include <google/protobuf/compiler/cpp/cpp_message_field.h>
49 namespace compiler { namespace in namespace:google::protobuf
137 } // namespace compiler
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_extension.cc35 #include <google/protobuf/compiler/java/java_extension.h>
36 #include <google/protobuf/compiler/java/java_helpers.h>
42 namespace compiler { namespace in namespace:google::protobuf
68 // No default because we want the compiler to complain if any new
199 } // namespace compiler
H A Djava_generator.cc35 #include <google/protobuf/compiler/java/java_generator.h>
36 #include <google/protobuf/compiler/java/java_file.h>
37 #include <google/protobuf/compiler/java/java_helpers.h>
45 namespace compiler { namespace in namespace:google::protobuf
120 } // namespace compiler
/external/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_generator.cc35 #include <google/protobuf/compiler/javamicro/javamicro_params.h>
36 #include <google/protobuf/compiler/javamicro/javamicro_generator.h>
37 #include <google/protobuf/compiler/javamicro/javamicro_file.h>
38 #include <google/protobuf/compiler/javamicro/javamicro_helpers.h>
46 namespace compiler { namespace in namespace:google::protobuf
207 } // namespace compiler
/external/webkit/Source/WebCore/platform/graphics/
H A DANGLEWebKitBridge.cpp82 ShHandle compiler; local
85 compiler = m_vertexCompiler;
87 compiler = m_fragmentCompiler;
91 bool validateSuccess = ShCompile(compiler, shaderSourceStrings, 1, SH_OBJECT_CODE);
94 ShGetInfo(compiler, SH_INFO_LOG_LENGTH, &logSize);
98 ShGetInfoLog(compiler, logBuffer.get());
106 ShGetInfo(compiler, SH_OBJECT_CODE_LENGTH, &translationLength);
111 ShGetObjectCode(compiler, translationBuffer.get());
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFunction.java28 import org.apache.xpath.compiler.Compiler;
47 * XPath compiler.
66 * called by the compiler for static number of arguments checking.
140 public void postCompileStep(Compiler compiler) argument

Completed in 195 milliseconds

12345678