HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 401 - 425 of 1449) sorted by null

<<11121314151617181920>>

  /system/core/toolbox/
hd.c 23 int base = -1; local
33 base = strtol(optarg, NULL, 0);
49 fprintf(stderr, "Usage: %s [-b base] [-c count] [-r delay] file\n", argv[0]);
60 if(base >= 0) {
61 lseek(fd, base, SEEK_SET);
62 filepos = base;
68 if(count > 0 && base + count - filepos < read_len)
69 read_len = base + count - filepos;
90 if(filepos == base + count)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
helpbase-ant.jar 
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainFractalGridTest.java 37 private FractalSum base; field in class:TerrainFractalGridTest
88 this.base = new FractalSum();
89 this.base.setRoughness(0.7f);
90 this.base.setFrequency(1.0f);
91 this.base.setAmplitude(1.0f);
92 this.base.setLacunarity(2.12f);
93 this.base.setOctaves(8);
94 this.base.setScale(0.02125f);
95 this.base.addModulator(new NoiseModulator() {
103 FilteredBasis ground = new FilteredBasis(this.base);
    [all...]
  /bootable/recovery/
make-overlay.py 16 "installing" icon animation and turn it into a base image plus a set
31 base = Image.open(sys.argv[1]) variable
33 minmini = base.size[0]-1
35 minminj = base.size[1]-1
42 assert base.size == top.size
44 mini = base.size[0]-1
46 minj = base.size[1]-1
49 h, w = base.size
52 b = base.getpixel((i,j))
83 # Write out the base icon, which is the first frame with that bo
    [all...]
  /device/samsung/tuna/power/
power_tuna.c 31 struct power_module base; member in struct:tuna_power_module
142 base: {
  /external/apache-harmony/luni/src/test/impl/common/org/apache/harmony/luni/tests/java/net/
URLClassLoaderImplTest.java 52 final URL base = getClass().getResource("lf.jar"); local
54 final URL[] urls = { base };
60 final URI e = new URI("jar:" + base.toExternalForm() + "!/swt.dll");
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
GeneralSubtree.java 22 * base GeneralName,
36 private GeneralName base; field in class:GeneralSubtree
45 base = GeneralName.getInstance(seq.getObjectAt(0));
103 * @param base
112 GeneralName base,
116 this.base = base;
131 public GeneralSubtree(GeneralName base)
133 this(base, null, null);
161 return base;
    [all...]
  /external/chromium/base/
atomicops_internals_x86_macosx.h 5 // This file is an internal atomic implementation, use base/atomicops.h instead.
13 namespace base { namespace
195 } // namespace base::subtle
196 } // namespace base
atomicops_internals_x86_msvc.h 5 // This file is an internal atomic implementation, use base/atomicops.h instead.
13 namespace base { namespace
178 } // namespace base::subtle
179 } // namespace base
environment.cc 5 #include "base/environment.h"
13 #include "base/string_util.h"
16 #include "base/memory/scoped_ptr.h"
17 #include "base/utf_string_conversions.h"
22 class EnvironmentImpl : public base::Environment {
102 namespace base { namespace
125 } // namespace base
event_recorder.cc 9 #include "base/event_recorder.h"
10 #include "base/file_util.h"
11 #include "base/logging.h"
21 namespace base { namespace
258 } // namespace base
lazy_instance.h 17 // a global variable using the base::LinkerInitialized constructor.
27 // static LazyInstance<MyClass> my_instance(base::LINKER_INITIALIZED);
41 #include "base/atomicops.h"
42 #include "base/base_api.h"
43 #include "base/basictypes.h"
44 #include "base/third_party/dynamic_annotations/dynamic_annotations.h"
45 #include "base/threading/thread_restrictions.h"
47 namespace base { namespace
82 // We pull out some of the functionality into a non-templated base, so that we
105 base::subtle::Atomic32 state_
    [all...]
linked_list.h 54 // Q. Should I use std::list or base::LinkedList?
56 // A. The main reason to use base::LinkedList over std::list is
60 // Comparing the performance of base::LinkedList<T> to std::list<T*>:
62 // * Erasing an element of type T* from base::LinkedList<T> is
67 // * Insertion operations with base::LinkedList<T> never require
70 // Q. How does base::LinkedList implementation differ from std::list?
75 // With base::LinkedList<T>, the type being inserted already reserves
76 // space for the "next" and "previous" pointers (base::LinkNode<T>*).
81 namespace base { namespace
170 } // namespace base
    [all...]
  /external/chromium/base/debug/
debugger_win.cc 5 #include "base/debug/debugger.h"
10 #include "base/basictypes.h"
11 #include "base/logging.h"
13 namespace base { namespace
114 } // namespace base
stack_trace_posix.cc 5 #include "base/debug/stack_trace.h"
31 #include "base/basictypes.h"
32 #include "base/eintr_wrapper.h"
33 #include "base/logging.h"
34 #include "base/memory/scoped_ptr.h"
35 #include "base/safe_strerror_posix.h"
36 #include "base/string_piece.h"
37 #include "base/stringprintf.h"
40 #include "base/third_party/symbolize/symbolize.h"
43 namespace base { namespace
    [all...]
trace_event.h 29 #include "base/debug/trace_event_win.h"
34 #include "base/memory/scoped_ptr.h"
35 #include "base/memory/singleton.h"
36 #include "base/synchronization/lock.h"
37 #include "base/time.h"
38 #include "base/timer.h"
55 base::debug::TraceLog::GetInstance()->Trace( \
57 base::debug::TraceLog::EVENT_BEGIN, \
66 base::debug::TraceLog::GetInstance()->Trace( \
68 base::debug::TraceLog::EVENT_END,
85 namespace base { namespace
    [all...]
trace_event_win.h 12 #include "base/base_api.h"
13 #include "base/win/event_trace_provider.h"
16 base::debug::TraceLog::Trace( \
18 base::debug::TraceLog::EVENT_BEGIN, \
23 base::debug::TraceLog::Trace( \
25 base::debug::TraceLog::EVENT_END, \
30 base::debug::TraceLog::Trace( \
32 base::debug::TraceLog::EVENT_INSTANT, \
40 namespace base { namespace
45 class BASE_API TraceLog : public base::win::EtwTraceProvider
    [all...]
  /external/chromium/base/i18n/
icu_encoding_detection.cc 5 #include "base/i18n/icu_encoding_detection.h"
9 #include "base/string_util.h"
12 namespace base { namespace
104 } // namespace base
icu_string_conversions_unittest.cc 11 #include "base/basictypes.h"
12 #include "base/format_macros.h"
13 #include "base/i18n/icu_string_conversions.h"
14 #include "base/logging.h"
15 #include "base/stringprintf.h"
16 #include "base/string_piece.h"
17 #include "base/utf_string_conversions.h"
20 namespace base { namespace
77 SCOPED_TRACE(base::StringPrintf("Test[%" PRIuS "]: %ls",
245 SCOPED_TRACE(base::StringPrintf
    [all...]
time_formatting.cc 5 #include "base/i18n/time_formatting.h"
7 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "base/utf_string_conversions.h"
10 #include "base/time.h"
15 using base::Time;
31 namespace base { namespace
139 } // namespace base
  /external/chromium/base/json/
json_reader_unittest.cc 6 #include "base/json/json_reader.h"
7 #include "base/memory/scoped_ptr.h"
8 #include "base/string_piece.h"
9 #include "base/utf_string_conversions.h"
10 #include "base/values.h"
13 namespace base { namespace
566 } // namespace base
  /external/chromium/base/mac/
mac_util.h 12 #include "base/logging.h"
15 #include "base/mac/foundation_util.h"
25 namespace base { namespace
114 } // namespace base
138 namespace base { \
149 namespace base { \
179 // e.g. LOG(INFO) << base::mac::NSToCFCast(@"foo");
  /external/chromium/base/memory/
weak_ptr.cc 5 #include "base/memory/weak_ptr.h"
7 namespace base { namespace
71 } // namespace base
weak_ptr_unittest.cc 5 #include "base/memory/scoped_ptr.h"
6 #include "base/memory/weak_ptr.h"
8 #include "base/message_loop.h"
9 #include "base/threading/thread.h"
11 namespace base { namespace
35 struct Base {};
36 struct Derived : Base {};
86 WeakPtr<Base> ptr = factory.GetWeakPtr();
137 } // namespace base
  /external/chromium/base/metrics/
stats_counters.cc 5 #include "base/metrics/stats_counters.h"
7 namespace base { namespace
125 } // namespace base

Completed in 1440 milliseconds

<<11121314151617181920>>