HomeSort by relevance Sort by last modified time
    Searched refs:Function (Results 801 - 825 of 1083) sorted by null

<<31323334353637383940>>

  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 529 bool runOnFunction(Function &F);
609 bool iterateOnFunction(Function &F);
610 bool performPRE(Function &F);
834 /// AnalyzeLoadFromClobberingWrite - This function is called when we have a
914 /// AnalyzeLoadFromClobberingStore - This function is called when we have a
    [all...]
EarlyCSE.cpp 316 bool runOnFunction(Function &F);
564 bool EarlyCSE::runOnFunction(Function &F) {
  /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/bindings/ocaml/llvm/
llvm.mli 64 | Function
277 | Function
316 (** See the function [llvm::getGlobalContext]. *)
320 name [name] in the context [context]. See the function
443 (** {7 Operations on function types} *)
445 (** [function_type ret_ty param_tys] returns the function type returning
451 [function_type ret_ty param_tys] except that it returns the function type
457 (** [is_var_arg fty] returns [true] if [fty] is a varargs function type, [false]
461 (** [return_type fty] gets the return type of the function type [fty].
465 (** [param_types fty] gets the parameter types of the function type [fty]
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /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/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 38 /// The index of the allocator function.
88 /// Given the function name, returns the index of the allocator/deallocator
89 /// function.
190 // Make sure the function is of the right type (allocator vs deallocator).
198 // The function is not tracked.
284 if (!FD || FD->getKind() != Decl::Function)
291 // If it is a call to an allocator function, it could be a double allocation.
356 // have entered as an enclosing function parameter.
446 if (!FD || FD->getKind() != Decl::Function)
457 // If the argument entered as an enclosing function parameter, skip it t
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
PopulatedCachesTest.java 26 import com.google.common.base.Function;
301 new Function<CacheBuilder<Object, Object>, LoadingCache<Object, Object>>() {
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSortedMultisetTest.java 20 import com.google.common.base.Function;
156 .onResultOf(new Function<String[], Iterable<Comparable>>() {
  /external/libusb_aah/libusb/os/
windows_usb.h 344 #define CTL_CODE(DeviceType, Function, Method, Access)( \
345 ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method))
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 26 #include "llvm/IR/Function.h"
219 /// F - The function we are analyzing.
221 Function *F;
223 /// LI - The loop information for the function we are currently analyzing.
346 /// this function as they are computed.
718 /// getSCEVAtScope - This is a convenience function which does
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 330 // FUNCTION: [isvararg, retty, paramty x N]
436 // descriptors for global variables, and function prototype info.
550 // Emit the function proto information.
552 // FUNCTION: [type, callingconv, isproto, linkage, paramattrs, alignment,
699 static void WriteFunctionLocalMetadata(const Function &F,
719 static void WriteMetadataAttachment(const Function &F,
730 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
    [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
726 /// BeginFunction - Gather pre-function exception information. Assumes it's
727 /// being emitted immediately after the function entry point.
732 /// 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/ARM/
ARMBaseRegisterInfo.cpp 32 #include "llvm/IR/Function.h"
58 const Function *F = MF->getFunction();
286 // pointer will be sufficient to reach. If a function has a smallish
304 // 2. This is a Thumb1 function (it's not useful, so we don't bother), or
305 // 3. There are VLAs in the function and the base pointer is disabled.
326 const Function *F = MF.getFunction();
487 // Without a virtual base register, if the function has variable sized
490 // Note that the incoming offset is based on the SP value at function entry,
506 // The incoming offset is relating to the SP at the start of the function,
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 19 #include "llvm/IR/Function.h"
141 Function *F = IBB->getParent();
142 Function *CTLZi32 = Intrinsic::getDeclaration(F->getParent(), Intrinsic::ctlz,
337 "Trying to expand remainder from a non-remainder function");
387 "Trying to expand division from a non-division function");
432 "Trying to expand remainder from a non-remainder function");
484 "Trying to expand division from a non-division function");
  /external/v8/src/
proxy.js 34 $Proxy.create = function(handler, proto) {
44 $Proxy.createFunction = function(handler, callTrap, constructTrap) {
54 constructTrap = function() {
62 handler, callTrap, constructTrap, $Function.prototype)
71 function DerivedConstructTrap(callTrap) {
72 return function() {
82 function DelegateCallAndConstruct(callTrap, constructTrap) {
83 return function() {
89 function DerivedGetTrap(receiver, name) {
101 function DerivedSetTrap(receiver, name, val)
    [all...]
  /external/v8/test/cctest/
test-accessors.cc 43 using ::v8::Function;
59 Local<Function> fun = fun_templ->GetFunction();
180 "obj.__defineGetter__('x', function() { return false; });"
185 "obj.__defineSetter__('x', function() { setter_called = true; });"
192 "obj2.__defineGetter__('x', function() { return false; });"
199 "obj2.__defineSetter__('x', function() { setter_called = true; });"
416 "function foo() {"
  /external/v8/test/mjsunit/compiler/
math-floor-global.js 34 function testFloor(expect, input) {
35 var test = new Function('n',
44 function zero() {
46 return (function() { return x - 0.5; })();
49 function test() {
59 function ifloor(x) {
150 function floorsum(i, n) {
159 // The optimized function will deopt. Run it with enough iterations to try
math-floor-local.js 33 function testFloor(expect, input) {
34 var test = new Function('n',
44 function zero() {
46 return (function() { return x - 0.5; })();
49 function test() {
59 function ifloor(x) {
150 function floorsum(i, n) {
159 // The optimized function will deopt. Run it with enough iterations to try
  /external/v8/test/mjsunit/
keywords-and-reserved_words.js 35 function isKeyword(x)
46 function isStrictKeyword(x)
57 function classifyIdentifier(x)
75 function testKeyword(word) {
95 // Function names and arguments
96 assertThrows("function " + word + " () { }", SyntaxError);
97 assertThrows("function foo (" + word + ") {}", SyntaxError);
98 assertThrows("function foo (a, " + word + ") { }", SyntaxError);
99 assertThrows("function foo (" + word + ", a) { }", SyntaxError);
100 assertThrows("function foo (a, " + word + ", b) { }", SyntaxError)
    [all...]
math-floor.js 32 function testFloor(expect, input) {
33 var test = new Function('n',
42 function zero() {
44 return (function() { return x - 0.5; })();
47 function test() {
57 function ifloor(x) {
148 function floorsum(i, n) {
157 // The optimized function will deopt. Run it with enough iterations to try
math-round.js 31 function testRound(expect, input) {
34 var doRound = new Function('input',
51 function roundsum(i, n) {
60 // The optimized function will deopt. Run it with enough iterations to try
  /external/v8/test/mjsunit/third_party/
string-trim.js 35 // testing Function's *.call() and *.apply() methods.
100 ({toString:function(){return 'wibble'}})
  /external/v8/tools/
logreader.js 40 function LogReader(dispatchTable) {
65 LogReader.prototype.printError = function(str) {
75 LogReader.prototype.processLogChunk = function(chunk) {
85 LogReader.prototype.processLogLine = function(line) {
94 * @param {number} func JS Function.
98 LogReader.prototype.processStack = function(pc, func, stack) {
123 LogReader.prototype.skipDispatch = function(dispatch) {
134 LogReader.prototype.dispatchLogRow_ = function(fields) {
151 } else if (typeof parser == 'function') {
171 LogReader.prototype.processLog_ = function(lines)
    [all...]

Completed in 2241 milliseconds

<<31323334353637383940>>