| /external/llvm/lib/IR/ | 
| Function.cpp | 1 //===-- Function.cpp - Implement the Global object classes ----------------===// 10 // This file implements the Function class for the IR library.
 14 #include "llvm/IR/Function.h"
 36 template class llvm::SymbolTableListTraits<Argument, Function>;
 37 template class llvm::SymbolTableListTraits<BasicBlock, Function>;
 45 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
 49   // Make sure that we get added to a function
 57 void Argument::setParent(Function *parent) {
 66 /// function.  For example in "void foo(int a, float b)" a is 0 and b is 1.
 68   const Function *F = getParent()
 [all...]
 | 
| /external/mesa3d/src/gallium/drivers/nv50/codegen/ | 
| nv50_ir_bb.cpp | 27 Function::Function(Program *p, const char *fnName, uint32_t label) 51 Function::~Function()
 70 BasicBlock::BasicBlock(Function *fn) : cfg(this), dom(this), func(fn)
 91 BasicBlock::clone(ClonePolicy<Function>& pol) const
 392 Function::setEntry(BasicBlock *bb)
 401 Function::setExit(BasicBlock *bb)
 410 Function::orderInstructions(ArrayList &result)
 426 Function::buildLiveSets(
 [all...]
 | 
| /external/chromium/chrome/browser/resources/touch_ntp/standalone/ | 
| standalone_hack.js | 43  *  We create this object by applying an anonymous function so that we can have 46 chrome.send = (function() {
 138    * Invoke the getAppsCallback function with a snapshot of the current app
 141   function sendGetAppsCallback()
 159   function spamApps(apps)
 164     function createObject(proto) {
 166       var F = function() {};
 194    * @param {function(Object): boolean} predicate The function to invoke on
 198   function indexOfPred(array, predicate)
 [all...]
 | 
| /external/chromium_org/third_party/WebKit/Source/wtf/ | 
| Functional.h | 37 // Functional.h provides a very simple way to bind a function pointer and arguments together into a function object 40 // A FunctionWrapper is a class template that can wrap a function pointer or a member function pointer and
 41 // provide a unified interface for calling that function.
 52     explicit FunctionWrapper(R (*function)())
 53         : m_function(function)
 71     explicit FunctionWrapper(R (*function)(P1))
 72         : m_function(function)
 90     explicit FunctionWrapper(R (*function)(P1, P2)
 [all...]
 | 
| /external/chromium_org/third_party/mesa/src/src/mesa/main/ | 
| APIspec.py | 90                 elif node.name == "function": 100                 func = Function(tmpl_node, func_node, self.is_impl,
 108         """Find a matching function in the API."""
 122 class Function(object):
 298     """A parameter of a function."""
 350         """Validate the checker against a function."""
 535         # the described param is not in the final function
 559         """Validate a description against certain function."""
 
 | 
| /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/mesa3d/src/mesa/main/ | 
| APIspec.py | 90                 elif node.name == "function": 100                 func = Function(tmpl_node, func_node, self.is_impl,
 108         """Find a matching function in the API."""
 122 class Function(object):
 298     """A parameter of a function."""
 350         """Validate the checker against a function."""
 535         # the described param is not in the final function
 559         """Validate a description against certain function."""
 
 | 
| /external/v8/src/ | 
| v8natives.js | 34 // var $Function = global.Function; 47 // Helper function used to install functions on objects.
 48 function InstallFunctions(object, attributes, functions) {
 64 // The "prototype" property of the function object is made non-configurable,
 67 function SetUpLockedPrototype(constructor, fields, methods) {
 70   // Install functions first, because this function is used to initialize
 96 function GlobalIsNaN(number) {
 103 function GlobalIsFinite(number) {
 110 function GlobalParseInt(string, radix)
 [all...]
 | 
| runtime.h | 490   F(CallFunction, -1 /* receiver + n args + function */, 1)                  \ 520 // a corresponding runtime function, that is called for slow cases.
 599   // Intrinsic function descriptor.
 600   struct Function {
 603     // The JS name of the function.
 606     // The C++ (native) entry point.  NULL if the function is inlined.
 609     // The number of arguments expected. nargs is -1 if the function takes
 618   // Add symbols for all the intrinsic function names to a StringDictionary.
 625   // Get the intrinsic function with the given name, which must be a symbol.
 626   static const Function* FunctionForSymbol(Handle<String> name)
 [all...]
 | 
| runtime.js | 33 // it does not push the function onto the stack. This means that you 48 var $Function = global.Function;
 54 function EQUALS(y) {
 100 function STRICT_EQUALS(x) {
 120 function COMPARE(x, ncr) {
 163 function ADD(x) {
 183 function STRING_ADD_LEFT(y) {
 198 function STRING_ADD_RIGHT(y) {
 214 function SUB(y)
 [all...]
 | 
| /external/chromium/chrome/common/ | 
| sqlite_utils.h | 207   // Sqlite3's sqlite3_finalize() function should not be called directly 251   typedef void (*Function)(void*);
 255   int bind_blob(int index, const void* value, int value_len, Function dtor);
 298                 Function dtor);
 313                   Function dtor);
 381 // function will check that the column is of the correct type (case-sensetive).
 
 | 
| /external/chromium_org/third_party/libjingle/source/talk/base/ | 
| virtualsocketserver.h | 119   typedef std::vector<Point> Function; 121   static Function* CreateDistribution(uint32 mean, uint32 stddev,
 187   // Basic operations on functions.  Those that return a function also take
 188   // ownership of the function given (and hence, may modify or delete it).
 189   static Function* Accumulate(Function* f);
 190   static Function* Invert(Function* f);
 191   static Function* Resample(Function* f, double x1, double x2, uint32 samples)
 [all...]
 | 
| /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ | 
| cparse.py | 96 class Function(Node,Parser): 305       node = Function()
 309         self.parse_error(lexer ,"function returns a function" )
 311         self.parse_error(lexer ,"function returns an array" )
 649         # ! ahhh, function body !!!
 651 #          "WARNING: function body found at line %s\n"%lexer.lno )
 
 | 
| genpyx.py | 152 class Function(object): 177         if isinstance(node,Function):
 433     """ used in Function; may lack an identifier """
 
 | 
| /external/chromium_org/tools/json_schema_compiler/ | 
| model.py | 50   - |functions| a map of function names to their model.Function 51   - |events| a map of event names to their model.Function
 81                 generated code (for example, function results), or
 83                 example, function parameters)
 103   - |functions| a map of function names to their model.Function
 191     elif json_type == 'function':
 192       self.property_type = PropertyType.FUNCTION
 193       # Sometimes we might have an unnamed function, e.g. if it's a propert
 [all...]
 | 
| /external/chromium_org/v8/src/ | 
| runtime.h | 598   F(CallFunction, -1 /* receiver + n args + function */, 1)                  \ 633 // a corresponding runtime function, that is called for slow cases.
 712   // Intrinsic function descriptor.
 713   struct Function {
 716     // The JS name of the function.
 719     // The C++ (native) entry point.  NULL if the function is inlined.
 722     // The number of arguments expected. nargs is -1 if the function takes
 731   // Add internalized strings for all the intrinsic function names to a
 739   // Get the intrinsic function with the given name, which must be internalized.
 740   static const Function* FunctionForName(Handle<String> name)
 [all...]
 | 
| runtime.js | 33 // it does not push the function onto the stack. This means that you 48 var $Function = global.Function;
 54 function EQUALS(y) {
 108 function STRICT_EQUALS(x) {
 128 function COMPARE(x, ncr) {
 171 function ADD(x) {
 191 function STRING_ADD_LEFT(y) {
 206 function STRING_ADD_RIGHT(y) {
 222 function SUB(y)
 [all...]
 | 
| /external/chromium_org/v8/test/cctest/ | 
| test-types.cc | 125       Function(Type::Function(), isolate), 161   Handle<Type> Function;
 305   CheckSub(T.Function, T.Object);
 308   CheckUnordered(T.Array, T.Function);
 372   CheckOverlap(T.Function, T.Object);
 375   CheckDisjoint(T.Array, T.Function);
 
 | 
| /external/chromium_org/v8/test/webkit/fast/js/ | 
| Object-getOwnPropertyNames.js | 26 function argumentsObject() { return arguments; }; 37 // Function objects
 38     "new Function()": "['arguments', 'caller', 'length', 'name', 'prototype']",
 39     "(function(){var x=new Function();x.__proto__=[1,2,3];return x;})()": "['arguments', 'caller', 'length', 'name', 'prototype']",
 44     "(function(){var x=new String('');x.__proto__=[1,2,3];return x;})()": "['length']",
 50     "(function(){var x=[];x.__proto__=[1,2,3];return x;})()": "['length']",
 53     "(function(){var x=new Date();x.__proto__=[1,2,3];return x;})()": "[]",
 56     "(function(){var x=new RegExp();x.__proto__=[1,2,3];return x;})()": "['global', 'ignoreCase', 'lastIndex', 'multiline', 'source']",
 61     "(function(){arguments.__proto__=[1,2,3];return arguments;})()": "['callee', 'length']"
 [all...]
 | 
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ | 
| symtable.py | 10 __all__ = ["symtable", "SymbolTable", "Class", "Function", "Symbol"] 25             return Function(table, filename)
 64             return "function"
 121 class Function(SymbolTable):
 213         If the name is used as the target of a function or class
 
 | 
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ | 
| symtable.py | 10 __all__ = ["symtable", "SymbolTable", "Class", "Function", "Symbol"] 25             return Function(table, filename)
 64             return "function"
 121 class Function(SymbolTable):
 213         If the name is used as the target of a function or class
 
 | 
| /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ | 
| statetracker.py | 322     """Computes the edit distance and list from the function params to the docs. 328       params: The parameter list for the function declaration.
 530 class Function(object):
 531   """Data about a JavaScript function.
 534     block_depth: Block depth the function began at.
 535     doc: The DocComment associated with the function.
 536     has_return: If the function has a return value.
 537     has_this: If the function references the 'this' object.
 538     is_assigned: If the function is part of an assignment.
 539     is_constructor: If the function is a constructor
 [all...]
 | 
| /external/chromium_org/third_party/closure_linter/closure_linter/ | 
| statetracker.py | 322     """Computes the edit distance and list from the function params to the docs. 328       params: The parameter list for the function declaration.
 530 class Function(object):
 531   """Data about a JavaScript function.
 534     block_depth: Block depth the function began at.
 535     doc: The DocComment associated with the function.
 536     has_return: If the function has a return value.
 537     has_this: If the function references the 'this' object.
 538     is_assigned: If the function is part of an assignment.
 539     is_constructor: If the function is a constructor
 [all...]
 | 
| /external/chromium_org/third_party/mesa/src/src/mesa/drivers/osmesa/ | 
| osmesa.c | 189  * function.  Otherwise, return NULL. 290  * Return pointer to an optimized triangle function if possible.
 325 /* Override for the swrast triangle-selection function.  Try to use one
 705       /* Initialize device driver function table */
 887     * _mesa_add_renderbuffer() function will create a "wrapper" renderbuffer
 908     * osmesa_renderbuffer_storage() function to get called.
 [all...]
 | 
| /external/llvm/include/llvm/IR/ | 
| Function.h | 1 //===-- llvm/Function.h - Class to represent a single function --*- C++ -*-===// 10 // This file contains the declaration of the Function class, which represents a
 11 // single function/procedure in LLVM.
 13 // A function basically consists of a list of basic blocks, a list of arguments,
 35   : public SymbolTableListTraits<BasicBlock, Function> {
 48   static ValueSymbolTable *getSymTab(Function *ItemParent);
 54   : public SymbolTableListTraits<Argument, Function> {
 65   static ValueSymbolTable *getSymTab(Function *ItemParent);
 70 class Function : public GlobalValue
 [all...]
 |