Searched defs:Global (Results 1 - 18 of 18) sorted by relevance

/external/clang/test/CodeGen/
H A D2003-11-03-AddrArrayElement.c6 char Global[100]; variable
10 return &Global[i];
H A D2002-08-02-UnionTest.c11 union X Global; local
12 Global.B = (void*)123; /* Interesting part */
13 return Global;
/external/clang/test/CodeGenCXX/
H A Dinternal-linkage.cpp3 struct Global { Global(); }; struct
11 Global anon0;
/external/v8/test/mjsunit/
H A Darguments-apply.js37 function Global() { function
41 assertEquals(0, Global().length);
42 assertEquals(1, Global(1).length);
43 assertEquals(2, Global(2)[0]);
44 assertEquals(2, Global(3, 4).length);
45 assertEquals(3, Global(3, 4)[0]);
46 assertEquals(4, Global(3, 4)[1]);
134 assertEquals(2048, Global.apply(this, array).length);
/external/llvm/lib/Target/PTX/MCTargetDesc/
H A DPTXBaseInfo.h25 Global = 0, // default to global state space enumerator in enum:llvm::PTXStateSpace::__anon6893
/external/webkit/Source/WebCore/bridge/
H A Dtestqtbindings.cpp77 class Global : public JSNonFinalObject { class in inherits:JSNonFinalObject
97 Global* global = new Global();
/external/clang/include/clang/AST/
H A DNestedNameSpecifier.h84 Global enumerator in enum:clang::NestedNameSpecifier::SpecifierKind
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp247 void LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, argument
249 unwrap(EE)->addGlobalMapping(unwrap<GlobalValue>(Global), Addr);
252 void *LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) { argument
253 return unwrap(EE)->getPointerToGlobal(unwrap<GlobalValue>(Global));
/external/chromium/net/base/
H A Dsdch_manager.cc50 if (!SdchManager::Global()->IsInSupportedDomain(target_url))
85 if (!SdchManager::Global()->IsInSupportedDomain(dictionary_url))
142 if (!SdchManager::Global()->IsInSupportedDomain(referring_url))
228 SdchManager* SdchManager::Global() { function in class:net::SdchManager
276 Global()->blacklisted_domains_.clear();
277 Global()->exponential_blacklist_count.clear();
282 Global()->blacklisted_domains_.erase(StringToLowerASCII(domain));
287 if (Global()->blacklisted_domains_.end() ==
288 Global()->blacklisted_domains_.find(domain))
290 return Global()
[all...]
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp472 bool Global; local
480 if (error(si->isGlobal(Global))) continue;
491 GlobLoc = Global ? 'g' : 'l';
501 << GlobLoc // Local -> 'l', Global -> 'g', Neither -> ' '
/external/llvm/tools/lto/
H A DLTOModule.cpp464 enum State { NeverSeen, Global, Defined, DefinedGlobal, Used}; enumerator in enum:__anon7147::RecordStreamer::State
473 case Global:
492 case Global:
494 S = Global;
503 case Global:
653 else if (Value == RecordStreamer::Global ||
/external/clang/lib/CodeGen/
H A DCodeGenModule.cpp744 bool CodeGenModule::MayDeferGeneration(const ValueDecl *Global) { argument
749 return !getContext().DeclMustBeEmitted(Global);
778 const ValueDecl *Global = cast<ValueDecl>(GD.getDecl()); local
781 if (Global->hasAttr<WeakRefAttr>())
786 if (Global->hasAttr<AliasAttr>())
792 if (!Global->hasAttr<CUDADeviceAttr>() &&
793 !Global->hasAttr<CUDAGlobalAttr>() &&
794 !Global->hasAttr<CUDAConstantAttr>() &&
795 !Global->hasAttr<CUDASharedAttr>())
798 if (!Global
[all...]
/external/v8/src/
H A Dd8.js75 // Global object holding debugger related constants and state.
102 Debug.ScopeType = { Global: 0,
585 // Global varaible used to store whether a handle was requested.
1661 case Debug.ScopeType.Global:
1662 result += 'Global, ';
H A Dmirror-debugger.js193 ScopeType = { Global: 0,
H A Dapi.cc3818 v8::Local<v8::Object> Context::Global() { function in class:v8::Context
3819 if (IsDeadCheck(i::Isolate::Current(), "v8::Context::Global()")) {
/external/valgrind/main/exp-ptrcheck/
H A Dsg_main.c836 } Global; member in union:__anon11188::__anon11189
861 VG_(printf)("Global [%#lx,+%lu)",
862 i->Inv.Global.nd->addr, i->Inv.Global.nd->szB);
885 return i1->Inv.Global.nd == i2->Inv.Global.nd;
918 str, inv->Inv.Global.nd->descr->name,
919 inv->Inv.Global.nd->descr->soname );
1042 if (0) VG_(printf)(" new Global size %2lu at %#lx: %s %s\n",
1200 tl_assert(inv->Inv.Global
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c769 CAMLprim value llvm_is_declaration(LLVMValueRef Global) { argument
770 return Val_bool(LLVMIsDeclaration(Global));
774 CAMLprim value llvm_linkage(LLVMValueRef Global) { argument
775 return Val_int(LLVMGetLinkage(Global));
779 CAMLprim value llvm_set_linkage(value Linkage, LLVMValueRef Global) { argument
780 LLVMSetLinkage(Global, Int_val(Linkage));
785 CAMLprim value llvm_section(LLVMValueRef Global) { argument
786 return copy_string(LLVMGetSection(Global));
790 CAMLprim value llvm_set_section(value Section, LLVMValueRef Global) { argument
791 LLVMSetSection(Global, String_va
796 llvm_visibility(LLVMValueRef Global) argument
801 llvm_set_visibility(value Viz, LLVMValueRef Global) argument
807 llvm_alignment(LLVMValueRef Global) argument
812 llvm_set_alignment(value Bytes, LLVMValueRef Global) argument
[all...]
/external/llvm/lib/VMCore/
H A DCore.cpp1033 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) { argument
1034 return wrap(unwrap<GlobalValue>(Global)->getParent());
1037 LLVMBool LLVMIsDeclaration(LLVMValueRef Global) { argument
1038 return unwrap<GlobalValue>(Global)->isDeclaration();
1041 LLVMLinkage LLVMGetLinkage(LLVMValueRef Global) { argument
1042 switch (unwrap<GlobalValue>(Global)->getLinkage()) {
1083 void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage) { argument
1084 GlobalValue *GV = unwrap<GlobalValue>(Global);
1144 const char *LLVMGetSection(LLVMValueRef Global) { argument
1145 return unwrap<GlobalValue>(Global)
1148 LLVMSetSection(LLVMValueRef Global, const char *Section) argument
1152 LLVMGetVisibility(LLVMValueRef Global) argument
1157 LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz) argument
1162 LLVMGetAlignment(LLVMValueRef Global) argument
1166 LLVMSetAlignment(LLVMValueRef Global, unsigned Bytes) argument
[all...]

Completed in 464 milliseconds