HomeSort by relevance Sort by last modified time
    Searched defs:loaded (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
config.py 62 #: Loaded module configurations.
63 loaded = None variable in class:Config
72 values. These modules are marked as loaded.
74 self.loaded = []
84 self.loaded.append(module)
92 ``default_config`` global variable that is loaded by this function,
101 if module not in self.loaded:
108 self.loaded.append(module)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libignore.cc 34 lib->loaded = false;
45 if (!lib->loaded && lib->real_name == 0 &&
51 // Scan suppressions list and find newly loaded and unloaded libraries.
56 bool loaded = false; local
65 if (loaded) {
71 loaded = true;
72 if (lib->loaded)
78 lib->loaded = true;
86 if (lib->loaded && !loaded) {
    [all...]
sanitizer_libignore.h 34 // Must be called after a new dynamic library is loaded.
48 bool loaded; member in struct:__sanitizer::LibIgnore::Lib
  /external/libxml2/include/libxml/
debugXML.h 118 int loaded; member in struct:_xmlShellCtxt
  /external/replicaisland/src/com/replica/replicaisland/
Texture.java 22 * been loaded into vram. Objects can cache Texture objects but should *never* cache the texture
30 public boolean loaded; field in class:Texture
42 loaded = false;
DrawableBitmap.java 105 assert texture.loaded;
123 || !texture.loaded) {
  /external/iproute2/include/
ip6tables.h 61 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:ip6tables_match
111 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:ip6tables_target
iptables.h 84 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:iptables_match
137 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:iptables_target
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
AbstractClassLoader.java 52 Class loaded = findLoadedClass(name); local
54 if( loaded != null ){
55 if( loaded.getClassLoader() == this ){
56 return loaded;
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
JavaAnalyzer.java 70 JavaClass loaded = mClassCache.get(className); local
71 if (loaded != null) {
72 return loaded;
75 loaded = loadPrimitive(className);
76 if (loaded == null) {
84 loaded = new JavaClass(Class.forName(realClassName, false, mClassLoader));
85 mClassCache.put(className, loaded);
87 loaded = loadRecursively(className);
88 mClassCache.put(className, loaded);
96 if (loaded == null)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
ClassItem.java 79 public boolean loaded () method in class:ClassItem
  /external/jetty/src/java/org/eclipse/jetty/server/
ResourceCache.java 191 HttpContent loaded = load(pathInContext,resource); local
192 if (loaded!=null)
193 return loaded;
  /external/linux-tools-perf/src/tools/perf/util/
dso.h 89 u8 loaded; member in struct:dso
101 dso->loaded |= (1 << type);
  /frameworks/base/services/tests/servicestests/src/com/android/server/job/
JobStoreTest.java 109 // Check that the loaded task has the correct runtimes.
142 JobStatus loaded = jobStatusSet.iterator().next(); local
143 assertTasksEqual(task, loaded.getJob());
  /packages/apps/Browser/src/com/android/browser/util/
ThreadedCursorAdapter.java 56 boolean loaded; field in class:ThreadedCursorAdapter.LoadContainer
122 container.loaded = true;
176 && container.loaded
183 container.loaded = false;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
EmpiricalDistributionImpl.java 74 /** Max loaded value */
77 /** Min loaded value */
86 /** is the distribution loaded? */
87 private boolean loaded = false; field in class:EmpiricalDistributionImpl
127 loaded = true;
149 loaded = true;
172 loaded = true;
370 * @throws IllegalStateException if the distribution has not been loaded
374 if (!loaded) {
401 * <li>the distribution must be loaded before invoking this method</li></ul
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuExecutable.cpp 135 void *loaded = nullptr; local
145 loaded = loadSOHelper(scriptSOName.c_str(), cacheDir, resName, alreadyLoaded);
147 if (loaded == nullptr) {
160 loaded = loadSOHelper(scriptSONameSystem.c_str(), cacheDir,
162 if (loaded == nullptr) {
169 return loaded;
194 // Keep track of which .so libraries have been loaded. Once a library is
202 void *loaded = nullptr; local
209 // Common path is that we have not loaded this Script/library before.
214 loaded = dlopen(origName, RTLD_NOW | RTLD_LOCAL)
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
AsyncListUtilTest.java 77 scrollAndExpectTiles(60, "scroll down a little, no new tiles loaded");
78 scrollAndExpectTiles(40, "scroll up a little, no new tiles loaded");
113 assertEquals("no new items should be loaded", 0, getLoadedItemCount(position, count));
119 assertEquals("all new items should be loaded", count, getLoadedItemCount(position, count));
123 int loaded = 0; local
126 loaded++;
129 return loaded;
  /system/bt/device/src/
controller.c 467 static bool loaded = false; local
468 if (!loaded) {
469 loaded = true;
  /art/runtime/
oat_file.cc 284 // See whether this callback corresponds to the file which we have just loaded.
318 LOG(ERROR) << "File " << elf_filename << " loaded with dlopen but can not find its mmaps.";
336 bool loaded = elf_file_->Load(executable, error_msg); local
337 if (!loaded) {
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
SoundPoolTest.java 259 final int[] loaded = new int[1]; // used as a "pointer" to an integer local
267 loadIds[loaded[0]++] = sampleId;
268 if (loaded[0] == loadIds.length) {
285 while (loaded[0] != soundIds.length) {
346 * Wait until the specified sample is loaded.
  /external/v8/test/cctest/compiler/
test-simplified-lowering.cc 70 Node* loaded = t.LoadField(load, t.PointerConstant(&input)); local
71 Node* convert = t.NumberToInt32(loaded);
98 Node* loaded = t.LoadField(load, t.PointerConstant(&input)); local
99 Node* convert = t.NumberToUint32(loaded);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseView.java 171 Bitmap loaded = null; local
174 opts.inBitmap = loaded;
175 loaded = BitmapFactory.decodeResource(res, resid, opts);
176 final BitmapDrawable d = new BitmapDrawable(res, convertToAlphaMask(loaded));
182 loaded = null;
  /external/chromium-trace/trace-viewer/third_party/webapp2/
webapp2.py 1325 loaded = None variable in class:Config
    [all...]
  /external/iptables/include/
xtables.h 280 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:xtables_match
357 unsigned int loaded; /* simulate loading so options are merged properly */ member in struct:xtables_target

Completed in 918 milliseconds

1 2 3 4