| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
| 10.2.2-2.js | 87 function test() { 100 function MyObject( value ) { 103 this.toString = new Function( "return this.value+''" );
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/ |
| 15.7.1.js | 24 ECMA Section: 15.7.1 The Number Constructor Called as a Function 28 Description: When Number is called as a function rather than as a 44 var TITLE = "The Number Constructor Called as a Function"; 52 function getTestCases() { 74 function test() { 87 function MyObject( value ) { 89 this.valueOf = new Function( "return this.value" );
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/ |
| 15.3.4.4-1.js | 38 * SUMMARY: ECMA conformance of Function.prototype.call 40 * Function.prototype.call(thisArg [,arg1 [,arg2, ...]]) 47 var summary = 'Testing ECMA conformance of Function.prototype.call'; 56 function F0(a) 61 function F1(a) 66 function F2() 74 * Function.prototype.call.length should return 1 77 actual = Function.prototype.call.length; 84 * called function must be passed the global object as |this| 94 * the called function should be invoked with an empty argument lis [all...] |
| /external/webkit/Source/WebCore/bindings/v8/custom/ |
| V8ScriptProfileNodeCustom.cpp | 66 v8::Local<v8::Function> function = V8ScriptProfileNode::GetTemplate()->GetFunction(); 67 if (function.IsEmpty()) { 71 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function);
|
| /external/webkit/Source/WebKit/chromium/src/ |
| BoundObject.cpp | 72 v8::Local<v8::Function> constructor = m_hostTemplate->GetFunction();
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/ |
| DebuggerMessage.java | 28 public enum Function 226 public static Function valueOf(int value) { 423 public static com.google.protobuf.Internal.EnumLiteMap<Function> 427 private static com.google.protobuf.Internal.EnumLiteMap<Function> 429 new com.google.protobuf.Internal.EnumLiteMap<Function>() { 430 public Function findValueByNumber(int number) { 431 return Function.valueOf(number) 437 private Function(int index, int value) { 442 // @@protoc_insertion_point(enum_scope:com.android.glesv2debugger.Message.Function) 581 // required .com.android.glesv2debugger.Message.Function function = 2 [default = NEG] [all...] |
| MessageData.java | 20 import com.android.ide.eclipse.gldebugger.DebuggerMessage.Message.Function; 41 final Function function = msg.getFunction(); local 42 if (function != Message.Function.ACK && msg.getType() != Type.BeforeCall) 44 builder.append(columns[0] = function.name()); 64 switch (function) {
|
| /external/giflib/ |
| gif_lib.h | 123 * GIF89 extension function codes 283 int Function; /* Holds the type of the Extension block. */ 290 int Function; /* DEPRECATED: Use ExtensionBlocks[x].Function instead */ 296 extern void MakeExtension(SavedImage * New, int Function);
|
| /external/guava/src/com/google/common/collect/ |
| Ordering.java | 21 import com.google.common.base.Function; 53 * are. For example, if {@code ordering} and {@code function} can themselves be 54 * serialized, then {@code ordering.onResultOf(function)} can as well. 206 new Function<Object, Integer>() { 319 * a function to them, then comparing those results using {@code this}. For 327 public <F> Ordering<F> onResultOf(Function<F, ? extends T> function) { 328 return new ByFunctionOrdering<F, T>(function, this);
|
| /external/llvm/include/llvm/Analysis/ |
| ProfileInfo.h | 37 class Function; 48 raw_ostream& operator<<(raw_ostream &O, const Function *F); 67 // function was entered. 73 // FunctionInformation - Count the number of times a function is executed. 86 // getFunction() - Returns the Function for an Edge, checking for validity. 193 dbgs() << "BasicBlocks for Function " << F << ":\n"; 202 dbgs() << "Edges for Function " << ei->first << ":\n"; 209 assert(F && "No function given, this is not supported!"); 213 dbgs() << "BasicBlocks for Function " << F << ":\n"; 238 typedef ProfileInfoT<Function, BasicBlock> ProfileInfo [all...] |
| RegionInfo.h | 95 /// RegionNodes for this BasicBlock. Each with the getParent() function 112 /// check the type of the content with the isSubRegion() function call. 248 /// @param DT The dominator tree of the current function. 298 /// The toplevel region represents the whole function. 384 /// In case a NULL pointer is passed to this function the result 385 /// is false, except for the region that describes the whole function. 396 /// exist or if the region describes the whole function. 407 /// exist or if the region describes the whole function. 457 /// After calling this function the BasicBlock RegionNodes will be stored at 458 /// different memory locations. RegionNodes obtained before this function i [all...] |
| /external/llvm/include/llvm/Support/ |
| CallSite.h | 40 template <typename FunTy = const Function, 84 /// getCalledValue - Return the pointer to function that is being called... 91 /// getCalledFunction - Return the function being called if this is a direct 152 /// getCaller - Return the caller function for this call site 241 /// argument to the called function. 266 class CallSite : public CallSiteBase<Function, Value, User, Instruction, 268 typedef CallSiteBase<Function, Value, User, Instruction,
|
| InstVisitor.h | 14 #include "llvm/Function.h" 58 /// CAV.visit(function); 62 /// Function, and Module, which recursively process all contained instructions. 74 /// virtual function call overhead. Defining and using an InstVisitor is just 98 void visit(Function &F) { 109 void visit(Function *F) { visit(*F); } 135 // When visiting a module, function or basic block directly, these methods get 139 void visitFunction (Function &F) {} 210 // function. If this function is not overloaded in the user's subclass, the [all...] |
| /external/llvm/include/llvm/ |
| Value.h | 29 class Function; 52 /// the super class of other important classes such as Instruction and Function. 201 FunctionVal, // This is an instance of Function 363 template <> struct isa_impl<Function, Value> { 383 return isa<GlobalVariable>(Val) || isa<Function>(Val) ||
|
| /external/llvm/lib/Analysis/ |
| MemDepPrinter.cpp | 26 const Function *F; 48 virtual bool runOnFunction(Function &F); 82 "Print MemDeps of function", false, true) 85 "Print MemDeps of function", false, true) 94 bool MemDepPrinter::runOnFunction(Function &F) {
|
| ProfileInfoLoaderPass.cpp | 90 /// createProfileLoaderPass - This function returns a Pass that loads the 165 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { 186 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { 233 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
|
| /external/llvm/lib/Target/ARM/ |
| ARMJITInfo.cpp | 21 #include "llvm/Function.h" 34 /// JITCompilerFunction - This contains the address of the JIT function used to 35 /// compile a function lazily. 46 // CompilationCallback stub - We can't use a C function with inline assembly in 60 // for the real target function right now. We have to act as if this 67 // The LR contains the address of the stub function on entry. 74 // Restoring the LR to the return address of the function that invoked 99 // Return to the (newly modified) stub to invoke the real function. 113 /// ARMCompilationCallbackC - This is the target-specific function invoked 114 /// by the function stub when we did not know the real target of a call [all...] |
| /external/llvm/lib/Target/PowerPC/ |
| PPCJITInfo.cpp | 18 #include "llvm/Function.h" 76 // CompilationCallback stub - We can't use a C function with inline assembly in 143 // CompilationCallback stub - We can't use a C function with inline assembly in 220 ".type PPC64CompilationCallback,@function\n" 335 // Put the address of the target function to call and the address to return to 336 // after calling the target function in a place that is easy to get on the 363 void *PPCJITInfo::emitFunctionStub(const Function* F, void *Fn, 365 // If this is just a call to an external function, emit a branch instead of a 410 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR, 413 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4 [all...] |
| /external/llvm/lib/Transforms/Instrumentation/ |
| GCOVProfiling.cpp | 82 GlobalVariable *buildEdgeLookupTable(Function *F, 87 // Add the function to write out all our counters to the global destructor 192 // function, number of lines belonging to each block, and a set of edges to 242 // A function has a unique identifier, a checksum (we leave as zero) and a 250 Function *F = SP.getFunction(); 252 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { 377 Function *F = SP.getFunction(); 381 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { 430 Function *F = SP.getFunction(); 434 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) [all...] |
| OptimalEdgeProfiling.cpp | 76 Function *Main = M.getFunction("main"); 79 << " with no main function!\n"; 95 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { 162 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
|
| ProfilingUtils.cpp | 24 void llvm::InsertProfilingInitCall(Function *MainFn, const char *FnName, 67 Function::arg_iterator AI; 132 void llvm::InsertProfilingShutdownCall(Function *Callee, Module *Mod) {
|
| /external/llvm/lib/Transforms/Scalar/ |
| CorrelatedValuePropagation.cpp | 17 #include "llvm/Function.h" 47 bool runOnFunction(Function &F); 176 bool CorrelatedValuePropagation::runOnFunction(Function &F) { 181 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
|
| /external/skia/src/images/ |
| SkImageDecoder_libgif.cpp | 138 if (eb->Function == 0xF9 && eb->ByteCount == 4) { 307 if (DGifGetExtension(gif, &temp_save.Function, 321 temp_save.Function = 0;
|
| /external/chromium/base/ |
| tuple.h | 7 // it contains. The convenient MakeTuple() function takes 0 to 6 arguments, 9 // DispatchToMethod and DispatchToFunction take a function pointer or instance 66 // function objects that need to take an arbitrary number of parameters; see 70 // when dispatching to a function that accepts no arguments (see the 602 template <class Function> 603 inline void DispatchToFunction(Function function, const Tuple0& arg) { 604 (*function)(); 607 template <class Function, class A> 608 inline void DispatchToFunction(Function function, const A& arg) [all...] |
| /external/llvm/lib/Analysis/IPA/ |
| CallGraphSCCPass.cpp | 13 // call-graph in SCC order: that is, they process function bottom-up, except for 21 #include "llvm/Function.h" 142 if (Function *F = (*I)->getFunction()) { 149 // The function pass(es) modified the IR, they may have clobbered the 165 /// This function returns true if it devirtualized an existing function call, 167 /// a function pass like GVN optimizes away stuff feeding the indirect call. 189 Function *F = CGN->getFunction(); 192 // Walk the function body looking for call sites. Sync up the call sites in 193 // CGN with those actually in the function [all...] |