HomeSort by relevance Sort by last modified time
    Searched refs:static (Results 276 - 300 of 820) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/os/user/
getgrouplist_darwin.go 12 static int mygetgrouplist(const char* user, gid_t group, gid_t* groups, int* ngroups) {
getgrouplist_unix.go 14 static int mygetgrouplist(const char* user, gid_t group, gid_t* groups, int* ngroups) {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
sinit.go 12 // Static initialization ordering state.
256 // compilation of top-level (static) assignments
416 //dump("not static ptrlit", r);
546 //dump("not static", r);
550 // initContext is the context in which static data is populated.
552 // Static data populated in an init function will be written either
553 // zero times (as a readonly, static data symbol) or
557 // Static data populated in any other function needs to be local to
573 var statuniqgen int // name generator for static temps
575 // staticname returns a name backed by a static data symbol
    [all...]
  /prebuilts/go/linux-x86/src/os/user/
getgrouplist_darwin.go 12 static int mygetgrouplist(const char* user, gid_t group, gid_t* groups, int* ngroups) {
getgrouplist_unix.go 14 static int mygetgrouplist(const char* user, gid_t group, gid_t* groups, int* ngroups) {
  /tools/tradefederation/core/tests/test-apps/NativeTestSampleApp/src/
Android.mk 15 # Makefile to build sample static library that has native tests.
  /build/soong/cc/
linker.go 25 // This file contains the basic functionality for linking against static libraries and shared
30 // in their entirety. For static library modules, all of the .o files from the intermediate
68 // list of static libraries to re-export include directories from. Entries must be
84 // group static libraries. This can resolve missing symbols issues with interdependencies
85 // between static libraries, but it is generally better to order them correctly instead.
94 // list of static libs that should not be used to build
166 if !ctx.static() {
257 if !ctx.static() {
lto.go 28 // To properly build a module with LTO, the module and all recursive static
31 // by the linker to the LLVM plugin for compilation at link time. Static
37 // new variant of all static dependencies for each module with LTO enabled.
140 // Recursively walk static dependencies
144 // Do not recurse down non-static dependencies
153 // Create variations for LTO types required as static
ndk_sysroot.go 21 // 4. Bionic static libraries.
44 // Component 4: Static Libraries
45 // The NDK only provides static libraries for bionic, not the platform APIs.
78 // but not the static libraries. This distinction is needed because the static
84 // The full timestamp file depends on the base timestamp *and* the static
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
unixccompiler.py 12 * link static library handled by 'ar' command (possibly with 'ranlib')
306 static_f = self.library_filename(lib, lib_type='static')
324 static = os.path.join(dir, static_f)
332 static = os.path.join(sysroot, dir[1:], static_f)
337 # ignoring even GCC's "-static" option. So sue me.
342 elif os.path.exists(static):
343 return static
  /external/curl/
MacOSX-Framework 85 ./configure --disable-dependency-tracking --disable-static --with-gssapi --with-darwinssl \
114 ./configure --disable-dependency-tracking --disable-static --with-gssapi --with-darwinssl \
  /external/flatbuffers/android/jni/
Android.mk 22 # Empty static library so that other projects can include just the basic
32 # static library that additionally includes text parsing/generation/reflection
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBit.cs 48 private static UInt32[] ProbPrices = new UInt32[kBitModelTotal >> kNumMoveReducingBits];
50 static BitEncoder()
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
FieldMask.cs 14 public static partial class FieldMaskReflection {
18 public static pbr::FileDescriptor Descriptor {
21 private static pbr::FileDescriptor descriptor;
23 static FieldMaskReflection() {
192 private static readonly pb::MessageParser<FieldMask> _parser = new pb::MessageParser<FieldMask>(() => new FieldMask());
193 public static pb::MessageParser<FieldMask> Parser { get { return _parser; } }
195 public static pbr::MessageDescriptor Descriptor {
219 private static readonly pb::FieldCodec<string> _repeated_paths_codec
  /external/python/cpython2/Lib/distutils/
unixccompiler.py 12 * link static library handled by 'ar' command (possibly with 'ranlib')
253 static_f = self.library_filename(lib, lib_type='static')
286 static = os.path.join(dir, static_f)
295 static = os.path.join(sysroot, dir[1:], static_f)
301 # ignoring even GCC's "-static" option. So sue me.
308 elif os.path.exists(static):
309 return static
  /external/python/cpython3/Lib/distutils/
unixccompiler.py 12 * link static library handled by 'ar' command (possibly with 'ranlib')
263 static_f = self.library_filename(lib, lib_type='static')
296 static = os.path.join(dir, static_f)
305 static = os.path.join(sysroot, dir[1:], static_f)
311 # ignoring even GCC's "-static" option. So sue me.
318 elif os.path.exists(static):
319 return static
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
unixccompiler.py 12 * link static library handled by 'ar' command (possibly with 'ranlib')
177 # Avoid dependency on libgcc dll on mingw. -static-libgcc works
183 ld_args.extend(["-static-libgcc"])
260 static_f = self.library_filename(lib, lib_type='static')
278 static = os.path.join(dir, static_f)
286 static = os.path.join(sysroot, dir[1:], static_f)
291 # ignoring even GCC's "-static" option. So sue me.
296 elif os.path.exists(static):
297 return static
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
unixccompiler.py 12 * link static library handled by 'ar' command (possibly with 'ranlib')
177 # Avoid dependency on libgcc dll on mingw. -static-libgcc works
183 ld_args.extend(["-static-libgcc"])
260 static_f = self.library_filename(lib, lib_type='static')
278 static = os.path.join(dir, static_f)
286 static = os.path.join(sysroot, dir[1:], static_f)
291 # ignoring even GCC's "-static" option. So sue me.
296 elif os.path.exists(static):
297 return static
  /prebuilts/misc/common/robolectric/3.1.1/
Android.mk 46 # Defining the target names for the static prebuilt .JARs.
94 # Defining the target names for the static prebuilt .JARs.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
unixccompiler.py 12 * link static library handled by 'ar' command (possibly with 'ranlib')
250 static_f = self.library_filename(lib, lib_type='static')
268 static = os.path.join(dir, static_f)
276 static = os.path.join(sysroot, dir[1:], static_f)
281 # ignoring even GCC's "-static" option. So sue me.
286 elif os.path.exists(static):
287 return static
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
unixccompiler.py 12 * link static library handled by 'ar' command (possibly with 'ranlib')
250 static_f = self.library_filename(lib, lib_type='static')
268 static = os.path.join(dir, static_f)
276 static = os.path.join(sysroot, dir[1:], static_f)
281 # ignoring even GCC's "-static" option. So sue me.
286 elif os.path.exists(static):
287 return static
  /external/v8/tools/
codemap.js 46 * Static code entries. Used for statically compiled code.
51 * Libraries entries. Used for the whole static code libraries.
56 * Map of memory pages occupied with static code.
126 * Adds a static code entry.
183 * Finds a code entry that contains the specified address. Both static and
191 // Static code entries can contain "holes" of unnamed code.
241 * Returns an array of all static code entries.
249 * Returns an array of pairs of all static code entries and their addresses.
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
Descriptor.cs 14 internal static partial class DescriptorReflection {
18 public static pbr::FileDescriptor Descriptor {
21 private static pbr::FileDescriptor descriptor;
23 static DescriptorReflection() {
176 private static readonly pb::MessageParser<FileDescriptorSet> _parser = new pb::MessageParser<FileDescriptorSet>(() => new FileDescriptorSet());
177 public static pb::MessageParser<FileDescriptorSet> Parser { get { return _parser; } }
179 public static pbr::MessageDescriptor Descriptor {
203 private static readonly pb::FieldCodec<global::Google.Protobuf.Reflection.FileDescriptorProto> _repeated_file_codec
274 private static readonly pb::MessageParser<FileDescriptorProto> _parser = new pb::MessageParser<FileDescriptorProto>(() => new FileDescriptorProto());
275 public static pb::MessageParser<FileDescriptorProto> Parser { get { return _parser; }
    [all...]
  /external/libmojo/base/android/jni_generator/
jni_generator.py 56 self.static = kwargs['static']
82 self.static = kwargs['static']
90 self.env_call = GetEnvCall(self.is_constructor, self.static,
404 static='static' in match.group('qualifiers'),
466 call = 'Static' + call
563 static='static' in match.group('prefix')
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf.Conformance/
Conformance.cs 14 public static partial class ConformanceReflection {
18 public static pbr::FileDescriptor Descriptor {
21 private static pbr::FileDescriptor descriptor;
23 static ConformanceReflection() {
225 private static readonly pb::MessageParser<ConformanceRequest> _parser = new pb::MessageParser<ConformanceRequest>(() => new ConformanceRequest());
226 public static pb::MessageParser<ConformanceRequest> Parser { get { return _parser; } }
228 public static pbr::MessageDescriptor Descriptor {
417 private static readonly pb::MessageParser<ConformanceResponse> _parser = new pb::MessageParser<ConformanceResponse>(() => new ConformanceResponse());
418 public static pb::MessageParser<ConformanceResponse> Parser { get { return _parser; } }
420 public static pbr::MessageDescriptor Descriptor
    [all...]

Completed in 1625 milliseconds

<<11121314151617181920>>