HomeSort by relevance Sort by last modified time
    Searched defs:lib (Results 101 - 125 of 918) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/av/media/libeffects/factory/
EffectsFactory.h 58 lib_entry_t *lib; member in struct:effect_entry_s
66 // Structure used to store the lib entry
72 lib_entry_t *lib; member in struct:sub_effect_entry_s
  /hardware/qcom/gps/msm8909w_3100/core/
ContextBase.cpp 187 void* lib = dlopen(libName, RTLD_NOW); local
189 if ((void*)NULL != lib) {
190 getLBSProxy_t* getter = (getLBSProxy_t*)dlsym(lib, "getLBSProxy");
  /system/core/libunwindstack/
DexFiles.cpp 135 const char* lib = basename(info->name.c_str()); local
137 if (name == lib) {
JitDebug.cpp 183 const char* lib = basename(info->name.c_str()); local
185 if (strcmp(name.c_str(), lib) == 0) {
  /cts/tools/vm-tests-tf/
Android.mk 24 LOCAL_MODULE := cts-tf-dalvik-lib
30 cts-tf-dalvik-lib.jar := $(full_classes_jar)
74 $(cts-tf-dalvik-lib.jar) \
86 $(LOCAL_BUILT_MODULE): PRIVATE_DALVIK_SUITE_CLASSPATH := $(oj_jar):$(libart_jar):$(cts-tf-dalvik-lib.jar):$(HOST_OUT_JAVA_LIBRARIES)/tradefed.jar:
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
CompatTabHoneycomb.java 17 package com.example.android.tabcompat.lib;
TabHelperEclair.java 17 package com.example.android.tabcompat.lib;
  /external/libevent/sample/
le-proxy.c 112 const char *lib = (const char*) local
117 "%s in %s %s\n", msg, lib, func);
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
MavenManifestFactory.java 104 String lib; local
105 while ((lib = properties.getProperty("android.library.reference." + libRef)) != null) {
106 FsFile libraryDir = baseDir.join(lib);
  /external/turbine/javatests/com/google/turbine/binder/
ClassPathBinderTest.java 58 ImmutableList.of(Paths.get(System.getProperty("java.home")).resolve("lib/rt.jar"));
126 Path lib = temporaryFolder.newFile("lib.jar").toPath(); local
129 try (JarOutputStream jos = new JarOutputStream(Files.newOutputStream(lib))) {
152 ClassPathBinder.bind(ImmutableList.of(lib), ImmutableList.of(bcp), TopLevelIndex.builder());
162 Path lib = temporaryFolder.newFile("NOT_A_JAR").toPath(); local
163 Files.write(lib, "hello".getBytes(UTF_8));
166 ClassPathBinder.bind(ImmutableList.of(lib), ImmutableList.of(), TopLevelIndex.builder());
  /external/turbine/javatests/com/google/turbine/lower/
LowerIntegrationTest.java 330 ImmutableList.of(Paths.get(System.getProperty("java.home")).resolve("lib/rt.jar"));
347 Path lib = temporaryFolder.newFile("lib.jar").toPath(); local
348 try (JarOutputStream jos = new JarOutputStream(Files.newOutputStream(lib))) {
354 classpathJar = ImmutableList.of(lib);
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
ProtocolConstants.java 3 package com.android.tools.sdkcontroller.lib;
Socket.java 17 package com.android.tools.sdkcontroller.lib;
  /system/extras/tests/kernel.config/
aslr_test.cpp 158 const char *AslrMmapTest::lib; member in class:AslrMmapTest
170 lib = SCRAPE_LIB_64;
182 lib = SCRAPE_LIB_32;
198 lib = SCRAPE_LIB_64;
211 lib = SCRAPE_LIB_32;
238 EXPECT_GE(def, calc_mmap_entropy(path, lib, 16));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ProjectHelper.java 1040 IProject lib = libraries.get(i); local
1098 IProject lib = libraries.get(i); local
    [all...]
  /cts/hostsidetests/os/test-apps/StaticSharedLibConsumerApp1/src/android/os/lib/consumer1/
UseSharedLibraryTest.java 17 package android.os.lib.consumer1;
29 import android.os.lib.provider.StaticSharedLib;
41 private static final String LIB_NAME = "foo.bar.lib";
42 private static final String RECURSIVE_LIB_NAME = "foo.bar.lib.recursive";
43 private static final String RECURSIVE_LIB_PROVIDER_NAME = "android.os.lib.provider.recursive";
46 private static final String STATIC_LIB_PROVIDER_PKG = "android.os.lib.provider";
47 private static final String STATIC_LIB_CONSUMER1_PKG = "android.os.lib.consumer1";
48 private static final String STATIC_LIB_CONSUMER2_PKG = "android.os.lib.consumer2";
155 assertTrue("Did not find lib " + LIB_NAME + " version 1", firstLibFound);
156 assertTrue("Did not find lib " + LIB_NAME + " version 4", secondLibFound)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
uuid.py 404 lib = ctypes.CDLL(ctypes.util.find_library(libname)) variable
407 if hasattr(lib, 'uuid_generate_random'):
408 _uuid_generate_random = lib.uuid_generate_random
409 if hasattr(lib, 'uuid_generate_time'):
410 _uuid_generate_time = lib.uuid_generate_time
434 lib = ctypes.windll.rpcrt4 variable
436 lib = None variable
437 _UuidCreate = getattr(lib, 'UuidCreateSequential',
438 getattr(lib, 'UuidCreate', None))
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
AnalyseJavaSymbolSolver060Test.java 48 private static final File lib = adaptPath(new File(root + "/lib")); field in class:AnalyseJavaSymbolSolver060Test
58 combinedTypeSolver.add(new JarTypeSolver(lib + "/guava-21.0.jar"));
59 combinedTypeSolver.add(new JarTypeSolver(lib + "/javaparser-core-3.3.0.jar"));
60 combinedTypeSolver.add(new JarTypeSolver(lib + "/javaslang-2.0.3.jar"));
61 combinedTypeSolver.add(new JarTypeSolver(lib + "/javassist-3.19.0-GA.jar"));
  /external/libevent/
evthread_win32.c 108 HANDLE lib; local
110 lib = GetModuleHandle(TEXT("kernel32.dll"));
111 if (lib == NULL)
115 name##_fn = GetProcAddress(lib, #name)
  /external/llvm/bindings/python/llvm/
core.py 22 "lib",
35 lib = get_library() variable
161 result = lib.LLVMCreateMemoryBufferWithContentsOfFile(filename,
167 LLVMObject.__init__(self, memory, disposer=lib.LLVMDisposeMemoryBuffer)
170 return lib.LLVMGetBufferSize(self)
179 return lib.LLVMGetValueName(self)
182 lib.LLVMDumpValue(self)
185 return Value(lib.LLVMGetOperand(self, i))
188 return lib.LLVMSetOperand(self, i, v)
191 return lib.LLVMGetNumOperands(self
    [all...]
  /external/llvm/utils/
extract_symbols.py 32 def dumpbin_get_symbols(lib):
33 process = subprocess.Popen(['dumpbin','/symbols',lib], bufsize=1,
44 def nm_get_symbols(lib):
45 process = subprocess.Popen(['nm',lib], bufsize=1,
56 def readobj_get_symbols(lib):
57 process = subprocess.Popen(['llvm-readobj','-symbols',lib], bufsize=1,
84 def dumpbin_is_32bit_windows(lib):
87 process = subprocess.Popen(['dumpbin','/headers',lib], bufsize=1,
101 def objdump_is_32bit_windows(lib):
102 output = subprocess.check_output(['objdump','-f',lib],
395 lib = lib+s variable
398 lib = 'lib'+lib+s variable
    [all...]
  /external/python/cpython3/Lib/
uuid.py 474 lib = ctypes.CDLL(ctypes.util.find_library(libname)) variable
477 if hasattr(lib, 'uuid_generate_time'):
478 _uuid_generate_time = lib.uuid_generate_time
502 lib = ctypes.windll.rpcrt4 variable
504 lib = None variable
505 _UuidCreate = getattr(lib, 'UuidCreateSequential',
506 getattr(lib, 'UuidCreate', None))
  /external/tensorflow/tensorflow/contrib/data/kernels/
prefetching_kernels.cc 20 #include "tensorflow/core/lib/core/threadpool.h"
21 #include "tensorflow/core/lib/random/random.h"
37 FunctionBufferingResource(FunctionLibraryRuntime* lib,
43 : lib_(lib),
107 // `lib` in case more function calls need to be scheduled.
264 FunctionLibraryRuntime* lib = ctx->function_library(); variable
265 OP_REQUIRES(ctx, lib != nullptr,
277 [lib, &source_device, &target_device, func_args,
280 lib, func_, buffer_size_, source_device, target_device,
  /external/tensorflow/tensorflow/core/distributed_runtime/
graph_mgr.cc 41 #include "tensorflow/core/lib/core/errors.h"
42 #include "tensorflow/core/lib/strings/stringprintf.h"
220 FunctionLibraryRuntime* lib = item->proc_flr->GetFLR(unit->device->name()); local
221 if (lib == nullptr) {
228 params.function_library = lib;
229 params.create_kernel = [session, lib, opseg](const NodeDef& ndef,
237 if (!lib->IsStateful(ndef.op()) ||
238 lib->GetFunctionLibraryDefinition()->Find(ndef.op()) != nullptr) {
239 return lib->CreateKernel(ndef, kernel);
241 auto create_fn = [lib, &ndef](OpKernel** kernel)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
functional_ops.cc 23 #include "tensorflow/core/lib/core/threadpool.h"
35 // Helper to instantiate function "func" in the library "lib".
36 Status Instantiate(FunctionLibraryRuntime* lib, const NameAttrList& func,
38 return lib->Instantiate(func.name(), AttrSlice(&func.attr()), handle);
114 auto lib = ctx->function_library(); local
115 OP_REQUIRES(ctx, lib != nullptr, errors::Internal("No function library"));
118 OP_REQUIRES_OK(ctx, Instantiate(lib, *func, &then_handle_));
120 OP_REQUIRES_OK(ctx, Instantiate(lib, *func, &else_handle_));
196 auto lib = ctx->function_library(); variable
197 OP_REQUIRES_ASYNC(ctx, lib != nullptr
    [all...]

Completed in 790 milliseconds

1 2 3 45 6 7 8 91011>>