| /external/clang/lib/CodeGen/ |
| CGExprScalar.cpp | 26 #include "llvm/Function.h" 384 // The result shall only be used as the operand for the function call 432 llvm::Function *Trap = CGF.CGM.getIntrinsic(llvm::Intrinsic::trap); [all...] |
| /external/clang/lib/Sema/ |
| SemaExprCXX.cpp | 497 // non-volatile automatic object (other than a function or catch- 550 // the type from "array of T" or "function returning T" to "pointer to T" 551 // or "pointer to function returning T", [...] 590 // non-volatile automatic object (other than a function or catch-clause 681 /// C++ 9.3.2: In the body of a non-static member function, the keyword this 683 /// which the function is called. 708 /// Can be interpreted either as function-style casting ("int(x)") 799 // A template instance is never a usual deallocation function, 808 // parameter] but does declare a member deallocation function 810 // second of which has type std::size_t, then this function [all...] |
| SemaTemplate.cpp | 175 // We assume that we'll preserve the qualifier from a function 280 // or function template. 608 // -- pointer to object or pointer to function, 610 // -- reference to object or reference to function, 623 // "function returning T" is adjusted to be of type "pointer to 624 // T" or "pointer to function returning T", respectively. [all...] |
| /external/webkit/PerformanceTests/SunSpider/tests/parse-only/ |
| mootools-1.2.2-core-nc.js | 24 var Native = function(options){ 32 var afterImplement = options.afterImplement || function(){}; 47 var add = function(obj, name, method, force){ 54 object.alias = function(a1, a2, a3){ 62 object.implement = function(a1, a2, a3){ 73 Native.genericize = function(object, property, check){ 74 if ((!check || !object[property]) && typeof object.prototype[property] == 'function') object[property] = function(){ 80 Native.implement = function(objects, properties){ 84 Native.typize = function(object, family) [all...] |
| /development/samples/NFCDemo/libs/ |
| guava-10.0.1.jar | |
| /external/clang/test/SemaCXX/ |
| type-traits.cpp | [all...] |
| /external/llvm/bindings/ocaml/llvm/ |
| llvm_ocaml.c | 253 /*--... Operations on function types .......................................--*/ 426 Function, 459 DEFINE_CASE(Val, Function); 969 DEFINE_ITERATORS(function, Function, LLVMModuleRef, LLVMValueRef, [all...] |
| /external/v8/src/ |
| hydrogen-instructions.h | 496 // An operation needs to override this function iff: 584 // This function must be overridden for instructions with flag kUseGVN, to 2063 HValue* function() { return OperandAt(0); } function in class:v8::HApplyArguments 2506 Handle<JSFunction> function() { return function_; } function in class:v8::HInstanceOfKnownGlobal 3124 HValue* function() { return OperandAt(0); } function in class:v8::HLoadFunctionPrototype [all...] |
| mirror-debugger.js | 39 function ClearMirrorCache() { 53 function MakeMirror(value, opt_transient) { 109 function LookupMirror(handle) { 119 function GetUndefinedMirror() { 127 * The Function.prototype.inherits from lang.js rewritten as a standalone 128 * function (not on Function.prototype). NOTE: If this file is to be loaded 129 * during bootstrapping this function needs to be revritten using some native 133 * @param {function} ctor Constructor function which needs to inherit th [all...] |
| /external/v8/src/ia32/ |
| macro-assembler-ia32.cc | 771 // Register element_count is not modified by the function. 817 // object_size is left unchanged by this function. 1207 const Runtime::Function* function = Runtime::FunctionForId(id); local [all...] |
| /external/v8/src/x64/ |
| macro-assembler-x64.cc | 501 const Runtime::Function* function = Runtime::FunctionForId(id); local 502 Set(rax, function->nargs); 503 LoadAddress(rbx, ExternalReference(function, isolate())); 516 void MacroAssembler::CallRuntime(const Runtime::Function* f, 518 // If the expected number of arguments of the runtime function is 537 MaybeObject* MacroAssembler::TryCallRuntime(const Runtime::Function* f, 645 ApiFunction* function, int stack_space) { 673 // Call the api function! 675 reinterpret_cast<int64_t>(function->address()) [all...] |
| macro-assembler-x64.h | 49 // function calling convention. 79 // responsibility of the caller to never invoke such function on the 243 // Invoke the JavaScript function code by either calling or jumping. 257 // Invoke the JavaScript function in the given register. Changes the 258 // current context to the context in the function before invoking. 259 void InvokeFunction(Register function, 264 void InvokeFunction(JSFunction* function, 269 // Invoke specified builtin JavaScript function. Adds an entry to 275 // Store the function for the given builtin in the target register. 388 // Test-and-jump functions. Typically combines a check function [all...] |
| /external/chromium/chrome/browser/resources/bookmark_manager/js/ |
| main.js | 31 chrome.experimental.bookmarkManager.getStrings(function(data) { 54 remove: function(id) { 70 * @param {Function=} opt_f A funciton to call when done. 72 updateChildren: function(id, opt_f) { 73 function updateItem(bookmarkNode) { 80 chrome.bookmarks.getChildren(id, function(children) { 96 splitter.addEventListener('resize', function(e) { 116 tree.addEventListener('change', function() { 126 function navigateTo(id, opt_updateHashNow) { 132 function f() [all...] |
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
| codegen.ml | 15 (* Create an alloca instruction in the entry block of the function. This 21 let rec codegen_expr = function 87 | None -> raise (Error "unknown function referenced") 104 * to it at the end of the function. *) 287 let codegen_proto = function 289 (* Make the function type: double(double,double) etc. *) 301 raise (Error "redefinition of function"); 305 raise (Error "redefinition of function with different # args"); 335 let codegen_func the_fpm = function 336 | Ast.Function (proto, body) - [all...] |
| /ndk/build/core/ |
| init.mk | 70 # Function : ndk_log 262 # On Cygwin, define the 'cygwin-to-host-path' function here depending on the 269 # _very_ slow, try to generate a Make function that performs the mapping 274 # case our automatic substitution function doesn't work (only likely if you 277 # The function for 2/ is generated by an awk script. It's really a series 306 # Call an awk script to generate a Makefile fragment used to define a function
|
| /external/apache-xml/src/main/java/org/apache/xalan/processor/ |
| StylesheetHandler.java | 49 import org.apache.xpath.functions.Function; 72 * The function table of XPath and XSLT; 219 * Utility function to see if the stack contains the given URL. [all...] |
| /external/clang/include/clang/AST/ |
| DeclBase.h | 75 /// typedef, function, struct, etc. 137 /// This declaration is a friend function. A friend function 448 /// whether the function is used. 567 /// scoped decl is defined outside the current function or method. This is 569 /// could be defined inside or outside a function etc). 574 /// \brief If this decl is defined inside a function/method/block it returns 649 /// such as a function or method definition, this method returns the 654 /// code, such as a function or method definition. 680 /// \brief Whether this declaration is a function or function template [all...] |
| /external/clang/lib/AST/ |
| DeclTemplate.cpp | 115 // Find the first declaration of this function template. 249 L->AddedCXXTemplateSpecialization(this, Info->Function); [all...] |
| DumpXML.cpp | 654 dispatch(Info->Function);
|
| /external/clang/tools/scan-build/ |
| scan-build | 303 Function => $2, 536 function SetDisplay(RowClass, DisplayVal) 546 function CopyCheckedStateToCheckButtons(SummaryCheckButton) { 558 function returnObjById( id ) { 570 function ToggleDisplay(CheckButton, ClassName) { 927 # DisplayHelp - Utility function to display all help options. [all...] |
| /external/llvm/include/llvm/Analysis/ |
| Dominators.h | 19 #include "llvm/Function.h" 179 /// DominatorTree - Calculate the immediate dominator tree for a function. 328 /// getRootNode - This returns the entry node for the CFG of the function. If 329 /// this tree represents the post-dominance relations for a function, however, 331 /// there are multiple exit nodes from a particular function. Consumers of 352 // this function doesn't actually return the values returned 369 /// block of the function containing it. 414 // this function doesn't actually return the values returned 429 "Two blocks are not in same function"); 653 /// recalculate - compute a dominator tree for the given function [all...] |
| LoopInfo.h | 15 // This analysis calculates the nesting structure of loops in a function. For 466 "Loop contains function entry block!"); 543 /// function can be used as a slightly more aggressive replacement for 555 /// function can be used as a slightly more aggressive replacement for 580 /// function easily understands. 590 /// function easily understands. 636 /// structures in the specified function. 663 /// function. [all...] |
| /external/llvm/lib/Analysis/ |
| LazyValueInfo.cpp | 224 // a function. The correct result is to pick up RHS. [all...] |
| /external/llvm/lib/CodeGen/ |
| PrologEpilogInserter.cpp | 1 //===-- PrologEpilogInserter.cpp - Insert Prolog/Epilog code in function --===// 12 // function. 61 /// createPrologEpilogCodeInserter - This function returns a pass that inserts 70 const Function* F = Fn.getFunction(); 78 // function's frame information. Also eliminates call frame pseudo 82 // Allow the target machine to make some adjustments to the function 86 // Scan the function for modified callee saved registers and insert spill code 92 // enclose regions in the Machine CFG of the function where 102 // Allow the target machine to make final modifications to the function 109 // Add prolog and epilog code to the function. This function is require [all...] |
| /external/llvm/lib/MC/ |
| MCAsmStreamer.cpp | 395 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function 407 case MCSA_ELF_TypeFunction: OS << "function"; break; [all...] |