HomeSort by relevance Sort by last modified time
    Searched refs:Globals (Results 26 - 50 of 85) sorted by null

12 3 4

  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 125 std::unique_ptr<GlobalsStream> Globals;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 125 std::unique_ptr<GlobalsStream> Globals;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 125 std::unique_ptr<GlobalsStream> Globals;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 125 std::unique_ptr<GlobalsStream> Globals;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 125 std::unique_ptr<GlobalsStream> Globals;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 125 std::unique_ptr<GlobalsStream> Globals;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 125 std::unique_ptr<GlobalsStream> Globals;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 125 std::unique_ptr<GlobalsStream> Globals;
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/preprovisioning/
EncryptionController.java 34 import com.android.managedprovisioning.common.Globals;
161 Intent resumeIntent = new Intent(Globals.ACTION_RESUME_PROVISIONING);
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/provisioning/
ProvisioningManager.java 35 import com.android.managedprovisioning.common.Globals;
50 Globals.MANAGED_PROVISIONING_PACKAGE_NAME,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Object/
Wasm.h 75 const std::vector<wasm::WasmGlobal>& globals() const { return Globals; } function in class:llvm::object::WasmObjectFile
174 std::vector<wasm::WasmGlobal> Globals;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Object/
Wasm.h 75 const std::vector<wasm::WasmGlobal>& globals() const { return Globals; } function in class:llvm::object::WasmObjectFile
174 std::vector<wasm::WasmGlobal> Globals;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Object/
Wasm.h 75 const std::vector<wasm::WasmGlobal>& globals() const { return Globals; } function in class:llvm::object::WasmObjectFile
174 std::vector<wasm::WasmGlobal> Globals;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
Wasm.h 75 const std::vector<wasm::WasmGlobal>& globals() const { return Globals; } function in class:llvm::object::WasmObjectFile
174 std::vector<wasm::WasmGlobal> Globals;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Object/
Wasm.h 75 const std::vector<wasm::WasmGlobal>& globals() const { return Globals; } function in class:llvm::object::WasmObjectFile
174 std::vector<wasm::WasmGlobal> Globals;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Object/
Wasm.h 75 const std::vector<wasm::WasmGlobal>& globals() const { return Globals; } function in class:llvm::object::WasmObjectFile
174 std::vector<wasm::WasmGlobal> Globals;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Object/
Wasm.h 75 const std::vector<wasm::WasmGlobal>& globals() const { return Globals; } function in class:llvm::object::WasmObjectFile
174 std::vector<wasm::WasmGlobal> Globals;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
Wasm.h 75 const std::vector<wasm::WasmGlobal>& globals() const { return Globals; } function in class:llvm::object::WasmObjectFile
174 std::vector<wasm::WasmGlobal> Globals;
  /external/swiftshader/third_party/subzero/src/
IceASanInstrumentation.cpp 83 // types of the redzones and their associated globals match so that they are
85 void ASanInstrumentation::instrumentGlobals(VariableDeclarationList &Globals) {
104 for (VariableDeclaration *Global : Globals) {
195 // Replace old list of globals, without messing up arena allocators
196 Globals.clear();
197 Globals.merge(&NewGlobals);
200 // Log the new set of globals
203 Ctx->getStrDump() << "========= Instrumented Globals =========\n";
204 for (VariableDeclaration *Global : Globals) {
IceGlobalContext.h 463 /// Uses DataLowering to lower Globals. Side effects:
464 /// - discards the initializer list for the global variable in Globals.
465 /// - clears the Globals array.
490 return LockedPtr<VariableDeclarationList>(&Globals, &InitAllocLock);
510 VariableDeclarationList Globals;
572 /// If !HasEmittedCode, SubZero will accumulate all Globals (which are "true"
576 // If Instrumentor is not empty then it will be used to instrument globals and
601 return LockedPtr<VariableDeclarationList>(&Globals, &InitAllocLock);
620 LockedPtr<VariableDeclarationList> _(&Globals, &InitAllocLock);
622 Globals.merge(Globls.get())
    [all...]
WasmTranslator.cpp     [all...]
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/analytics/
AnalyticsUtilsTest.java 23 import static com.android.managedprovisioning.common.Globals.ACTION_RESUME_PROVISIONING;
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/parser/
ExtrasProvisioningDataParserTest.java 66 import com.android.managedprovisioning.common.Globals;
233 Intent intent = new Intent(Globals.ACTION_RESUME_PROVISIONING)
    [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 279 private static class Globals extends IWallpaperManagerCallback.Stub {
289 Globals(Looper looper) {
494 private static Globals sGlobals;
499 sGlobals = new Globals(looper);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ObjectYAML/
WasmYAML.h 178 std::vector<Global> Globals;

Completed in 565 milliseconds

12 3 4