| /external/llvm/lib/Analysis/ |
| SparsePropagation.cpp | 11 // modeled after SCCP, but with a customizable lattice function. 18 #include "llvm/IR/Function.h" 48 /// map yet. This function is necessary because not all values should start 77 /// this function notices and adds I to the worklist if needed. 163 // TODO: Could ask the lattice function if the value can throw. 230 // The lattice function may store more information on a PHINode than could be 256 // transfer function to give us the merge of the incoming values. 282 // Otherwise, ask the transfer function what the result is. If this is 292 void SparseSolver::Solve(Function &F) { 329 void SparseSolver::Print(Function &F, raw_ostream &OS) const [all...] |
| ProfileEstimatorPass.cpp | 57 virtual bool runOnFunction(Function &F); 89 /// createProfileEstimatorPass - This function returns a Pass that estimates 318 bool ProfileEstimatorPass::runOnFunction(Function &F) { 321 // Fetch LoopInfo and clear ProfileInfo for this function. 329 for (Function::iterator bi = F.begin(), be = F.end(); bi != be; ++bi) 335 DEBUG(dbgs() << "Working on function " << F.getName() << "\n"); 401 for (Function::const_iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
|
| /external/llvm/lib/MC/ |
| MCWin64EH.cpp | 247 // Switch sections (the static function above is meant to be called from 251 getWin64EHTableSection(GetSectionSuffix(info->Function), context); 263 getWin64EHTableSection(GetSectionSuffix(info.Function), context); 271 getWin64EHFuncTableSection(GetSectionSuffix(info.Function), context);
|
| /external/skia/src/images/ |
| SkImageDecoder_libgif.cpp | 134 if (eb->Function == 0xF9 && eb->ByteCount == 4) { 319 if (DGifGetExtension(gif, &temp_save.Function, 345 temp_save.Function = 0;
|
| /external/webkit/Source/WebCore/bindings/v8/ |
| V8Proxy.h | 174 // Call the function with the given receiver and arguments. 175 v8::Local<v8::Value> callFunction(v8::Handle<v8::Function>, v8::Handle<v8::Object>, int argc, v8::Handle<v8::Value> argv[]); 177 // Call the function with the given receiver and arguments. 178 static v8::Local<v8::Value> callFunctionWithoutFrame(v8::Handle<v8::Function>, v8::Handle<v8::Object>, int argc, v8::Handle<v8::Value> argv[]); 180 // Call the function as constructor with the given arguments. 181 v8::Local<v8::Value> newInstance(v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[]); 198 // currently executing JavaScript. Since JavaScript can make function calls 201 // For example, imagine that a JS function in frame A calls a function in 206 // script engine; the context that is at the bottom of the JS function stack [all...] |
| /external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
| FunctionTable.java | 24 import org.apache.xpath.functions.Function; 29 * The function table for XPath. 127 /** The 'function-available()' id (XSLT). */ 142 * The function table. 146 /** Table of function name to function ID associations. */ 150 * The function table contains customized functions 155 * Table of function name to function ID associations for customized functions 171 * The index to the next free function index [all...] |
| /external/chromium/base/threading/ |
| platform_thread_unittest.cc | 75 TEST(PlatformThreadTest, Function) {
|
| /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/ |
| jsevalcontext.js | 57 function JsEvalContext(opt_data, opt_parent) {
73 JsEvalContext.prototype.constructor_ = function(opt_data, opt_parent) {
157 JsEvalContext.setGlobal = function(name, value) {
185 JsEvalContext.create = function(opt_data, opt_parent) {
202 JsEvalContext.recycle = function(instance) {
213 * Executes a function created using jsEvalToFunction() in the context
216 * @param {Function} exprFunction A javascript function created from
225 JsEvalContext.prototype.jsexec = function(exprFunction, template) {
253 JsEvalContext.prototype.clone = function(data, index, count) { [all...] |
| /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/ |
| jsevalcontext.js | 57 function JsEvalContext(opt_data, opt_parent) { 73 JsEvalContext.prototype.constructor_ = function(opt_data, opt_parent) { 157 JsEvalContext.setGlobal = function(name, value) { 185 JsEvalContext.create = function(opt_data, opt_parent) { 202 JsEvalContext.recycle = function(instance) { 213 * Executes a function created using jsEvalToFunction() in the context 216 * @param {Function} exprFunction A javascript function created from 225 JsEvalContext.prototype.jsexec = function(exprFunction, template) { 253 JsEvalContext.prototype.clone = function(data, index, count) [all...] |
| /external/chromium/testing/gmock/scripts/generator/cpp/ |
| gmock_class.py | 58 if (isinstance(node, ast.Function) and 61 # Pick out all the elements we need from the original function.
|
| /external/clang/include/clang/Sema/ |
| CodeCompleteConsumer.h | 43 /// method or member function. 73 /// \brief The result is a C++ non-static member function whose qualifiers 74 /// exactly match the object type on which the member function can be called. 176 /// expected in a function, method, or block. 228 /// (without any arguments, in the case of a function-like macro). 267 /// of an initializer or function parameter). 302 /// if the expression is a variable initializer or a function argument, the 303 /// type of the corresponding variable or function parameter. 326 /// used. For example, the code completion string for a function would show 339 /// parentheses or a comma in a function call [all...] |
| /external/clang/lib/Sema/ |
| CodeCompleteConsumer.cpp | 405 return Function; 416 return Function->getType()->getAs<FunctionType>(); 535 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(Declaration)) 536 if (Function->isDeleted())
|
| /external/clang/test/Misc/ |
| integer-literal-printing.cpp | 5 template <short T> void Function1(Type1<T>& x) {} // expected-note{{candidate function [with T = -42] not viable: expects an l-value for 1st argument}} 8 template <unsigned short T> void Function2(Type2<T>& x) {} // expected-note{{candidate function [with T = 42] not viable: expects an l-value for 1st argument}} 67 void Function() { 68 Function1(Type1<-42>()); // expected-error{{no matching function for call to 'Function1'}} 69 Function2(Type2<42>()); // expected-error{{no matching function for call to 'Function2'}}
|
| /external/clang/tools/scan-build/ |
| sorttable.js | 22 init: function() { 23 // quit if this function has already been called 25 // flag this function so we don't do the same thing twice 34 forEach(document.getElementsByTagName('table'), function(table) { 42 makeSortable: function(table) { 84 if (mtch && typeof sorttable["sort_"+override] == 'function') { 92 dean_addEvent(headrow[i],"click", function(e) { 123 forEach(theadrow.childNodes, function(cell) { 166 guessType: function(table, column) { 199 getInnerText: function(node) [all...] |
| /external/guava/guava/src/com/google/common/collect/ |
| MapMaker.java | 27 import com.google.common.base.Function; 67 * new Function<Key, Graph>() { 608 * function, or, if another thread is currently computing the value for this key, simply waits for 609 * that thread to finish and returns its computed value. Note that the function may be executed 625 * <li>{@link NullPointerException} if the key is null or the computing function returns a null 627 * <li>{@link ComputationException} if an exception was thrown by the computing function. If that 635 * unsafely passed to the computing function as type {@code K}, and unsafely stored in the map. 654 * @param computingFunction the function used to compute new values 667 Function<? super K, ? extends V> computingFunction) { [all...] |
| /external/guava/guava-tests/test/com/google/common/collect/ |
| MapsTransformValuesUnmodifiableIteratorTest.java | 20 import com.google.common.base.Function; 207 new Function<String, Boolean>() { 309 new Function<Integer, Integer>() { 326 underlying, new Function<Boolean, Boolean>() {
|
| /external/javasqlite/src/main/java/SQLite/ |
| Database.java | 459 * Create regular function. 461 * @param name the name of the new function 462 * @param nargs number of arguments to function 463 * @param f interface of function 466 public void create_function(String name, int nargs, Function f) { 472 private native void _create_function(String name, int nargs, Function f); 475 * Create aggregate function. 477 * @param name the name of the new function 478 * @param nargs number of arguments to function 479 * @param f interface of function [all...] |
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
| parser.ml | 107 raise (Stream.Error "expected function name in prototype") 112 Ast.Function (p, e) 118 Ast.Function (Ast.Prototype ("", [||]), e)
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
| parser.ml | 107 raise (Stream.Error "expected function name in prototype") 112 Ast.Function (p, e) 118 Ast.Function (Ast.Prototype ("", [||]), e)
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
| parser.ml | 107 raise (Stream.Error "expected function name in prototype") 112 Ast.Function (p, e) 118 Ast.Function (Ast.Prototype ("", [||]), e)
|
| /external/llvm/include/llvm/Transforms/Utils/ |
| BasicBlockUtils.h | 73 /// FindFunctionBackedges - Analyze the specified function to find all of the 74 /// loop backedges in the function and return them. This is a relatively cheap 78 void FindFunctionBackedges(const Function &F, 108 /// It is invalid to call this function on a critical edge that starts at an 126 /// function. If P is specified, it updates the analyses 168 /// basic block into the function, and moving some of the predecessors of BB to 171 /// suffix of 'Suffix'. This function returns the new block. 183 /// OrigBB, by introducing two new basic blocks into the function. One of those
|
| /external/llvm/lib/CodeGen/AsmPrinter/ |
| ARMException.cpp | 53 /// BeginFunction - Gather pre-function exception information. Assumes it's 54 /// being emitted immediately after the function entry point. 62 /// EndFunction - Gather and emit post-function exception information. 77 if (const Function * Personality =
|
| /external/llvm/lib/IR/ |
| PassManager.cpp | 138 if (isa<Function>(V)) 139 OS << "function"; 167 /// whether any of the passes modifies the function, and if so, return true. 168 bool runOnFunction(Function &F); 176 bool doInitialization(Function &F); 178 bool doFinalization(Function &F); 237 /// createPrinterPass - Get a function printer pass. 248 bool run(Function &F); 250 /// doInitialization - Run all of the initializers for the function passes. 254 /// doFinalization - Run all of the finalizers for the function passes [all...] |
| PrintModulePass.cpp | 1 //===--- IR/PrintModulePass.cpp - Module/Function Printer -----------------===// 15 #include "llvm/IR/Function.h" 50 std::string Banner; // String to print before each function 65 // function as it's processed. 67 bool runOnFunction(Function &F) { 107 INITIALIZE_PASS(PrintFunctionPass, "print-function", 108 "Print function to stderr", false, false)
|
| /external/llvm/lib/Transforms/IPO/ |
| ExtractGV.cpp | 33 /// specified function. Otherwise, it deletes as much of the module as 34 /// possible, except for the function specified. 111 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage,
|