/external/ltp/testcases/kernel/fs/fs_bind/cloneNS/ |
00_Descriptions.txt | 25 test01 - namespace with shared dirs 27 test03 - namespace with unclonable mount 28 test04 - namespace with private mount. 29 test05 - namespace with multi-level 30 test06 - namespace with shared point bind mounted 36 namespace with shared dirs 46 namespace with unclonable mount 51 namespace with private mount. 56 namespace with multi-level 62 namespace with shared point bind mounte [all...] |
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/ |
AssetFactory.java | 37 String namespace = asset.optString(Utils.NAMESPACE_FIELD, null); local 38 if (namespace == null) { 43 if (namespace.equals(Utils.NAMESPACE_WEB)) { 45 } else if (namespace.equals(Utils.NAMESPACE_ANDROID_APP)) { 48 throw new AssociationServiceException("Namespace " + namespace + " is not supported.");
|
AssetMatcherFactory.java | 28 private static final String NAMESPACE_NOT_SUPPORTED_STRING = "Namespace %s is not supported."; 34 String namespace = queryObject.optString(Utils.NAMESPACE_FIELD, null); local 35 if (namespace == null) { 40 if (namespace.equals(Utils.NAMESPACE_WEB)) { 42 } else if (namespace.equals(Utils.NAMESPACE_ANDROID_APP)) { 46 String.format(NAMESPACE_NOT_SUPPORTED_STRING, namespace));
|
/cts/tests/autofillservice/src/android/autofillservice/cts/common/ |
SettingsHelper.java | 40 public static void set(@NonNull String namespace, @NonNull String key, @Nullable String value) { 42 delete(namespace, key); 45 runShellCommand("settings put %s %s %s default", namespace, key, value); 55 public static void syncSet(@NonNull Context context, @NonNull String namespace, 58 syncDelete(context, namespace, key); 62 final String currentValue = get(namespace, key); 69 new OneTimeSettingsListener(context, namespace, key); 70 set(namespace, key, value); 73 final String newValue = get(namespace, key); 85 public static void delete(@NonNull String namespace, @NonNull String key) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
CharStreamState.cs | 35 namespace Antlr.Runtime
|
ITokenSource.cs | 36 namespace Antlr.Runtime
|
ITokenStreamInformation.cs | 29 namespace Antlr.Runtime {
|
RuleReturnScope.cs | 33 namespace Antlr.Runtime {
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeConstants.cs | 33 namespace Antlr.Runtime.Tree
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
IRuleReturnScope`1.cs | 33 namespace Antlr.Runtime
|
ITokenSource.cs | 33 namespace Antlr.Runtime
|
ITokenStreamInformation.cs | 29 namespace Antlr.Runtime
|
TokenTypes.cs | 33 namespace Antlr.Runtime
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/ |
ITokenSource`1.cs | 33 namespace Antlr.Runtime
|
/external/brotli/csharp/org/brotli/dec/ |
Context.cs | 6 namespace Org.Brotli.Dec
|
/libcore/luni/src/main/java/javax/xml/xpath/ |
XPathFunctionResolver.java | 21 import javax.xml.namespace.QName; 31 * namespace (functions with an explicit prefix). This means that you cannot 35 * same namespace. This is a consequence of the design of the resolver.</p>
|
XPathVariableResolver.java | 21 import javax.xml.namespace.QName;
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/templates/ |
ar_event_cpp.template | 34 using namespace ArchRast;
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/ |
SubtitleSampleEntry.java | 21 private String namespace; field in class:SubtitleSampleEntry 31 long contentSize = 8 + namespace.length() + schemaLocation.length() + imageMimeType.length() + 3; 38 namespace = IsoTypeReader.readString(content); 47 IsoTypeWriter.writeUtf8String(byteBuffer, namespace); 53 return namespace; 56 public void setNamespace(String namespace) { 57 this.namespace = namespace;
|
/external/webrtc/webrtc/base/ |
scoped_autorelease_pool.mm | 15 namespace rtc { 25 } // namespace rtc
|
/prebuilts/ndk/r16/sources/cxx-stl/system/include/ |
cstddef | 35 * The following 2 types are also declared in the 'std' namespace: 43 namespace std { 46 } // namespace std
|
/frameworks/base/core/java/android/util/ |
XmlPullAttributes.java | 49 public String getAttributeValue(String namespace, String name) { 50 return mParser.getAttributeValue(namespace, name); 61 public int getAttributeListValue(String namespace, String attribute, 64 getAttributeValue(namespace, attribute), options, defaultValue); 67 public boolean getAttributeBooleanValue(String namespace, String attribute, 70 getAttributeValue(namespace, attribute), defaultValue); 73 public int getAttributeResourceValue(String namespace, String attribute, 76 getAttributeValue(namespace, attribute), defaultValue); 79 public int getAttributeIntValue(String namespace, String attribute, 82 getAttributeValue(namespace, attribute), defaultValue) [all...] |
AttributeSet.java | 74 * Returns the namespace of the specified attribute. 81 * @return A String containing the namespace of the attribute, or null if th 116 * @param namespace The namespace of the attribute to get the value from. 122 public String getAttributeValue(String namespace, String name); 153 * @param namespace Namespace of attribute to retrieve. 161 public int getAttributeListValue(String namespace, String attribute, 167 * @param namespace Namespace of attribute to retrieve [all...] |
/build/soong/android/ |
namespace.go | 42 items []*Namespace 46 func (s *sortedNamespaces) add(namespace *Namespace) { 52 s.items = append(s.items, namespace) 55 func (s *sortedNamespaces) sortedItems() []*Namespace { 68 func (s *sortedNamespaces) index(namespace *Namespace) int { 70 if namespace == candidate { 81 rootNamespace *Namespace 89 // Map from dir to namespace. Will have duplicates if two dirs are part of the same namespace [all...] |
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
NopAttributeSet.java | 46 public String getAttributeValue(String namespace, String name) { 61 public int getAttributeListValue(String namespace, String attribute, String[] options, int 67 public boolean getAttributeBooleanValue(String namespace, String attribute, 73 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { 78 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) { 83 public int getAttributeUnsignedIntValue(String namespace, String attribute, 89 public float getAttributeFloatValue(String namespace, String attribute,
|