HomeSort by relevance Sort by last modified time
    Searched refs:fun (Results 51 - 75 of 307) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/autotest/client/deps/glbench/src/
waffle_stuff.cc 19 #define F(fun, type) type fun = NULL;
156 #define F(fun, type) fun = reinterpret_cast<type>(waffle_get_proc_address(#fun));
  /external/v8/test/mjsunit/
debug-stepin-property-function-call.js 61 fun: function() {
66 obj.fun2 = obj.fun;
70 obj.fun();
75 obj["fun"]();
80 obj.fun.call(obj);
85 obj.fun.apply(obj);
89 var functionName = "fun";
100 var cache = { "fun": "fun" };
131 assertEquals("fun", functionName)
    [all...]
fuzz-accessors.js 54 var fun = function () { }; function
63 [fun, fun],
68 function runTest(fun) {
78 fun(obj, propertyName);
debug-set-variable-value.js 34 // Accepts a function/closure 'fun' that must have a debugger statement inside.
39 new_value, expected_new_result, fun) {
40 var actual_old_result = fun();
68 actual_new_result = fun();
81 // Accepts a closure 'fun' that returns a variable from it's outer scope.
85 new_value, expected_new_result, fun) {
86 var actual_old_result = fun();
89 var fun_mirror = Debug.MakeMirror(fun);
94 var actual_new_result = fun();
113 var fun = this.factory_(true)
    [all...]
debug-liveedit-stepin.js 42 function Replace(fun, original, patch) {
43 var script = Debug.findScript(fun);
44 if (fun.toString().indexOf(original) < 0) return;
simple-constructor.js 97 function testArgs(fun) {
98 obj = new fun();
103 obj = new fun("x");
108 obj = new fun("x", "y");
113 obj = new fun("x", "y", "z");
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
LayoutBinderWriter.kt 39 fun String.stripNonJava() = this.split("[^a-zA-Z0-9]".toRegex()).map{ it.trim() }.joinToCamelCaseAsVar()
56 fun localizeFlag(set : FlagSet, name:String) : FlagSet {
63 fun getUniqueName(base : String, scope : Scope, isPublic : kotlin.Boolean) : String {
83 fun ExprModel.getUniqueFieldName(base : String, isPublic : kotlin.Boolean) : String = ext.getUniqueName(base, Scope.FIELD, isPublic)
84 fun ExprModel.getUniqueMethodName(base : String, isPublic : kotlin.Boolean) : String = ext.getUniqueName(base, Scope.METHOD, isPublic)
85 fun ExprModel.getConstructorParamName(base : String) : String = ext.getUniqueName(base, Scope.CONSTRUCTOR_PARAM, false)
87 fun ExprModel.localizeFlag(set : FlagSet, base : String) : FlagSet = ext.localizeFlag(set, base)
103 fun BindingTarget.superConversion(variable : String) : String {
186 fun Expr.isVariable() = this is IdentifierExpr && this.isDynamic
221 fun Expr.getRequirementFlagSet(expected : Boolean) : FlagSet = conditionalFlags[if(expected) 1 else 0
    [all...]
  /external/clang/test/Layout/
ms-x86-vtordisp.cpp 342 virtual void fun() {} function in struct:GA
346 virtual void fun() {} function in struct:GC
385 virtual void fun() {} function in struct:HA
  /external/clang/test/SemaCXX/
warn-bool-conversion.cpp 127 void fun();
135 assert(fun);
136 assert(fun && "expecting null pointer");
137 // expected-warning@-1{{address of function 'fun' will always evaluate to 'true'}}
member-expr.cpp 130 S fun(); // expected-note{{possible target for call}}
131 int fun(int i); // expected-note{{possible target for call}}
133 return fun.x; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
  /external/clang/test/Parser/
ms-inline-asm.c 15 int 0x2c ; } asm comments are fun! }{
  /external/clang/test/SemaTemplate/
resolve-single-template-id.cpp 38 decltype(oneT<int>)* fun = 0;
  /external/v8/test/mjsunit/es6/
debug-liveedit-new-target-2.js 23 function Replace(fun, original, patch) {
27 var script = Debug.findScript(fun);
  /external/libedit/src/
hist.h 53 hist_fun_t fun; /* Event access */ member in struct:el_history_t
58 ((((*(el)->el_history.fun) ((el)->el_history.ref, &(el)->el_history.ev, \
terminal.c 1009 arrow[A_K_DN].fun.cmd = ED_NEXT_HISTORY;
1014 arrow[A_K_UP].fun.cmd = ED_PREV_HISTORY;
1019 arrow[A_K_LT].fun.cmd = ED_PREV_CHAR;
1024 arrow[A_K_RT].fun.cmd = ED_NEXT_CHAR;
1029 arrow[A_K_HO].fun.cmd = ED_MOVE_TO_BEG;
1034 arrow[A_K_EN].fun.cmd = ED_MOVE_TO_END;
1039 arrow[A_K_DE].fun.cmd = ED_DELETE_NEXT_CHAR;
1064 keymacro_add(el, strA, &arrow[A_K_UP].fun, arrow[A_K_UP].type);
1065 keymacro_add(el, strB, &arrow[A_K_DN].fun, arrow[A_K_DN].type);
1066 keymacro_add(el, strC, &arrow[A_K_RT].fun, arrow[A_K_RT].type)
    [all...]
hist.c 57 el->el_history.fun = NULL;
84 hist_set(EditLine *el, hist_fun_t fun, void *ptr)
88 el->el_history.fun = fun;
218 if ((*(el)->el_history.fun)((el)->el_history.ref, &ev, fn, arg) == -1)
  /external/okhttp/website/static/
app-theme.css 51 .fun { color: #f00; }
  /external/v8/src/wasm/
wasm-function-name-table.cc 36 for (const WasmFunction& fun : module->functions) {
37 WasmName name = module->GetNameOrNull(&fun);
  /external/v8/test/mjsunit/regress/
regress-phi-truncation.js 30 function test(fun, expectation) {
31 assertEquals(1, fun(1));
32 %OptimizeFunctionOnNextCall(fun);
33 assertEquals(expectation, fun(0));
  /external/v8/test/mjsunit/compiler/
regress-funcaller.js 33 function fun(x) { function
34 if (x == 0) return fun.caller;
40 A.prototype.f = fun;
  /external/v8/include/
v8-debug.h 186 * \param fun the function to call
203 Local<Value> Call(v8::Local<v8::Function> fun,
207 v8::Local<v8::Function> fun,
  /toolchain/binutils/binutils-2.25/libiberty/testsuite/
test-strtol.c 74 enum conversion_fun fun; member in struct:test_data_t
132 switch (test_data[i].fun)
  /external/v8/src/
string-stream.cc 467 JSFunction* fun = JSFunction::cast(f); local
468 Object* perhaps_context = fun->context();
472 Context* context = fun->context();
507 JSFunction* fun = JSFunction::cast(f); local
509 PrintPrototype(fun, receiver);
510 *code = fun->code();
526 void StringStream::PrintPrototype(JSFunction* fun, Object* receiver) {
527 Object* name = fun->shared()->name();
529 Isolate* isolate = fun->GetIsolate();
542 Object* key = iter.GetCurrent<JSObject>()->SlowReverseLookup(fun);
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-uuidof.cpp 64 void fun() { function
  /external/ltrace/
read_config_file.c 1127 struct prototype fun; local
1128 prototype_init(&fun);
1133 fun.return_info = parse_lens(plib, loc, &str, NULL, 0, &own, NULL);
1134 if (fun.return_info == NULL) {
1143 prototype_destroy(&fun);
1147 fun.own_return_info = own;
1148 debug(4, " return_type = %d", fun.return_info->type);
1180 if (prototype_push_param(&fun, &param) < 0)
1188 size_t param_num = prototype_num_params(&fun) - have_stop;
1200 if (prototype_push_param(&fun, &param) < 0
    [all...]

Completed in 3714 milliseconds

1 23 4 5 6 7 8 91011>>