| /external/v8/test/mjsunit/regress/ |
| regress-1209.js | 28 function crashMe(n) { 32 return Function.apply(null, nasty);
|
| regress-874178.js | 28 function foo(){} 29 assertTrue(Function.prototype.isPrototypeOf(foo));
|
| /external/v8/test/mjsunit/ |
| unusual-constructor.js | 30 var obj = new (Function.__proto__)();
|
| strict-mode.js | 28 function CheckStrictMode(code, exception) { 33 function outer() {\ 34 function inner() {\n" 39 function outer() {\ 41 function inner() {\n" 47 function CheckFunctionConstructorStrictMode() { 52 // Create non-strict function. No exception. 54 assertDoesNotThrow(function() { 55 Function.apply(this, args); 57 // Create strict mode function. Exception expected [all...] |
| /external/webkit/Source/WebCore/bindings/js/ |
| JSHistoryCustom.cpp | 70 if (entry->attributes() & Function) { 71 if (entry->function() == jsHistoryPrototypeFunctionBack) { 74 } else if (entry->function() == jsHistoryPrototypeFunctionForward) { 77 } else if (entry->function() == jsHistoryPrototypeFunctionGo) { 111 if (entry->attributes() & Function) { 112 if (entry->function() == jsHistoryPrototypeFunctionBack) { 116 } else if (entry->function() == jsHistoryPrototypeFunctionForward) { 120 } else if (entry->function() == jsHistoryPrototypeFunctionGo) {
|
| /external/webkit/Source/WebCore/bindings/v8/custom/ |
| V8HTMLDocumentCustom.cpp | 64 v8::Local<v8::Function> shadowConstructor = shadowTemplate->GetFunction(); 143 v8::Local<v8::Value> function = global->Get(v8::String::New("open")); local 144 // If the open property is not a function throw a type error. 145 if (!function->IsFunction()) { 146 throwError("open is not a function"); 149 // Wrap up the arguments and call the function. 157 v8::Local<v8::Value> result = proxy->callFunction(v8::Local<v8::Function>::Cast(function), global, args.Length(), params);
|
| V8InjectedScriptManager.cpp | 57 v8::Local<v8::Function> function = V8InjectedScriptHost::GetTemplate()->GetFunction(); local 58 if (function.IsEmpty()) { 62 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function); 94 // a single anonymous function(it's anonymous to avoid cluttering the global object with 95 // inspector's stuff) the function is called a few lines below with InjectedScriptHost wrapper, 96 // injected script id and explicit reference to the inspected global object. The function is expected 108 v8::Local<v8::Value> injectedScriptValue = v8::Function::Cast(*v)->Call(windowGlobal, 3, args);
|
| /frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
| BitcodeReader.cpp | 50 /// This function strips all debug info intrinsics, except for llvm.dbg.declare. 51 /// If an llvm.dbg.declare intrinsic is invalid, then this function simply 54 if (Function *FuncStart = M->getFunction("llvm.dbg.func.start")) { 60 if (Function *StopPoint = M->getFunction("llvm.dbg.stoppoint")) { 66 if (Function *RegionStart = M->getFunction("llvm.dbg.region.start")) { 72 if (Function *RegionEnd = M->getFunction("llvm.dbg.region.end")) { 78 if (Function *Declare = M->getFunction("llvm.dbg.declare")) { 104 std::vector<Function*>().swap(FunctionsWithBodies); 458 /// been decoded from the given integer. This function must stay in sync with 630 // FUNCTION: [vararg, attrid, retty, paramty x N [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
| TraceFileParserTask.java | 20 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 233 if (c.getFunction() == Function.eglSwapBuffers) {
|
| /ndk/build/core/ |
| definitions.mk | 41 # Function : assert-defined 55 # Function : check-required-vars 74 # Function : generate-dir 98 # Function : generate-file-dir 119 # Function : generate-list-file 132 # This function is used to generate such a list file from a long 137 # Helper functions because the GNU Make $(word ...) function does 316 # Function : link-whole-archives 320 # Rationale: This function is used to put the list of whole static libraries 323 # This function also calls host-path to translate the librar [all...] |
| /external/llvm/lib/CodeGen/SelectionDAG/ |
| FunctionLoweringInfo.cpp | 15 #define DEBUG_TYPE "function-lowering-info" 27 #include "llvm/IR/Function.h" 62 void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf) { 67 // Check whether the function can return without sret-demotion. 77 Function::const_iterator BB = Fn->begin(), EB = Fn->end(); 188 /// clear - Clear out all the function-specific state. This returns this 190 /// different function. 218 /// In the case that the given value has struct or array type, this function 377 /// being passed to this variadic function, and set the MachineModuleInfo's 407 isa<Function>(CE->getOperand(0)) & [all...] |
| /external/llvm/lib/IR/ |
| AsmWriter.cpp | 60 const Function *M = I->getParent() ? I->getParent()->getParent() : 0; 335 /// TheFunction - The function for which we are holding slot numbers. 336 const Function* TheFunction; 343 /// fMap - The slot map for the function level data. 357 /// Construct from a function, starting out in incorp state. 358 explicit SlotTracker(const Function *F); 367 /// If you'd like to deal with a function instead of just a module, use 369 void incorporateFunction(const Function *F) { 375 /// most recently incorporated function from the SlotTracker. This 393 /// This function does the actual initialization [all...] |
| Value.cpp | 148 if (Function *PP = P->getParent()) 151 if (Function *P = BB->getParent()) 157 if (Function *P = A->getParent()) 198 if (Function *F = dyn_cast<Function>(this))
|
| Verifier.cpp | 10 // This file defines the function verifier interface, that can be used for some 29 // * The entry node to a function must not have predecessors 32 // * Verify that a function's argument list agrees with it's declared type. 36 // agree with the function return value type. 37 // * Function call argument types match the function prototype 42 // * All landingpad instructions must use the same personality function with 43 // the same function. 91 bool runOnFunction(Function &F) { 94 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) [all...] |
| /external/v8/include/ |
| v8.h | 97 class Function; 125 * A weak reference callback function. 311 * persistent handle as an argument to a function you will not get two 383 * callback to the given V8::WeakReferenceCallback function, passing 636 * when this function was called. When run it will always use this 654 * when this function was called. When run it will always use this 693 * Returns the resource name for the script from where the function causing 699 * Returns the resource data for the script from where the function causing 805 * Returns the number, 1-based, of the line for the associate function call. 813 * Returns the 1-based column offset on the line for the associated function [all...] |
| /external/llvm/lib/Bitcode/Reader/ |
| BitcodeReader.cpp | 33 Function *F = BlockAddrFwdRefs.begin()->first; 48 std::vector<Function*>().swap(FunctionsWithBodies); 433 /// been decoded from the given integer. This function must stay in sync with 680 // FUNCTION: [vararg, attrid, retty, paramty x N] 682 return Error("Invalid FUNCTION type record"); 693 return Error("invalid type in function type"); 699 // FUNCTION: [vararg, retty, paramty x N] 701 return Error("Invalid FUNCTION type record"); 712 return Error("invalid type in function type"); [all...] |
| /external/llvm/tools/llvm-stress/ |
| llvm-stress.cpp | 38 cl::desc("The estimated size of the generated function (# of instrs)"), 95 /// Generate an empty function with a default argument list. 96 Function *GenEmptyFunction(Module *M) { 112 Function *Func = Function::Create(FuncTy, GlobalValue::ExternalLinkage, 610 void FillFunction(Function *F, Random &R) { 619 for (Function::arg_iterator it = F->arg_begin(), e = F->arg_end(); 657 void IntroduceControlFlow(Function *F, Random &R) { 688 Function *F = GenEmptyFunction(M.get());
|
| /external/guava/guava-tests/test/com/google/common/collect/ |
| MultimapsTest.java | 28 import com.google.common.base.Function; 762 final Function<String, Integer> stringLengthFunction = 763 new Function<String, Integer>() { 796 Function<Integer, Integer> square = new Function<Integer, Integer>() { 814 Multimaps.transformValues(multimap, new Function<String, Integer>() { 829 Function<Integer, Integer> square = new Function<Integer, Integer>() { [all...] |
| Collections2Test.java | 27 import com.google.common.base.Function; 329 private static final Function<String, String> REMOVE_FIRST_CHAR 330 = new Function<String, String>() {
|
| /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/ |
| util.js | 23 function log(msg) {}
36 var TYPE_function = 'function';
41 * Wrapper for the eval() builtin function to evaluate expressions and
51 function jsEval(expr) {
59 // function literals in IE.
60 // e.g. eval("(function() {})") returns undefined, and not a function
69 function jsLength(obj) {
73 function assert(obj) {}
81 function copyProperties(to, from) { [all...] |
| /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/ |
| util.js | 23 function log(msg) {} 36 var TYPE_function = 'function'; 41 * Wrapper for the eval() builtin function to evaluate expressions and 51 function jsEval(expr) { 59 // function literals in IE. 60 // e.g. eval("(function() {})") returns undefined, and not a function 69 function jsLength(obj) { 73 function assert(obj) {} 81 function copyProperties(to, from) [all...] |
| /external/chromium/chrome/common/ |
| sqlite_utils.cc | 18 // the Handler() function. 341 Function dtor) { 372 Function dtor) { 378 Function dtor) {
|
| /external/guava/guava/src/com/google/common/base/ |
| Predicates.java | 224 * @param target the collection that may contain the function input 231 * Returns the composition of a function and a predicate. For every {@code x}, 232 * the generated predicate returns {@code predicate(function(x))}. 234 * @return the composition of the provided function and predicate 237 Predicate<B> predicate, Function<A, ? extends B> function) { 238 return new CompositionPredicate<A, B>(predicate, function); 517 /** @see Predicates#compose(Predicate, Function) */ 521 final Function<A, ? extends B> f; 523 private CompositionPredicate(Predicate<B> p, Function<A, ? extends B> f) [all...] |
| /external/guava/guava/src/com/google/common/collect/ |
| Ordering.java | 25 import com.google.common.base.Function; 59 * are. For example, if {@code ordering} and {@code function} can themselves be 60 * serialized, then {@code ordering.onResultOf(function)} can as well. 212 new Function<Object, Integer>() { 326 * a function to them, then comparing those results using {@code this}. For 334 public <F> Ordering<F> onResultOf(Function<F, ? extends T> function) { 335 return new ByFunctionOrdering<F, T>(function, this);
|
| /external/llvm/include/llvm/Analysis/ |
| AliasAnalysis.h | 185 /// isNoAlias - A trivial helper function to check to see if the specified 237 /// ModRefBehavior - Summary of how a function affects memory in the program. 242 /// DoesNotAccessMemory - This function does not perform any non-local loads 250 /// OnlyReadsArgumentPointees - The only memory references in this function 258 /// function (if it has any) are non-volatile loads and stores from objects 264 /// OnlyReadsMemory - This function does not perform any non-local stores or 272 /// UnknownModRefBehavior - This indicates that the function could not be 280 /// getModRefBehavior - Return the behavior when calling the given function. 282 virtual ModRefBehavior getModRefBehavior(const Function *F); 299 /// doesNotAccessMemory - If the specified function is known to never read o [all...] |