HomeSort by relevance Sort by last modified time
    Searched full:isglobal (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/nist-sip/java/javax/sip/address/
TelURL.java 19 boolean isGlobal();
  /packages/apps/Camera/src/com/android/camera/
ComboPreferences.java 76 private static boolean isGlobal(String key) {
87 if (isGlobal(key) || !mPrefLocal.contains(key)) {
96 if (isGlobal(key) || !mPrefLocal.contains(key)) {
105 if (isGlobal(key) || !mPrefLocal.contains(key)) {
114 if (isGlobal(key) || !mPrefLocal.contains(key)) {
123 if (isGlobal(key) || !mPrefLocal.contains(key)) {
182 if (isGlobal(key)) {
192 if (isGlobal(key)) {
202 if (isGlobal(key)) {
212 if (isGlobal(key))
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
ComboPreferences.java 75 private static boolean isGlobal(String key) {
85 if (isGlobal(key) || !mPrefLocal.contains(key)) {
93 if (isGlobal(key) || !mPrefLocal.contains(key)) {
101 if (isGlobal(key) || !mPrefLocal.contains(key)) {
109 if (isGlobal(key) || !mPrefLocal.contains(key)) {
117 if (isGlobal(key) || !mPrefLocal.contains(key)) {
169 if (isGlobal(key)) {
178 if (isGlobal(key)) {
187 if (isGlobal(key)) {
196 if (isGlobal(key))
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
TelephoneNumber.java 47 /** isglobal field
49 protected boolean isglobal; field in class:TelephoneNumber
120 public boolean isGlobal() {
121 return isglobal;
149 isglobal = g;
189 if (isglobal)
TelURLImpl.java 96 public boolean isGlobal() {
97 return telephoneNumber.isGlobal();
  /frameworks/compile/mclinker/unittests/
StaticResolverTest.cpp 295 ASSERT_TRUE( sym->isGlobal() );
311 ASSERT_TRUE( sym->isGlobal() );
327 ASSERT_TRUE( sym->isGlobal() );
343 ASSERT_TRUE( sym->isGlobal() );
358 ASSERT_TRUE( sym->isGlobal() );
373 ASSERT_TRUE( sym->isGlobal() );
395 ASSERT_TRUE( sym->isGlobal() );
410 ASSERT_TRUE( sym->isGlobal() );
425 ASSERT_FALSE( sym->isGlobal() );
440 ASSERT_FALSE( sym->isGlobal() );
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 160 boolean isGlobal = (paths == m_absPaths);
172 list = matchAndEliminatePartialPaths(next, list, isGlobal, i, psuedoVarRecipient);
188 boolean isGlobal,
237 ElemTemplateElement root = isGlobal ? varScope : findCommonAncestor(matchedPaths);
240 ElemVariable var = createPseudoVarDecl(root, newIter, isGlobal);
242 System.err.println("Created var: "+var.getName()+(isGlobal ? "(Global)" : ""));
252 changePartToRef(var.getName(), iter, lengthToTest, isGlobal);
260 diagnoseMultistepList(matchCount, lengthToTest, isGlobal);
418 boolean isGlobal)
424 if (isGlobal)
    [all...]
XUnresolvedVariable.java 75 * @param isGlobal true if this is a global variable.
80 boolean isGlobal)
93 m_isGlobal = isGlobal;
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 35 if (!MO.isGlobal()) {
59 if (MO.isGlobal()) {
86 assert(MO.isGlobal() && "Extern symbol not handled yet");
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOT.h 69 bool isGlobal(const ResolveInfo* pInfo) {
  /external/clang/lib/Analysis/
CallGraph.cpp 88 void CallGraph::addNodeForDecl(Decl* D, bool IsGlobal) {
97 if (IsGlobal)
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 156 // isGlobal - [L,W] == [0, 0]
157 bool ResolveInfo::isGlobal() const
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Variable.java 84 * @param isGlobal true if this should be a global variable reference.
86 public void setIsGlobal(boolean isGlobal)
88 m_isGlobal = isGlobal;
  /external/v8/src/
compiler.h 54 bool is_global() const { return IsGlobal::decode(flags_); }
79 flags_ |= IsGlobal::encode(true);
213 class IsGlobal: public BitField<bool, 2, 1> {};
  /external/clang/include/clang/Analysis/
CallGraph.h 114 addNodeForDecl(FD, FD->isGlobal());
132 void addNodeForDecl(Decl *D, bool IsGlobal);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
GenerateResults.java 491 boolean isGlobal = component.startsWith("global");
492 if (isGlobal) {
532 printComponentTitle(/*performanceResults, */component, isGlobal, stream);
554 if (!isGlobal) {
576 private void printComponentTitle(/*PerformanceResults performanceResults, */String component, boolean isGlobal, PrintStream stream) {
582 if (!isGlobal) {
601 if (!isGlobal) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 239 /// isGlobal - Tests if this is a MO_GlobalAddress operand.
240 bool isGlobal() const { return OpKind == MO_GlobalAddress; }
426 assert(isGlobal() && "Wrong MachineOperand accessor");
443 assert((isGlobal() || isSymbol() || isCPI() || isTargetIndex() ||
491 assert((isGlobal() || isSymbol() || isCPI() || isTargetIndex() ||
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 46 assert((MO.isGlobal() || MO.isSymbol()) && "Isn't a symbol reference");
50 if (!MO.isGlobal()) {
84 assert(MO.isGlobal() && "Extern symbol not handled yet");
98 assert(MO.isGlobal() && "Extern symbol not handled yet");
114 if (MO.isGlobal()) {
X86CodeEmitter.cpp 427 if (RelocOp->isGlobal()) {
456 if (Op3.isGlobal()) {
    [all...]
X86AsmPrinter.cpp 330 assert(DispSpec.isGlobal() || DispSpec.isCPI() ||
420 if (MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isSymbol()) {
437 else if (MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isSymbol())
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 134 bool isGlobal = flags & SymbolRef::SF_Global;
135 if (isGlobal)
  /external/llvm/lib/Target/Mips/
MipsCodeEmitter.cpp 174 if (MO.isGlobal())
221 else if (MO.isGlobal()) {
  /frameworks/compile/slang/
slang_rs_backend.cpp 110 if (FD && FD->isGlobal()) {
180 if (FD && !FD->isGlobal()) {
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 145 bool isGlobal() const;
  /external/clang/lib/ARCMigrate/
TransUnbridgedCasts.cpp 128 if (FD->isGlobal() &&

Completed in 4404 milliseconds

1 2 3