HomeSort by relevance Sort by last modified time
    Searched defs:Global (Results 1 - 16 of 16) sorted by null

  /external/clang/test/CodeGen/
2003-11-03-AddrArrayElement.c 6 char Global[100];
10 return &Global[i];
2002-08-02-UnionTest.c 11 union X Global;
12 Global.B = (void*)123; /* Interesting part */
13 return Global;
  /external/clang/test/CodeGenCXX/
internal-linkage.cpp 3 struct Global { Global(); };
10 // CHECK: @_ZN12_GLOBAL__N_15anon0E = internal global
11 Global anon0;
14 // CHECK: @anon1 = internal global
17 // CHECK: @anon2 = internal global
44 // CHECK: @_ZL21static_nonconst_xyzzy = internal global
54 // CHECK: @extern_nonconst_xyzzy = global
  /external/v8/test/mjsunit/
arguments-apply.js 37 function Global() {
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/
PTXBaseInfo.h 25 Global = 0, // default to global state space
  /external/webkit/Source/WebCore/bridge/
testqtbindings.cpp 77 class Global : public JSNonFinalObject {
79 virtual UString className() const { return "global"; }
96 // create interpreter w/ global object
97 Global* global = new Global(); local
100 RefPtr<Interpreter> interp = new Interpreter(global);
105 global->put(exec, Identifier("myInterface"), Instance::createRuntimeObject(Instance::QtLanguage, (void*)myObject));
134 } // end block, so that Interpreter and global get deleted
  /external/chromium/net/base/
sdch_manager.cc 50 if (!SdchManager::Global()->IsInSupportedDomain(target_url))
85 if (!SdchManager::Global()->IsInSupportedDomain(dictionary_url))
142 if (!SdchManager::Global()->IsInSupportedDomain(referring_url))
228 SdchManager* SdchManager::Global() {
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()->blacklisted_domains_[StringToLowerASCII(domain)]
    [all...]
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 39 /// (for dependent names), or the global specifier ('::', must be the
62 /// When the pointer is NULL, this specifier represents the global
83 /// \brief The global specifier '::'. There is no stored value.
84 Global
88 /// \brief Builds the global specifier.
139 /// \brief Returns the nested name specifier representing the global
409 /// \brief Turn this (empty) nested-name-specifier into the global
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 472 bool Global;
480 if (error(si->isGlobal(Global))) continue;
491 GlobLoc = Global ? 'g' : 'l';
501 << GlobLoc // Local -> 'l', Global -> 'g', Neither -> ' '
  /external/llvm/tools/lto/
LTOModule.cpp 464 enum State { NeverSeen, Global, Defined, DefinedGlobal, Used};
473 case Global:
492 case Global:
494 S = Global;
503 case Global:
653 else if (Value == RecordStreamer::Global ||
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 452 /// SetFunctionDefinitionAttributes - Set attributes for a global.
676 // Create a new global variable for the ConstantStruct in the Module.
681 "llvm.global.annotations");
690 // Not found yet, create a new global.
724 // Create the ConstantStruct for the global annotation.
744 bool CodeGenModule::MayDeferGeneration(const ValueDecl *Global) {
749 return !getContext().DeclMustBeEmitted(Global);
778 const ValueDecl *Global = cast<ValueDecl>(GD.getDecl());
781 if (Global->hasAttr<WeakRefAttr>())
786 if (Global->hasAttr<AliasAttr>()
    [all...]
  /external/v8/src/
d8.js 46 function GetCompletions(global, last, full) {
51 var current = global;
75 // Global object holding debugger related constants and state.
102 Debug.ScopeType = { Global: 0,
585 // Global varaible used to store whether a handle was requested.
604 // Remember the handle requested in a global variable.
616 // Request a global evaluation if there is no current frame.
618 request.arguments.global = true;
    [all...]
mirror-debugger.js 171 // A copy of the PropertyType enum from global.h
193 ScopeType = { Global: 0,
1031 * Returns whether this regular expression has the global (g) flag set.
1032 * @return {boolean} Value of the global flag
1034 RegExpMirror.prototype.global = function() {
1035 return this.value_.global;
    [all...]
api.cc 38 #include "global-handles.h"
    [all...]
  /external/valgrind/main/exp-ptrcheck/
sg_main.c 4 /*--- This file checks stack and global array accesses. ---*/
619 /* A node in a global interval tree. Zero length intervals
622 A global interval tree is a (WordFM GlobalTreeNode* void). There
623 is one global interval tree for the entire process.
700 /* Basically it's an error to add a global block to the tree that
736 overlapping global blocks. */
743 "overlapping global blocks\n");
810 Inv_Global, /* array-typed global block */
834 global blocks. */
836 } Global;
    [all...]
  /prebuilt/common/jython/
jython.jar 

Completed in 2412 milliseconds