Searched refs:function (Results 226 - 250 of 1935) sorted by relevance

1234567891011>>

/external/lldb/test/functionalities/conditional_break/
H A Dconditional_break.py16 # of the leaf function c() is a(). If it's not the right caller, we ask the
22 if (thread.frames[0].function.name == 'c' and thread.frames[1].function.name == 'a'):
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
/external/llvm/test/MC/ARM/
H A Dinst-directive-emit.s8 .type emit_asm,%function
16 @ CHECK: .type emit_asm,%function
H A Deh-directive-personalityindex-diagnostics.s7 .global function
8 .type function,%function
10 function: label
18 .type ununwindable,%function
34 .type nodata,%function
50 .type multiple_personality,%function
69 .type multiple_personality_indicies,%function
88 .type invalid_expression,%function
100 .type nonconstant_expression,%function
[all...]
/external/llvm/test/MC/AsmParser/
H A Ddirective_rept.s6 .type two_bad_calls,@function
17 .type half_a_dozen_daffodils,@function
/external/mesa3d/src/glx/apple/
H A Dapple_glx_log.h39 void _apple_glx_log(int level, const char *file, const char *function,
46 void _apple_glx_vlog(int level, const char *file, const char *function,
/external/skia/tools/lua/
H A Ddump_clipstack_at_restore.lua0 function sk_scrape_startcanvas(c, fileName)
7 function sk_scrape_endcanvas(c, fileName)
11 function sk_scrape_accumulate(t)
33 function sk_scrape_summarize() end
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.as18 public function nil():Object {
33 public function errorNode(input:TokenStream, start:Token, stop:Token,
40 public function isNil(tree:Object):Boolean {
44 public function dupTree(tree:Object):Object {
52 public function dupTreeWithParent(t:Object, parent:Object):Object {
76 public function addChild(t:Object, child:Object):void {
108 public function becomeRoot(newRoot:Object, oldRoot:Object):Object {
136 public function rulePostProcessing(root:Object):Object {
152 public function createFromToken(tokenType:int, fromToken:Token, text:String = null):Object {
161 public function createFromTyp
[all...]
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFShader.cpp53 @param result The result ps function.
106 /* Generate Type 4 function code to map t=[0,1) to the passed gradient,
214 * Returns PS function code that applies inverse perspective
216 * The function assumes that the stack has at least two elements,
263 SkString function("{");
265 function.append(apply_perspective_to_coordinates(perspectiveRemover));
267 function.append("pop\n"); // Just ditch the y value.
268 tileModeCode(info.fTileMode, &function);
269 gradientFunctionCode(info, &function);
270 function
944 SkPDFStream* function = makePSFunction(functionCode, domain.get()); local
[all...]
/external/skia/src/pdf/
H A DSkPDFShader.cpp53 @param result The result ps function.
106 /* Generate Type 4 function code to map t=[0,1) to the passed gradient,
214 * Returns PS function code that applies inverse perspective
216 * The function assumes that the stack has at least two elements,
263 SkString function("{");
265 function.append(apply_perspective_to_coordinates(perspectiveRemover));
267 function.append("pop\n"); // Just ditch the y value.
268 tileModeCode(info.fTileMode, &function);
269 gradientFunctionCode(info, &function);
270 function
944 SkPDFStream* function = makePSFunction(functionCode, domain.get()); local
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DFailedPredicateException.as39 public function FailedPredicateException(input:IntStream,
/external/bison/src/
H A Drelation.h44 void relation_digraph (relation r, relation_node size, bitsetv *function);
/external/chromium_org/extensions/browser/
H A Dextension_function_registry.cc51 ExtensionFunction* function = iter->second.factory_(); local
52 function->set_name(name);
53 function->set_histogram_value(iter->second.histogram_value_);
54 return function;
/external/chromium_org/net/socket/
H A Dnss_ssl_util.h26 const char* function,
/external/chromium_org/remoting/client/plugin/
H A Dpepper_plugin_thread_delegate.h22 base::TimeDelta delay, void(CDECL function)(void*), void* data) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8HTMLDocumentCustom.cpp67 v8::Local<v8::Value> function = global->Get(v8AtomicString(info.GetIsolate(), "open")); local
69 if (function.IsEmpty())
71 // If the open property is not a function throw a type error.
72 if (!function->IsFunction()) {
73 V8ThrowException::throwTypeError("open is not a function", info.GetIsolate());
76 // Wrap up the arguments and call the function.
81 v8SetReturnValue(info, frame->script().callFunction(v8::Local<v8::Function>::Cast(function), global, info.Length(), params.get()));
/external/chromium_org/third_party/libxslt/libxslt/
H A Dpreproc.h30 xsltTransformFunction function);
/external/clang/test/SemaCXX/
H A Dmember-init.cpp72 Y::Y() try { // expected-note{{in instantiation of member function 'PR10578::X<int>::X' requested here}}
79 class function : base { class in namespace:PR14838
80 ~function() {} // expected-note {{implicitly declared private here}}
82 function(...) {} function in class:PR14838::function
87 // expected-error@-1 {{temporary of type 'const PR14838::function' has private destructor}}
89 const function &r; // expected-note {{reference member declared here}}
/external/deqp/framework/randomshaders/
H A DrsgFunctionGenerator.hpp38 FunctionGenerator (GeneratorState& state, Function& function);
/external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
H A Dcopy.pass.cpp30 std::function<float(float, float)> fnc = _pow;
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A DF.pass.cpp12 // class function<R(ArgTypes...)>
14 // function(nullptr_t);
70 std::function<int(int)> f = A();
79 std::function<int(int)> f = g;
86 std::function<int(int)> f = (int (*)(int))0;
93 std::function<int(const A*, int)> f = &A::foo;
H A DF_assign.pass.cpp12 // class function<R(ArgTypes...)>
73 std::function<int(int)> f;
83 std::function<int(int)> f;
91 std::function<int(int)> f;
99 std::function<int(const A*, int)> f;
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
H A Dinvoke.fail.cpp12 // class function<R(ArgTypes...)>
35 std::function<int& (const A_int_1*)> r2(fp);

Completed in 592 milliseconds

1234567891011>>