HomeSort by relevance Sort by last modified time
    Searched refs:functions (Results 101 - 125 of 2176) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/jdk/jdk9/darwin-x86/include/
jdwpTransport.h 133 * JDWP functions called by the transport.
198 * Use inlined functions so that C++ code can use syntax such as
206 const struct jdwpTransportNativeInterface_ *functions; member in struct:_jdwpTransportEnv
210 return functions->GetCapabilities(this, capabilities_ptr);
215 return functions->Attach(this, address, attach_timeout, handshake_timeout);
220 return functions->StartListening(this, address, actual_address);
224 return functions->StopListening(this);
228 return functions->Accept(this, accept_timeout, handshake_timeout);
232 return functions->IsOpen(this);
236 return functions->Close(this)
    [all...]
  /prebuilts/jdk/jdk9/linux-x86/include/
jdwpTransport.h 133 * JDWP functions called by the transport.
198 * Use inlined functions so that C++ code can use syntax such as
206 const struct jdwpTransportNativeInterface_ *functions; member in struct:_jdwpTransportEnv
210 return functions->GetCapabilities(this, capabilities_ptr);
215 return functions->Attach(this, address, attach_timeout, handshake_timeout);
220 return functions->StartListening(this, address, actual_address);
224 return functions->StopListening(this);
228 return functions->Accept(this, accept_timeout, handshake_timeout);
232 return functions->IsOpen(this);
236 return functions->Close(this)
    [all...]
  /external/chromium-libpac/test/js-unittest/
ends_with_comment.js 7 // would append some functions to the script; the first line of
8 // those extra functions was being considered part of the comment
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
FunctionExecutor.java 17 package com.google.clearsilver.jsilver.functions;
24 * Execute functions in templates.
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_buffers.h 48 extern void intelInitBufferFuncs(struct dd_function_table *functions);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_bufferobj.h 44 nouveau_bufferobj_functions_init(struct dd_function_table *functions);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bitmap.h 42 st_init_bitmap_functions(struct dd_function_table *functions);
st_cb_bufferobjects.h 67 struct dd_function_table *functions);
st_cb_drawpixels.h 39 extern void st_init_drawpixels_functions(struct dd_function_table *functions);
st_cb_flush.h 41 struct dd_function_table *functions);
st_cb_texture.h 55 st_init_texture_functions(struct dd_function_table *functions);
st_cb_texturebarrier.c 130 void st_init_texture_barrier_functions(struct dd_function_table *functions)
132 functions->TextureBarrier = st_TextureBarrier;
133 functions->BlendBarrier = st_BlendBarrier;
134 functions->MemoryBarrier = st_MemoryBarrier;
st_cb_syncobj.c 142 void st_init_syncobj_functions(struct dd_function_table *functions)
144 functions->NewSyncObject = st_new_sync_object;
145 functions->FenceSync = st_fence_sync;
146 functions->DeleteSyncObject = st_delete_sync_object;
147 functions->CheckSync = st_check_sync;
148 functions->ClientWaitSync = st_client_wait_sync;
149 functions->ServerWaitSync = st_server_wait_sync;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/debug/
safe_unordered_container.h 34 #include <debug/functions.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/debug/
safe_unordered_container.h 34 #include <debug/functions.h>
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
f.go 5 // The package f is a go/doc test for functions and factory methods.
9 // Factory functions for non-exported types must not get lost.
issue18063.go 16 // factory functions of type T.
20 // factory functions of type T.
24 // type *T are not factory functions of type T.
28 // slice of type *T are not factory functions of type T.
32 // are not factory functions of type T.
  /prebuilts/go/linux-x86/src/go/doc/testdata/
f.go 5 // The package f is a go/doc test for functions and factory methods.
9 // Factory functions for non-exported types must not get lost.
issue18063.go 16 // factory functions of type T.
20 // factory functions of type T.
24 // type *T are not factory functions of type T.
28 // slice of type *T are not factory functions of type T.
32 // are not factory functions of type T.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
thumb2-bl-undefweak.s 1 @ Test that calls to undefined weak functions resolve to call through
thumb2-bl-undefweak1.s 1 @ Test that calls to undefined weak functions resolve to call through
  /external/guava/guava/src/com/google/common/hash/
AbstractCompositeHashFunction.java 24 * An abstract composition of multiple hash functions. {@linkplain #newHasher()} delegates to the
25 * {@code Hasher} objects of the delegate hash functions, and in the end, they are used by
31 final HashFunction[] functions; field in class:AbstractCompositeHashFunction
33 AbstractCompositeHashFunction(HashFunction... functions) {
34 for (HashFunction function : functions) {
37 this.functions = functions;
41 * Constructs a {@code HashCode} from the {@code Hasher} objects of the functions. Each of them
43 * the hashers are the same order as the functions given to the constructor.
50 final Hasher[] hashers = new Hasher[functions.length]
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_object_purgeable.c 161 brw_init_object_purgeable_functions(struct dd_function_table *functions)
163 functions->BufferObjectPurgeable = intel_buffer_object_purgeable;
164 functions->TextureObjectPurgeable = intel_texture_object_purgeable;
165 functions->RenderObjectPurgeable = intel_render_object_purgeable;
167 functions->BufferObjectUnpurgeable = intel_buffer_object_unpurgeable;
168 functions->TextureObjectUnpurgeable = intel_texture_object_unpurgeable;
169 functions->RenderObjectUnpurgeable = intel_render_object_unpurgeable;
intel_pixel.c 129 intelInitPixelFuncs(struct dd_function_table *functions)
131 functions->Bitmap = intelBitmap;
132 functions->CopyPixels = intelCopyPixels;
133 functions->DrawPixels = intelDrawPixels;
134 functions->ReadPixels = intelReadPixels;
  /system/bt/main/
bte_logmsg.cc 188 for (tBTTRC_FUNC_MAP* functions = &bttrc_set_level_map[0];
189 functions->trc_name; ++functions) {
191 functions->trc_name, -1);
192 if (value != -1) functions->trace_level = value;
194 functions->trc_name, functions->trace_level);
195 if (functions->p_f) functions->p_f(functions->trace_level)
    [all...]

Completed in 768 milliseconds

1 2 3 45 6 7 8 91011>>