HomeSort by relevance Sort by last modified time
    Searched refs:Tool (Results 76 - 100 of 109) sorted by null

1 2 34 5

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
RubyTarget.java 31 import org.antlr.Tool;
32 import org.antlr.tool.Grammar;
304 Tool tool,
318 core tool code.
CodeGenerator.java 31 import org.antlr.Tool;
42 import org.antlr.tool.*;
120 /** A reference to the ANTLR tool so we can learn about output directories
123 protected Tool tool; field in class:CodeGenerator
153 public CodeGenerator(Tool tool, Grammar grammar, String language) {
154 this.tool = tool;
410 outputFileST.add("ANTLRVersion", tool.VERSION)
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestSymbolDefinitions.java 30 import org.antlr.Tool;
34 import org.antlr.tool.*;
226 Tool antlr = newTool();
726 Tool antlr = newTool();
785 Tool antlr = newTool(new String[] {"-lib", tmpdir});
817 Tool antlr = newTool(new String[] {"-lib", tmpdir});
TestTreeGrammarRewriteAST.java 30 import org.antlr.Tool;
33 import org.antlr.tool.ErrorManager;
34 import org.antlr.tool.Grammar;
35 import org.antlr.tool.GrammarSyntaxMessage;
242 Tool antlr = newTool();
    [all...]
TestDFAConversion.java 30 import org.antlr.Tool;
35 import org.antlr.tool.*;
755 Tool antlr = newTool();
    [all...]
  /external/chromium_org/tools/gn/
substitution_writer_unittest.cc 239 const Tool* tool = setup.toolchain()->GetToolForTargetFinalOutput(&target); local
245 &target, tool, SUBSTITUTION_OUTPUT_EXTENSION));
248 &target, tool, SUBSTITUTION_TARGET_GEN_DIR));
257 &target, tool, pattern);
ninja_binary_target_writer.cc 331 // Use the default from the tool.
477 return false; // No tool for this file (it's a header file or something).
478 const Tool* tool = target->toolchain()->GetTool(*computed_tool_type); local
479 if (!tool)
480 return false; // Tool does not apply for this toolchain.file.
484 target, source, tool->outputs(), outputs);
target_unittest.cc 281 // Basic target with no prefix (executable type tool in the TestWithScope has
299 // Target with a "lib" prefix (the static library tool in the TestWithScope
490 scoped_ptr<Tool> solink_tool(new Tool());
functions.cc 706 INSERT_FUNCTION(Tool, false)
  /external/chromium_org/tools/grit/grit/tool/
transl2tc.py 6 '''The 'grit transl2tc' tool.
12 from grit.tool import interface
13 from grit.tool import rc2grd
18 class TranslationToTc(interface.Tool):
19 '''A tool for importing existing translations in RC format into the
26 The tool needs a "source" RC file, i.e. in English, and an RC file that is a
29 The tool also requires you to provide a .grd file (input file) e.g. using the
30 -i global option or the GRIT_INPUT environment variable. The tool uses
35 This tool will accept all the same RCOPTS as the 'grit rc2grd' tool. To ge
    [all...]
xmb.py 6 """The 'grit xmb' tool.
18 from grit.tool import interface
37 internal Translation Console tool. May be used for attributes as
126 class OutputXmb(interface.Tool):
129 Google's internal Translation Console tool. The format could easily
139 and the tool only output the contents of nodes from the input file that also
142 the tool will only output nodes with 'name' attributes that match one of the
148 use with the 'grit transl2tc' tool's -l option.
159 # The different output formats supported by this tool
rc2grd.py 6 '''The 'grit rc2grd' tool.'''
23 from grit.tool import interface
24 from grit.tool import postprocess_interface
25 from grit.tool import preprocess_interface
94 class Rc2Grd(interface.Tool):
95 '''A tool for converting .rc files to .grd files. This tool is only for
97 existing translations, use the rc2xtb tool.
101 The tool takes a single argument, which is the path to the .rc file to convert.
126 has to be a subclass of grit.tool.PreProcessor, t
    [all...]
resize.py 6 '''The 'grit resize' tool.
18 from grit.tool import interface
113 class ResizeDialog(interface.Tool):
146 not need to specify the codepage unless the tool complains
156 IMPORTANT NOTE: For now, the tool outputs a UTF-8 encoded file for any language
164 # TODO(joi) It would be cool to have this tool note the Perforce revision
android2grd.py 6 """The 'grit android2grd' tool."""
19 from grit.tool import interface
43 class Android2Grd(interface.Tool):
44 """Tool for converting Android string.xml files into chrome Grd files.
48 The Android2Grd tool will convert an Android strings.xml file (whose path is
109 """Returns a short description of the Android2Grd tool.
111 Overridden from grit.interface.Tool
114 A string containing a short description of the android2grd tool.
150 """Runs the Android2Grd tool.
152 Inherited from grit.interface.Tool
    [all...]
build.py 6 '''The 'grit build' tool along with integration for this tool with the
18 from grit.tool import interface
55 class RcBuilder(interface.Tool):
56 '''A tool that builds RC files and resource header files for compilation.
60 All output options for this tool are specified in the input file (see
69 of asserted files must match the output files or the tool
115 return 'A tool that builds RC files for compilation.'
159 print 'This tool takes no tool-specific arguments.
    [all...]
  /external/oprofile/
oprofile_android 95 # The tool program itself
96 class Tool:
468 tool = Tool(sys.argv)
469 rc = tool.main()
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Grammar.java 28 package org.antlr.tool;
30 import org.antlr.Tool;
323 public Tool tool; field in class:Grammar
346 /** An external tool requests that DFA analysis abort prematurely. Stops
515 public Grammar(Tool tool, String fileName, CompositeGrammar composite) {
517 setTool(tool);
531 public Grammar() { this((Tool)null); }
533 public Grammar(Tool tool)
    [all...]
  /external/clang/lib/Driver/
Driver.cpp 20 #include "clang/Driver/Tool.h"
438 // Suppress tool output.
619 const Tool &FailingTool = FailingCommand->getCreator();
    [all...]
  /external/chromium_org/chrome/browser/resources/extensions/
extension_error_overlay.js 98 * used in the native chrome:extensions page or the Apps Developer Tool.
354 * used in the native chrome:extensions page or the Apps Developer Tool.
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
msvs.py 252 tool = tools[tool_name]
253 if tool.get(setting):
255 if type(tool[setting]) == list and type(value) == list:
256 tool[setting] += value
259 'Appending "%s" to a non-list setting "%s" for tool "%s" is '
261 value, setting, tool_name, str(tool[setting])))
263 tool[setting] = value
409 """Add a custom build tool to execute something.
414 primary_input: input file to attach the build tool to
422 tool = MSVSProject.Tool
    [all...]
  /external/stlport/
configure.bat 13 echo STLport Configuration Tool for Windows
26 echo # STLport Configuration Tool for Windows > build\Makefiles\nmake\config.mak
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /build/core/
config.mk 183 # bionic/libc/kernel/clean_header.py tool. Additionally, the original kernel
318 # Disable WITH_STATIC_ANALYZER and WITH_SYNTAX_CHECK if tool can't be found
428 # Tool to merge AndroidManifest.xmls
  /external/qemu/distrib/sdl-1.2.15/acinclude/
libtool.m4 902 [Tool to manipulate archived DWARF debug symbol files on Mac OS X])
904 [Tool to change global to local symbols on Mac OS X])
906 [Tool to manipulate fat objects and archives on Mac OS X])
908 [ldd/readelf like tool for Mach-O binaries on Mac OS X])
910 [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])
    [all...]

Completed in 2268 milliseconds

1 2 34 5