/external/chromium_org/tools/grit/ |
grit_info.py | 6 '''Tool to determine inputs and outputs of a grit file. 65 def Inputs(filename, defines, ids_file, target_platform=None): 101 print 'USAGE: ./grit_info.py --inputs [-D foo] [-f resource_ids] <grd-file>' 108 parser.add_option("--inputs", action="store_true", dest="inputs") 130 if options.inputs: 132 raise WrongNumberOfArguments("Expected 0 or 1 arguments for --inputs.") 134 inputs = [] 137 inputs = Inputs(filename, defines, options.ids_file [all...] |
/external/llvm/unittests/Support/ |
CommandLineTest.cpp | 193 const char *const Inputs[][ARGC] = { 200 for (size_t i = 0, e = array_lengthof(Inputs); i < e; ++i) { 207 cl::ParseCommandLineOptions(ARGC, Inputs[i]);
|
/frameworks/compile/slang/ |
llvm-rs-cc.cpp | 121 * Compile the Inputs. 127 * Inputs - input filenames. 133 * We populate IOFiles dynamically while working through the list of Inputs. 140 const llvm::SmallVector<const char*, 16> &Inputs, slang::RSCCOptions &Opts, 158 for (int i = 0, e = Inputs.size(); i != e; i++) { 159 const char *InputFile = Inputs[i]; 215 llvm::SmallVector<const char*, 16> Inputs; 237 slang::ParseArguments(ArgVector, Inputs, Opts, DiagEngine); 258 if (Inputs.empty()) { 268 int CompileFailed = compileFiles(&IOFiles32, &IOFiles32, Inputs, Opts [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_atifragshader.c | 38 GLfloat Inputs[2][4]; /** Primary, secondary input colors */ 369 machine->Inputs[ATI_FS_INPUT_PRIMARY]); 372 machine->Inputs[ATI_FS_INPUT_SECONDARY]); 564 GLfloat (*inputs)[4] = machine->Inputs; 572 COPY_4V(inputs[ATI_FS_INPUT_PRIMARY], span->array->attribs[FRAG_ATTRIB_COL0][col]); 573 COPY_4V(inputs[ATI_FS_INPUT_SECONDARY], span->array->attribs[FRAG_ATTRIB_COL1][col]);
|
/external/clang/include/clang/Driver/ |
Action.h | 68 ActionList Inputs; 76 : Kind(_Kind), Type(_Type), Inputs(&Input, &Input + 1), OwnsInputs(true) {} 78 : Kind(_Kind), Type(_Type), Inputs(_Inputs), OwnsInputs(true) {} 90 ActionList &getInputs() { return Inputs; } 91 const ActionList &getInputs() const { return Inputs; } 93 size_type size() const { return Inputs.size(); } 95 iterator begin() { return Inputs.begin(); } 96 iterator end() { return Inputs.end(); } 97 const_iterator begin() const { return Inputs.begin(); } 98 const_iterator end() const { return Inputs.end(); [all...] |
/external/clang/lib/Tooling/ |
CompilationDatabase.cpp | 114 // all inputs, direct and indirect, of compile jobs. 120 SmallVector<std::string, 2> Inputs; 134 Inputs.push_back(IA->getInputArg().getSpelling()); 258 // since Link jobs point to Assemble jobs as inputs. 264 if (CompileAnalyzer.Inputs.empty()) { 274 Args.begin(), Args.end(), MatchesAny(CompileAnalyzer.Inputs)); 276 // Remove all inputs deemed unused for compilation.
|
/external/mesa3d/src/mesa/swrast/ |
s_atifragshader.c | 38 GLfloat Inputs[2][4]; /** Primary, secondary input colors */ 369 machine->Inputs[ATI_FS_INPUT_PRIMARY]); 372 machine->Inputs[ATI_FS_INPUT_SECONDARY]); 564 GLfloat (*inputs)[4] = machine->Inputs; 572 COPY_4V(inputs[ATI_FS_INPUT_PRIMARY], span->array->attribs[FRAG_ATTRIB_COL0][col]); 573 COPY_4V(inputs[ATI_FS_INPUT_SECONDARY], span->array->attribs[FRAG_ATTRIB_COL1][col]);
|
/libcore/benchmarks/src/benchmarks/regression/ |
StringCaseMappingBenchmark.java | 24 enum Inputs { 27 // TODO: include hairy inputs like turkish and greek. 55 private Inputs(String value) { this.value = value; } 73 @Param private Inputs s;
|
/external/clang/include/clang/Frontend/ |
FrontendOptions.h | 199 std::vector<FrontendInputFile> Inputs;
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_exec.h | 254 struct tgsi_exec_vector *Inputs;
|
/external/clang/lib/Driver/ |
Driver.cpp | 266 // Pick up inputs via the -- option. 376 // Construct the list of inputs. 377 InputList Inputs; 378 BuildInputs(C->getDefaultToolChain(), *TranslatedArgs, Inputs); 384 Inputs, C->getActions()); 386 BuildActions(C->getDefaultToolChain(), C->getArgs(), Inputs, 441 // Construct the list of inputs. 442 InputList Inputs; 443 BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs); 445 for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) [all...] |
Tools.cpp | 171 const InputInfoList &Inputs, const ArgList &Args, 175 // Add extra linker input arguments which are not treated as inputs 179 for (const auto &II : Inputs) { 181 // Don't try to pass LLVM inputs unless we have native support. 230 // Don't forward inputs from the original command line. They are added from 243 const InputInfoList &Inputs) const { 266 DepFile = getDependencyFileName(Args, Inputs); 285 SmallString<128> P(Inputs[0].getBaseInput()); 440 if (types::isCXX(Inputs[0].getType())) [all...] |
/external/clang/lib/Frontend/ |
CompilerInvocation.cpp | [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_exec.h | 254 struct tgsi_exec_vector *Inputs;
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeVectorTypes.cpp | [all...] |
/external/llvm/lib/Transforms/Scalar/ |
LoopStrengthReduce.cpp | [all...] |
/external/deqp/modules/glshared/ |
glsBuiltinPrecisionTests.cpp | [all...] |