HomeSort by relevance Sort by last modified time
    Searched defs:function (Results 226 - 250 of 792) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dbus/dbus/
dbus-pending-call.c 68 DBusPendingCallNotifyFunction function; /**< Notifier when reply arrives. */ member in struct:DBusPendingCall
204 * Calls notifier function for the pending call
217 if (pending->function)
223 (* pending->function) (pending, user_data);
497 * with an optional function to be used for freeing
505 * @param free_data_func finalizer function for the data
619 * Sets a notification function to be called when the reply is
623 * @param function notifier function
624 * @param user_data data to pass to notifier function
    [all...]
  /external/giflib/
egif_lib.c 136 Output constructor that takes user supplied output function.
203 int function = local
204 GifFile->SavedImages[i].ExtensionBlocks[j].Function;
206 if (function == COMMENT_EXT_FUNC_CODE
207 || function == GRAPHICS_EXT_FUNC_CODE
208 || function == PLAINTEXT_EXT_FUNC_CODE
209 || function == APPLICATION_EXT_FUNC_CODE)
214 int function = GifFile->ExtensionBlocks[i].Function; local
216 if (function == COMMENT_EXT_FUNC_COD
    [all...]
  /external/google-breakpad/src/processor/
basic_source_line_resolver.cc 87 linked_ptr<Function> cur_func;
144 // StoreRange will fail if the function has an invalid address or size.
145 // We'll silently ignore this, the function and any corresponding lines
169 LogParseError("Found source line data without a function",
195 // is no such function, we can use the next function to bound the
197 // need to check that address indeed falls within the function we
199 linked_ptr<Function> func;
251 // we can use the function to bound the extent of the PUBLIC symbol,
253 // falls within the retrieved function's range; do the rang
255 linked_ptr<Function> function; local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Tables.java 24 import com.google.common.base.Function;
239 private static final Function<Cell<?, ?, ?>, Cell<?, ?, ?>> TRANSPOSE_CELL =
240 new Function<Cell<?, ?, ?>, Cell<?, ?, ?>>() {
251 return Iterators.transform(original.cellSet().iterator(), (Function) TRANSPOSE_CELL);
306 * Returns a view of a table where each value is transformed by a function.
315 * null values provided that the function is capable of accepting null input.
316 * The transformed table might contain null values, if the function sometimes
322 * <p>The function is applied lazily, invoked when needed. This is necessary
323 * for the returned table to be a view, but it means that the function will be
325 * {@code Table.toString()}. For this to perform well, {@code function} shoul
340 final Function<? super V1, V2> function; field in class:Tables.TransformedTable
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
FunctionsTest.java 39 Function<String, String> identity = Functions.identity();
45 Function<Long, Long> identity = Functions.identity();
72 Function<String, Integer> function = Functions.forMap(map); local
74 assertEquals(1, function.apply("One").intValue());
75 assertEquals(3, function.apply("Three").intValue());
76 assertNull(function.apply("Null"));
79 function.apply("Two");
85 .addEqualityGroup(function, Functions.forMap(map))
95 Function<String, Integer> function = Functions.forMap(map, 42) local
112 Function<String, Integer> function = Functions.forMap(map, null); local
129 Function<String, Number> function = Functions.forMap(map, number); local
305 Function<Object, Integer> function = Functions.forSupplier(supplier); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
EscapingEvaluator.java 57 * is the output of an escaping function. If not, any expression that contains an escaping function
90 // This function generates a boolean expression that evaluates to true
144 * Process AST node for a function (e.g. dosomething(...)).
151 // Because the function name may have dots in, the parser would have broken
170 setEscaping(function(fullFunctionName.toString(), args)); method
174 * Do not escape the output of a function if either the function is an escaping function, or any
177 private JavaExpression function(String name, PExpression... csExpressions) method in class:EscapingEvaluator
    [all...]
  /external/libxml2/python/
generator.py 63 if tag == 'function':
66 self.function = None
73 self.function = attrs['name']
108 if tag == 'function':
109 if self.function != None:
110 function(self.function, self.function_descr,
138 def function(name, desc, ret, args, file, cond): function
303 # the next function is defined in libxml.c
356 print("failed to get function %s infos"
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_format_aos.c 523 LLVMValueRef function; local
540 * Function to call looks like:
555 /* make const pointer for the C fetch_rgba_8unorm function */
556 function = lp_build_const_int_pointer(gallivm,
559 /* cast the callee pointer to the function's type */
560 function = LLVMBuildBitCast(builder, function,
591 LLVMBuildCall(builder, function, args, Elements(args), "");
628 LLVMValueRef function; local
645 * Function to call looks like
    [all...]
lp_bld_tgsi_aos.c 149 * XXX: could be factored into a reusable function.
1089 LLVMValueRef function = LLVMGetBasicBlockParent(block); local
1092 lp_debug_dump_value(function);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_fs.h 93 LLVMValueRef function[2]; member in struct:lp_fragment_shader_variant
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program.h 171 * The function will be called once for each instruction.
176 * The function gets passed the userData as last parameter.
179 int (*function)( member in struct:radeon_program_transformation
  /external/selinux/policycoreutils/mcstrans/src/
mcstransd.c 86 send_response(int fd, uint32_t function, char *data, int32_t ret_val)
98 resp_hdr[0].iov_base = &function;
99 resp_hdr[0].iov_len = sizeof(function);
106 if (count != (sizeof(function) + sizeof(data_size) + sizeof(ret_val))) {
142 process_request(int fd, uint32_t function, char *data1, char *UNUSED(data2))
157 switch (function) {
160 ret = send_response(fd, function, NULL, result);
164 ret = send_response(fd, function, out, result);
168 ret = send_response(fd, function, out, result);
172 ret = send_response(fd, function, out, result)
197 uint32_t function; local
    [all...]
  /external/v8/src/compiler/
js-call-reducer.cc 99 // ES6 section 19.2.3.1 Function.prototype.apply ( thisArg, argArray )
131 // some other function (and same for the {arg_array}).
169 // Change context of {node} to the Function.prototype.apply context,
179 // ES6 section 19.2.3.3 Function.prototype.call (thisArg, ...args)
185 // Change context of {node} to the Function.prototype.call context,
229 Handle<JSFunction> function = Handle<JSFunction>::cast(m.Value()); local
230 Handle<SharedFunctionInfo> shared(function->shared(), isolate());
255 if (*function == function->native_context()->array_function()) {
260 if (*function == function->native_context()->number_function())
264 Handle<JSBoundFunction> function = local
396 Handle<JSFunction> function = Handle<JSFunction>::cast(m.Value()); local
    [all...]
linkage.cc 132 // If we already have the function literal, use the number of parameters
139 // If we are compiling a JS function, use a JS call descriptor,
151 int Linkage::FrameStateInputCount(Runtime::FunctionId function) {
155 switch (function) {
204 const Runtime::Function* const f = Runtime::FunctionForId(function);
232 const Runtime::Function* function = Runtime::FunctionForId(function_id); local
233 const size_t return_count = static_cast<size_t>(function->result_size);
255 // Add runtime function itself
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.h 194 void CallRuntime(const Runtime::Function* function,
202 const Runtime::Function* function = Runtime::FunctionForId(id); local
203 CallRuntime(function, num_arguments, instr);
207 const Runtime::Function* function = Runtime::FunctionForId(id); local
208 CallRuntime(function, function->nargs, instr);
217 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.h 298 void CallRuntime(const Runtime::Function* function,
306 const Runtime::Function* function = Runtime::FunctionForId(id); local
307 CallRuntime(function, num_arguments, instr);
311 const Runtime::Function* function = Runtime::FunctionForId(id); local
312 CallRuntime(function, function->nargs, instr);
321 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.h 168 void CallRuntime(const Runtime::Function* fun,
176 const Runtime::Function* function = Runtime::FunctionForId(id); local
177 CallRuntime(function, argc, instr);
181 const Runtime::Function* function = Runtime::FunctionForId(id); local
182 CallRuntime(function, function->nargs, instr);
192 // Generate a direct call to a known function. Expects the function
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.h 188 void CallRuntime(const Runtime::Function* function,
196 const Runtime::Function* function = Runtime::FunctionForId(id); local
197 CallRuntime(function, num_arguments, instr);
201 const Runtime::Function* function = Runtime::FunctionForId(id); local
202 CallRuntime(function, function->nargs, instr);
211 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.h 190 void CallRuntime(const Runtime::Function* function,
198 const Runtime::Function* function = Runtime::FunctionForId(id); local
199 CallRuntime(function, num_arguments, instr);
203 const Runtime::Function* function = Runtime::FunctionForId(id); local
204 CallRuntime(function, function->nargs, instr);
213 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.h 172 void CallRuntime(const Runtime::Function* function, int num_arguments,
178 const Runtime::Function* function = Runtime::FunctionForId(id); local
179 CallRuntime(function, num_arguments, instr);
183 const Runtime::Function* function = Runtime::FunctionForId(id); local
184 CallRuntime(function, function->nargs, instr);
191 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.h 167 void CallRuntime(const Runtime::Function* function,
175 const Runtime::Function* function = Runtime::FunctionForId(id); local
176 CallRuntime(function, num_arguments, instr);
180 const Runtime::Function* function = Runtime::FunctionForId(id); local
181 CallRuntime(function, function->nargs, instr);
191 // Generate a direct call to a known function. Expects the functio
    [all...]
  /external/v8/src/
execution.cc 37 static void PrintDeserializedCodeInfo(Handle<JSFunction> function) {
38 if (function->code() == function->shared()->code() &&
39 function->shared()->deserialized()) {
41 Object* script = function->shared()->script();
89 // Call the function through the right JS entry stub.
138 Handle<JSFunction> function = Handle<JSFunction>::cast(callable); local
140 isolate->set_context(function->context());
143 is_sloppy(function->shared()->language_mode())) {
145 receiver = handle(function->global_proxy(), isolate)
    [all...]
frames-inl.h 216 inline JSFunction* JavaScriptFrame::function() const { function in class:v8::internal::JavaScriptFrame
  /external/v8/src/heap/
objects-visiting-inl.h 461 // This function's code looks flushable. But we have to postpone
481 JSFunction* function = JSFunction::cast(object); local
484 if (IsFlushable(heap, function)) {
485 // This function's code looks flushable. But we have to postpone
491 collector->code_flusher()->AddCandidate(function);
497 StaticVisitor::MarkObject(heap, function->shared()->code());
582 JSFunction* function) {
583 SharedFunctionInfo* shared_info = function->shared();
586 // by optimized version of function.
587 MarkBit code_mark = Marking::MarkBitFrom(function->code())
    [all...]
  /external/v8/src/parsing/
rewriter.cc 338 FunctionLiteral* function = info->literal(); local
339 DCHECK(function != NULL);
340 Scope* scope = function->scope();
344 ZoneList<Statement*>* body = function->body();
356 DCHECK(function->end_position() != RelocInfo::kNoPosition);
361 // the end position of the function generated for executing the eval code
363 int pos = function->end_position();

Completed in 865 milliseconds

1 2 3 4 5 6 7 8 91011>>