OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Function
(Results
551 - 575
of
1083
) sorted by null
<<
21
22
23
24
25
26
27
28
29
30
>>
/external/llvm/lib/Transforms/Instrumentation/
BlackList.cpp
21
#include "llvm/IR/
Function
.h"
87
bool BlackList::isIn(const
Function
&F) const {
/external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp
75
///
function
we have found no alloca instructions, these calls can be marked
83
bool ContractAutorelease(
Function
&F, Instruction *Autorelease,
95
virtual bool runOnFunction(
Function
&F);
177
ObjCARCContract::ContractAutorelease(
Function
&F, Instruction *Autorelease,
347
bool ObjCARCContract::runOnFunction(
Function
&F) {
362
// keyword. Be conservative if the
function
has variadic arguments.
450
// Be conservative if the
function
has any alloca instructions.
528
// If this
function
has no escaping allocas or suspicious vararg usage,
/external/skia/legacy/src/images/
SkMovie_gif.cpp
66
if (image->ExtensionBlocks[j].
Function
== GRAPHICS_EXT_FUNC_CODE)
225
if (eb->
Function
== GRAPHICS_EXT_FUNC_CODE &&
255
if (eb->
Function
== GRAPHICS_EXT_FUNC_CODE &&
273
if (eb->
Function
== GRAPHICS_EXT_FUNC_CODE &&
/external/skia/src/images/
SkMovie_gif.cpp
70
if (image->ExtensionBlocks[j].
Function
== GRAPHICS_EXT_FUNC_CODE)
229
if (eb->
Function
== GRAPHICS_EXT_FUNC_CODE &&
259
if (eb->
Function
== GRAPHICS_EXT_FUNC_CODE &&
277
if (eb->
Function
== GRAPHICS_EXT_FUNC_CODE &&
/external/v8/include/
v8-debug.h
178
* Client data passed to DebugBreakForCommand
function
. The
189
* Debug event callback
function
.
203
* Debug event callback
function
.
213
* Debug message callback
function
.
228
* Debug message callback
function
.
238
* Debug host dispatch callback
function
.
243
* Callback
function
for the host to ensure debug messages are processed.
292
* Register a callback
function
to be called when a debug message has been
306
* Run a JavaScript
function
in the debugger.
307
* \param fun the
function
to cal
[
all
...]
/external/v8/test/cctest/
test-compiler.cc
58
const char* PrintExtension::kSource = "native
function
print();";
242
"
function
foo() { var x = 87; return x; }\n"
244
"
function
bar() { var x; x = 99; return x; }\n"
246
"
function
baz() { var x = 1, y, z = 2; y = 3; return x + y + z; }\n"
248
"
function
Cons0() { this.x = 42; this.y = 87; }\n"
251
"
function
Cons2(x, y) { this.sum = x + y; }\n"
280
// Tests calling a builtin
function
from C/C++ code, and the builtin
function
290
const char* source = "
function
foo(a) { gc(), print(a); }";
335
const char function_f[] = "
function
f() {}"
[
all
...]
test-deoptimization.cc
109
v8::Local<v8::
Function
> fun =
110
v8::Local<v8::
Function
>::Cast(obj->Get(v8_str(property_name)));
119
// Test lazy deoptimization of a simple
function
.
124
"
function
h() { %DeoptimizeFunction(f); }"
125
"
function
g() { count++; h(); }"
126
"
function
f() { g(); };"
135
// Test lazy deoptimization of a simple
function
. Call the
function
after the
141
"
function
g() { count++; %DeoptimizeFunction(f); f(false); }"
142
"
function
f(x) { if (x) { g(); } else { return } };
[
all
...]
/external/webkit/Source/JavaScriptCore/runtime/
Lookup.cpp
75
ASSERT(entry->attributes() &
Function
);
79
JSFunction*
function
;
local
83
function
= new (exec) JSFunction(exec, globalObject, globalObject->functionStructure(), entry->functionLength(), propertyName, exec->globalData().getHostFunction(entry->
function
(), entry->generator()));
86
function
= new (exec) JSFunction(exec, globalObject, globalObject->functionStructure(), entry->functionLength(), propertyName, entry->
function
());
88
thisObj->putDirectFunction(exec->globalData(), propertyName,
function
, entry->attributes());
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.2-1.js
29
The toString
function
is not generic; it generates
47
function
getTestCases() {
80
function
test() {
93
function
MyObject( value ) {
95
this.valueOf = new
Function
( "return this.value" );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.4.3.js
48
function
getTestCases() {
56
var myfunction = new
Function
();
80
"myfunction = new
Function
(); myfunction.valueOf = Object.prototype.valueOf; myfunction.valueOf()",
105
function
test() {
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.10-1.js
54
Note that the substring
function
is intentionally generic; it does not require
72
function
getTestCases() {
168
// this is a
function
object
170
"var obj = new
Function
(); obj.substring = String.prototype.substring; obj.toString = Object.prototype.toString; obj.substring(8, Infinity)",
171
"
Function
]",
172
eval("var obj = new
Function
(); obj.substring = String.prototype.substring; obj.toString = Object.prototype.toString; obj.substring(8,Infinity)") );
201
function
test() {
214
function
MyObject( value ) {
217
this.toString = new
Function
( "return this.value+''" );
15.5.4.9-1.js
62
function
getTestCases() {
152
// this is a
function
object
154
"var obj = new
Function
(); obj.substring = String.prototype.substring; obj.toString = Object.prototype.toString; obj.substring(8)",
155
"
Function
]",
156
eval("var obj = new
Function
(); obj.substring = String.prototype.substring; obj.toString = Object.prototype.toString; obj.substring(8)") );
185
function
test() {
198
function
MyObject( value ) {
201
this.toString = new
Function
( "return this.value+''" );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
15.3.4.3-1.js
38
* SUMMARY: ECMA conformance of
Function
.prototype.apply
40
*
Function
.prototype.apply(thisArg, argArray)
47
var summary = 'Testing ECMA conformance of
Function
.prototype.apply';
56
function
F0(a)
61
function
F1(a)
66
function
F2()
74
*
Function
.prototype.apply.length should return 2
77
actual =
Function
.prototype.apply.length;
84
* called
function
must be passed the global object as |this|
94
* called
function
should be invoked with an empty argument lis
[
all
...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
scope-004.js
58
with (
Function
)
124
function
localA()
137
function
localB()
150
function
localC(obj)
167
function
localD(obj)
183
function
addThis()
192
function
test()
/external/webkit/Source/WebCore/bindings/v8/
V8WorkerContextEventListener.cpp
62
// The callback
function
on XMLHttpRequest can clear the event listener and destroys 'this' object. Keep a local reference to it.
87
v8::Local<v8::
Function
> handlerFunction = getListenerFunction(context);
/external/webkit/Source/WebCore/css/
CSSParserValues.h
51
CSSParserFunction*
function
;
member in union:WebCore::CSSParserValue::__anon17721
55
Function
= 0x100001,
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s
14
; *
Function
: armVCM4P2_SetPredDir
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s
14
; *
Function
: armVCM4P2_SetPredDir
/frameworks/base/tools/preload/
sorttable.js
22
init:
function
() {
23
// quit if this
function
has already been called
25
// flag this
function
so we don't do the same thing twice
34
forEach(document.getElementsByTagName('table'),
function
(table) {
42
makeSortable:
function
(table) {
84
if (mtch && typeof sorttable["sort_"+override] == '
function
') {
92
dean_addEvent(headrow[i],"click",
function
(e) {
123
forEach(theadrow.childNodes,
function
(cell) {
166
guessType:
function
(table, column) {
199
getInnerText:
function
(node)
[
all
...]
/frameworks/compile/libbcc/lib/AndroidBitcode/ARM/
ARMABCExpandVAArg.cpp
19
#include <llvm/IR/
Function
.h>
/frameworks/compile/libbcc/lib/AndroidBitcode/Mips/
MipsABCExpandVAArg.cpp
19
#include <llvm/IR/
Function
.h>
/frameworks/compile/libbcc/lib/Renderscript/
RSEmbedInfo.cpp
24
#include <llvm/IR/
Function
.h>
42
* ForEach-able
function
to be invoked over the appropriate data cells of the
44
* support doing this for any ForEach-able compute kernels. The new
function
45
* name is the original
function
name followed by ".expand". Note that we
46
* still generate code for the original
function
.
75
// followed by a hyphen followed by the identifier (
function
to look up).
/frameworks/compile/libbcc/tools/bcc_strip_attr/
bcc_strip_attr.cpp
52
bool runOnFunction(
Function
&F) {
54
//
Function
or
Function
declaration.
87
"Strip
Function
Attributes Pass");
118
cl::ParseCommandLineOptions(argc, argv, "strip
function
attribute pass\n");
129
// Perform the actual
function
attribute stripping.
/frameworks/compile/slang/
slang_rs_backend.cpp
31
#include "llvm/IR/
Function
.h"
89
// Iterate all
function
declarations in the program.
101
"invalid
function
name prefix, "
107
// Process any non-static
function
declarations
121
"exported
function
parameters may "
174
// Process any static
function
declarations
279
// Dump export
function
info
294
//
Function
name
299
llvm::
Function
*F = M->getFunction(EF->getName());
300
llvm::
Function
*HelperFunction
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
DurationMinimap.java
19
import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.
Function
;
325
} else if (c.getFunction() ==
Function
.glDrawArrays
326
|| c.getFunction() ==
Function
.glDrawElements
327
|| c.getFunction() ==
Function
.eglSwapBuffers) {
Completed in 2417 milliseconds
<<
21
22
23
24
25
26
27
28
29
30
>>