| /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/ |
| proxy_error_handler.js | 20 function ProxyErrorHandler() { 53 * @param {!function} sendResponse Function to call to send a response. 56 handleOnRequest_: function(request, sender, sendResponse) { 72 handleError_: function(details) { 94 getErrorDetails: function() { 102 clearErrorDetails: function() {
|
| /external/chromium/testing/gmock/scripts/ |
| gmock_doctor.py | 169 gcc_regex = (r'In member function \'testing::internal::ReturnAction<R>.*\n' 175 r'note: in instantiation of function template specialization ' 179 You are using a Return() action in a function that returns a reference to 192 r'|(error: control reaches end of non-void function)') 225 r'of function template specialization ' 232 r'of function template specialization ' 263 r'note: in instantiation of member function ' 267 In order to mock this function, Google Mock needs to see the definition 281 gcc_regex = (_GCC_FILE_LINE_RE + r'error: no matching function for ' 282 r'call to \'Truly\(<unresolved overloaded function type>\)' [all...] |
| /external/guava/guava/src/com/google/common/collect/ |
| TreeBasedTable.java | 24 import com.google.common.base.Function; 345 new Function<Map<C, V>, Iterator<C>>() {
|
| Lists.java | 29 import com.google.common.base.Function; 317 * Returns a list that applies {@code function} to each element of {@code 327 * <p>The function is applied lazily, invoked when needed. This is necessary 328 * for the returned list to be a view, but it means that the function will be 330 * {@link List#hashCode}. For this to perform well, {@code function} should be 337 * {@code function} are serializable. The returned list is threadsafe if the 338 * supplied list and function are. 344 List<F> fromList, Function<? super F, ? extends T> function) { 346 ? new TransformingRandomAccessList<F, T>(fromList, function) 358 final Function<? super F, ? extends T> function; field in class:Lists.TransformingSequentialList [all...] |
| /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/ |
| CacheBuilder.java | 23 import com.google.common.base.Function; 116 extends AbstractCache<K, V> implements Function<K, V> {
|
| /external/guava/guava-testlib/src/com/google/common/testing/ |
| NullPointerTester.java | 20 import com.google.common.base.Function; 79 setDefault(Function.class, Functions.identity());
|
| /external/jsilver/src/com/google/clearsilver/jsilver/ |
| JSilver.java | 27 import com.google.clearsilver.jsilver.functions.Function; 392 * Registers a global Function that can be used from any template. 394 public void registerGlobalFunction(String name, Function function) { 395 globalFunctions.registerFunction(name, function); 399 * Registers a global TextFilter as function that can be used from any template. 406 * Registers a global escaper. This also makes it available as a Function named with "_escape"
|
| /external/llvm/include/llvm/Analysis/ |
| DependenceAnalysis.h | 18 // of memory references in a function, returning either NULL, for no dependence, 57 /// memory references in a function. It contains minimal information and 177 /// references in a function. It contains detailed information about the 265 /// a dependence graph for a function (basically a map from instructions 306 Function *F; [all...] |
| /external/llvm/include/llvm/MC/ |
| MCDwarf.h | 231 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas. 234 /// Utility function to emit the encoding to a streamer. 238 /// Utility function to write the encoding to an object writer. 398 Function(0), Instructions(), PersonalityEncoding(), 405 const MCSymbol *Function;
|
| /external/llvm/lib/IR/ |
| LLVMContextImpl.h | 282 DenseMap<std::pair<Function*, BasicBlock*> , BlockAddress*> BlockAddresses; 355 typedef DenseMap<const Function*, unsigned> IntrinsicIDCacheTy;
|
| /external/llvm/lib/Target/R600/ |
| SIAnnotateControlFlow.cpp | 92 virtual bool runOnFunction(Function &F); 289 bool SIAnnotateControlFlow::runOnFunction(Function &F) {
|
| /external/llvm/lib/Transforms/Utils/ |
| LoopUnrollRuntime.cpp | 48 /// This function performs the following: 129 /// This function doesn't create a clone of the loop structure. 149 Function *F = Header->getParent(); 195 // which are used the next time this function is called. 302 Function *F = Header->getParent(); 321 // This function adds the appropriate CFG connections. 326 // Insert the cloned blocks into function just before the original loop
|
| /external/v8/samples/ |
| lineprocessor.cc | 60 * --main-cycle-in-cpp option. Script must declare a function named 61 * "ProcessLine". The main cycle in C++ reads lines and calls this function 64 function ProcessLine(input_line) { 207 // Bind the global 'print' function to the C++ Print callback. 211 // Bind the global 'read_line' function to the C++ Print callback. 283 // If there is no Process function, or if it is not a function, 286 printf("Error: Script does not declare 'ProcessLine' global function.\n"); 290 // It is a function; cast it to a Function [all...] |
| /external/v8/src/ia32/ |
| lithium-codegen-ia32.h | 193 void CallRuntime(const Runtime::Function* fun, 200 const Runtime::Function* function = Runtime::FunctionForId(id); local 201 CallRuntime(function, argc, instr); 209 // Generate a direct call to a known function. Expects the function 211 void CallKnownFunction(Handle<JSFunction> function,
|
| /external/v8/src/x64/ |
| lithium-codegen-x64.h | 184 void CallRuntime(const Runtime::Function* function, 191 const Runtime::Function* function = Runtime::FunctionForId(id); local 192 CallRuntime(function, num_arguments, instr); 199 // Generate a direct call to a known function. Expects the function 201 void CallKnownFunction(Handle<JSFunction> function,
|
| /external/v8/test/cctest/ |
| test-log-stack-tracer.cc | 42 using v8::Function; 110 "native function trace();" 111 "native function js_trace();" 112 "native function js_entry_sp();" 113 "native function js_entry_sp_level2();"; 200 static bool IsAddressWithinFuncCode(JSFunction* function, Address addr) { 201 i::Code* code = function->code(); 213 // This C++ function is called as a constructor, to grab the frame pointer 214 // from the calling function. When this function runs, the stack contain [all...] |
| /external/v8/test/mjsunit/compiler/ |
| regress-serialized-slots.js | 28 // The test verifies that parameters of the outer function are correctly 31 function runner(f, expected) { 37 Function.prototype.bind = function(thisObject) 41 function bound() 43 // Note outer function parameter access (|thisObject|). 51 function sum(x, y) { 55 function test(n) {
|
| /external/v8/test/mjsunit/ |
| mul-exhaustive.js | 31 function stringify(n) { 36 function f(expected, y) { 37 function testEval(string, x, y) { 38 var mulFunction = Function("x, y", "return " + string); 41 function mulTest(expected, x, y) { [all...] |
| store-dictionary.js | 30 // Function that stores property 'x' on an object. 31 function store(obj) { obj.x = 42; } 37 // Make the store ic in the 'store' function go into dictionary store 48 // Attempt to store using the store ic in the 'store' function.
|
| /external/v8/test/mjsunit/regress/ |
| regress-1079.js | 30 // Getting the arguments property of an optimized function should not crash, 31 // even if called through our optimized version of Function.prototype.apply. 33 function optimized() { 38 function unoptimized() {
|
| regress-109195.js | 31 function listener(event, exec_state, event_data, data) { 40 var F = function () { 41 1, function () { 43 (function () { d; }); 51 Function.prototype.__defineGetter__("f", function () { 56 var G = function () { 57 1, function () { 59 (function () { d; });
|
| regress-1170.js | 30 __proto__.__defineSetter__("a", function(v) { setter_value = v; }); 39 // Function declarations are treated specially to match Safari. We do 41 eval("function a() {}"); 44 __proto__.__defineSetter__("b", function(v) { assertUnreachable(); }); 63 __proto__.__defineSetter__("c", function(v) { throw 42; });
|
| regress-117794.js | 31 print = function() {} 33 function constructor() {}; 35 function assertHasOwnProperties(object, limit) { 48 new Function("A Man Called Horse", x1.d);
|
| /external/webkit/Source/WebCore/bindings/js/ |
| JSLocationCustom.cpp | 67 if (entry && (entry->attributes() & Function)) { 68 if (entry->function() == jsLocationPrototypeFunctionReplace) { 71 } else if (entry->function() == jsLocationPrototypeFunctionReload) { 74 } else if (entry->function() == jsLocationPrototypeFunctionAssign) { 104 if (entry && (entry->attributes() & Function)) { 105 if (entry->function() == jsLocationPrototypeFunctionReplace) { 109 } else if (entry->function() == jsLocationPrototypeFunctionReload) { 113 } else if (entry->function() == jsLocationPrototypeFunctionAssign) {
|
| /external/guava/guava-tests/test/com/google/common/collect/ |
| OrderingTest.java | 27 import com.google.common.base.Function; 203 private enum CharAtFunction implements Function<String, Character> { 311 private enum StringLengthFunction implements Function<String, Integer> { 787 new Function<Integer, T>() { 867 static <T> Function<Composite<T>, T> getValueFunction() { 868 return new Function<Composite<T>, T>() {
|