| /external/webkit/Source/WebCore/bindings/v8/ |
| WorkerContextExecutionProxy.cpp | 162 v8::Handle<v8::Function> workerContextConstructor = V8DOMWrapper::getConstructorForContext(contextType, context);
|
| /frameworks/compile/slang/ |
| slang_rs_context.cpp | 107 slangAssert(!FD->getName().empty() && "Function name should not be empty"); 115 "static function '%s'\n", FD->getName().str().c_str()); 209 } else if (DI->getKind() == clang::Decl::Function) {
|
| /hardware/ril/mock-ril/src/cpp/ |
| worker_v8.cpp | 96 v8::Function::Cast(*functionValue_)->Call(ai->js_this, 1, &args); 204 "var w1 = new Worker(function (msg) {" 208 "var w2 = new Worker(function (msg) {"
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/ |
| GLFramesView.java | 20 import com.android.ide.eclipse.gldebugger.DebuggerMessage.Message.Function; 432 builder.setFunction(Function.SETPROP); 456 builder.setFunction(Function.SETPROP); 476 builder.setFunction(Message.Function.SETPROP);
|
| /external/clang/lib/Sema/ |
| SemaCodeComplete.cpp | 124 /// \brief If non-NULL, a filter function used to remove any code-completion 143 /// \brief If we're potentially referring to a C++ member function, the set 557 // There is no way to qualify a name declared in a function or method. 656 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(ND)) 657 T = Function->getCallResultType(); 671 // Dig through references, function pointers, and block pointers to 694 if (const FunctionType *Function = T->getAs<FunctionType>()) { 695 T = Function->getResultType(); [all...] |
| SemaAccess.cpp | 91 // the class has access. A local class of a member function 92 // may access the same names that the member function itself 104 FunctionDecl *Function = cast<FunctionDecl>(DC)->getCanonicalDecl(); 105 Functions.push_back(Function); 107 if (Function->getFriendObjectKind()) 108 DC = Function->getLexicalDeclContext(); 110 DC = Function->getDeclContext(); 469 /// Determines whether the given friend function matches anything in 488 /// Determines whether the given friend function template matches 748 // non-static member function is a protected member of its namin [all...] |
| /external/llvm/lib/Transforms/InstCombine/ |
| InstCombineCalls.cpp | 178 // If the caller function is nounwind, mark the call as nounwind, even if the [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/clang/include/clang/AST/ |
| DeclCXX.h | 40 /// \brief Represents any kind of function declaration, whether it is a 41 /// concrete function or a function template. 43 NamedDecl *Function; 45 AnyFunctionDecl(NamedDecl *ND) : Function(ND) { } 48 AnyFunctionDecl(FunctionDecl *FD) : Function(FD) { } 51 /// \brief Implicily converts any function or function template into a 53 operator NamedDecl *() const { return Function; } 55 /// \brief Retrieve the underlying function or function template [all...] |
| DeclTemplate.h | 196 /// class, function, etc.). The TemplateDecl class stores the list of template 259 /// \brief Provides information about a function template specialization, 261 /// instantiated from a function template. 269 : Function(FD), 283 /// \brief The function template specialization that this structure 285 FunctionDecl *Function; 287 /// \brief The function template from which this function template 293 /// \brief The template arguments used to produce the function template 294 /// specialization from the function template [all...] |
| /external/guava/src/com/google/common/collect/ |
| CustomConcurrentHashMap.java | 19 import com.google.common.base.Function; 49 * Function)}). 218 * it using the computer function passed to this builder, or waits for 239 * passed to the computer function as type {@code K} not to mention the 253 Function<? super K, ? extends V> computer) { 481 * Function) 499 V compute(K key, E entry, Function<? super K, ? extends V> computer); 516 * Applies a supplemental hash function to a given hash code, which defends [all...] |
| Maps.java | 20 import com.google.common.base.Function; 438 * supplied function on its corresponding value. 441 * @param keyFunction the function used to produce the key for each value 442 * @return a map mapping the result of evaluating the function {@code 450 // invoking the function. 452 Iterable<V> values, Function<? super V, K> keyFunction) { 700 * Returns a view of a map where each value is transformed by a function. All 706 * Function<Integer, Double> sqrt = new Function<Integer, Double>() { 721 * null values provided that the function is capable of accepting null input [all...] |
| Iterators.java | 21 import com.google.common.base.Function; 712 * Returns an iterator that applies {@code function} to each element of {@code 720 final Function<? super F, ? extends T> function) { 722 checkNotNull(function); 729 return function.apply(from); [all...] |
| /external/llvm/lib/Transforms/Scalar/ |
| JumpThreading.cpp | 105 bool runOnFunction(Function &F); 112 void FindLoopHeaders(Function &F); 144 bool JumpThreading::runOnFunction(Function &F) { 145 DEBUG(dbgs() << "Jump threading on function '" << F.getName() << "'\n"); 154 for (Function::iterator I = F.begin(), E = F.end(); I != E;) { 276 void JumpThreading::FindLoopHeaders(Function &F) { 642 // Remember if SinglePred was the entry block of the function. If so, we [all...] |
| GVN.cpp | 470 bool runOnFunction(Function &F); 549 bool iterateOnFunction(Function &F); 550 bool performPRE(Function &F); 767 /// AnalyzeLoadFromClobberingWrite - This function is called when we have a 847 /// AnalyzeLoadFromClobberingStore - This function is called when we have a 863 /// AnalyzeLoadFromClobberingLoad - This function is called when we have a [all...] |
| /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
| algo.h | 26 * @brief Parallel STL function calls corresponding to the stl_algo.h header. 30 * Inlining policy: Functions that basically only contain one function call, 66 template<typename InputIterator, typename Function> 67 inline Function 68 for_each(InputIterator begin, InputIterator end, Function f, 74 template<typename InputIterator, typename Function, typename IteratorTag> 75 inline Function 76 for_each_switch(InputIterator begin, InputIterator end, Function f, 81 template<typename RandomAccessIterator, typename Function> 82 Function [all...] |
| /external/v8/test/mjsunit/regress/ |
| regress-1200351.js | 44 eval("export Join((void), false.className(), null instanceof continue, return 'a', 0.__defineGetter__(x,function(){native}))") 68 eval("for (-1==continue.toJSONProtocol, GetFunctionFor(break.call(NaN)), (!new RegExp).prototype.new Object()<<void) { debugger.__defineSetter__(null,function(){continue})>>>=GetFunctionFor(-1) }") 88 eval("function X(x) { return new RegExp.shift().concat({debugger,continue}) }; X(return goto 0)") 100 eval("x = return true.__defineGetter__(this,function(){0.2})") 128 eval("export function () { 0.2 }.unshift()") 140 eval("switch (-1.length+new Object().prototype.name) { case (debugger.constructor.sort()): IsPrimitive(undef.__defineSetter__(undef,function(){native})); break; }") 164 eval("new Function(0.2.join().constructor)") 168 eval("label function () { false }.__lookupGetter__(this==1)") 192 eval("SetValueOf(function () { IsSmi(-1) }, unescape(IsPrimitive(void)))") 224 eval("new Function(NaN.shift().toJSONProtocol)" [all...] |
| /external/llvm/lib/AsmParser/ |
| LLParser.cpp | 70 // references after the function was defined. Resolve those now. 72 // Okay, we are referencing an already-parsed function, resolve them now. 73 Function *TheFn = 0; 78 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]); 81 return Error(Fn.Loc, "unknown function referenced by blockaddress"); 131 bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn, 144 "cannot take address of numeric label after the function is defined"); 359 Function *F; 369 Function *F; 758 // Look this name up in the normal function symbol table [all...] |
| /external/llvm/bindings/ocaml/llvm/ |
| llvm.mli | 63 | Function 276 | Function 315 (** See the function [llvm::getGlobalContext]. *) 319 name [name] in the context [context]. See the function 442 (** {7 Operations on function types} *) 444 (** [function_type ret_ty param_tys] returns the function type returning 450 [function_type ret_ty param_tys] except that it returns the function type 456 (** [is_var_arg fty] returns [true] if [fty] is a varargs function type, [false] 460 (** [return_type fty] gets the return type of the function type [fty]. 464 (** [param_types fty] gets the parameter types of the function type [fty] [all...] |
| /external/chromium/chrome/browser/resources/shared/js/ |
| util.js | 19 function $(id) { 27 * @param {string} callbackName The name of the function that the backend calls. 28 * @param {!Function} The function to call. 30 function chromeSend(name, params, callbackName, callback) { 32 global[callbackName] = function() { 47 function url(s) { 66 function parseQueryParams(location) { 77 function findAncestorByClass(el, className) { 78 return findAncestor(el, function(el) [all...] |
| /external/llvm/include/llvm/Analysis/ |
| ScalarEvolution.h | 26 #include "llvm/Function.h" 215 /// F - The function we are analyzing. 217 Function *F; 219 /// LI - The loop information for the function we are currently analyzing. 335 /// this function as they are computed. 707 /// getSCEVAtScope - This is a convenience function which does [all...] |
| /external/llvm/lib/CodeGen/AsmPrinter/ |
| DwarfException.cpp | 184 /// CallToNoUnwindFunction - Return `true' if this is a call to a function 197 const Function *F = dyn_cast<Function>(MO.getGlobal()); 201 // Be conservative. If we have more than one function operand for this 319 // function may throw, create a call-site entry with no landing pad for the 346 /// catches in the function. This tables is reverse indexed base 1. 441 // need to tell the personality function of the unwinder to indirect 720 /// BeginFunction - Gather pre-function exception information. Assumes it's 721 /// being emitted immediately after the function entry point. 726 /// EndFunction - Gather and emit post-function exception information [all...] |
| /external/llvm/lib/CodeGen/ |
| IntrinsicLowering.cpp | 38 static void EnsureFPIntrinsicsExist(Module &M, Function *Fn, 60 /// ReplaceCallWith - This function is used when we want to lower an intrinsic 61 /// call to a call of an external function. This handles hard cases such as 62 /// when there was already a prototype for the external function, and if that 68 // If we haven't already looked up this function, check to see if the 69 // program already contains a function with this name. 344 const Function *Callee = CI->getCalledFunction(); 350 report_fatal_error("Cannot lower a call to a non-intrinsic function '"+ 353 report_fatal_error("Code generator does not support intrinsic function '"+
|
| /external/llvm/lib/Target/PowerPC/ |
| PPCAsmPrinter.cpp | 600 const std::vector<const Function*> &Personalities = MMI->getPersonalities(); 601 for (std::vector<const Function*>::const_iterator I = Personalities.begin(),
|
| /external/llvm/tools/opt/ |
| opt.cpp | 144 // ---------- Define Printers for module and function passes ------------ 165 Function *F = (*I)->getFunction(); 225 virtual bool runOnFunction(Function &F) { 228 << "' for function '" << F.getName() << "':\n"; 294 << "region: '" << R->getNameStr() << "' in function '"
|