HomeSort by relevance Sort by last modified time
    Searched refs:extension (Results 401 - 425 of 2522) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pkgimport.py 39 for extension in "co":
40 compiled_path = self.module_path + extension
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintDeltaProcessor.java 170 int kind, @Nullable String extension, int flags, boolean isAndroidProject) {
179 if (EXT_JAVA.equals(extension)
  /system/chre/core/
sensor_type.cc 241 || extension::vendorSensorTypeIsOneShot(sensorType)
250 || extension::vendorSensorTypeIsOnChange(sensorType)
  /system/tools/aidl/tests/
test_util.cpp 38 string CanonicalNameToPath(const char* package_class, const char* extension) {
45 rel_path += extension;
  /test/vts-testcase/hal/script/build/
build_rule_gen.py 116 def GeneratedOutput(hal_name, hal_version, extension):
125 extension: string, extension of files e.g. '.cpp'.
136 hal_version, vts_spec, extension))
  /toolchain/binutils/binutils-2.27/gas/config/
tc-epiphany.c 803 int extension;
811 extension = 0;
837 extension += 3;
853 extension += 2;
861 extension += 3;
876 extension += 3;
950 md_number_to_chars (displacement, (valueT) addend, extension + 1);
952 fragP->fr_fix += (extension & -2); /* 0,2 or 4 bytes added. */
796 int extension; local
  /cts/hostsidetests/sustainedperf/shadertoy_android/jni/
shadertoy_renderer.cpp 77 const char* extension = (char*)( local
  /external/golang-protobuf/proto/
message_set.go 150 // MarshalMessageSet encodes the extension map represented by m in the message set wire format.
153 var m map[int32]Extension
160 case map[int32]Extension:
166 return nil, errors.New("proto: not an extension map")
169 // Sort extension IDs to provide a deterministic encoding.
191 // UnmarshalMessageSet decodes the extension map encoded in buf in the message set wire format.
194 var m map[int32]Extension
198 case map[int32]Extension:
201 return errors.New("proto: not an extension map")
227 m[id] = Extension{enc: b
    [all...]
message_set_test.go 59 t.Fatalf("Didn't retrieve extension 12345; map is %v", extensions.p.extensionMap)
64 t.Errorf("Combined extension is %q, want %q", got, want)
  /external/markdown/markdown/extensions/
headerid.py 4 HeaderID Extension for Python-Markdown
45 Use with MetaData extension:
166 class HeaderIdExtension (markdown.Extension):
  /external/nanopb-c/generator/
nanopb_generator.py 428 self.pbtype = 'EXTENSION'
470 '''Declaration of the extension type in the .pb.h file'''
472 msg = '/* Extension field %s was skipped because only "optional"\n' % self.fullname
473 msg +=' type of extension fields is currently supported. */\n'
479 '''Definition of the extension type in the .pb.c file'''
617 for extension in desc.extension:
618 yield names, extension
621 for extension in subdesc.extension
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_field.cc 61 extension_generators_[i].reset(MakeGenerator(descriptor->extension(i), params));
  /external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/extension/
ExtensionActivity.java 1 package com.davemorrissey.labs.subscaleview.test.extension;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
MtpDeviceIndex.java 148 // Checks whether the extension is supported or not.
155 final String extension = name.substring(lastDot + 1); local
157 Boolean result = sCachedSupportedExtenstions.get(extension);
162 extension.toLowerCase(Locale.US));
166 sCachedSupportedExtenstions.put(extension, result);
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
SigningExtension.java 48 * {@link ZFile} extension which signs the APK.
51 * This extension is capable of signing the APK using JAR signing (aka v1 scheme) and APK Signature
53 * extension's constructor.
57 // from apksig library. This class is an adapter between ZFile extension and ApkSignerEngine.
59 // extension events/callbacks.
62 // pipeline does not reuse ApkSignerEngine instances (or ZFile extension instances for that
64 // * ZFile extension receives no events for JAR entries already in the APK whereas
123 * The extension registered with the {@link ZFile}. {@code null} if not registered.
126 private ZFileExtension extension; field in class:SigningExtension
129 * The file this extension is attached to. {@code null} if not yet registered
    [all...]
  /external/deqp/modules/egl/
teglClientExtensionTests.cpp 150 string extension; local
152 while (std::getline(stream, extension, ' '))
154 if (extension == "EGL_EXT_client_extensions")
165 m_testCtx.getLog() << TestLog::Message << "eglQueryString(EGL_NO_DISPLAY, EGL_EXTENSIONS) didn't fail, but extension string doesn't contain EGL_EXT_client_extensions" <<TestLog::EndMessage;
219 m_testCtx.getLog() << TestLog::Message << "'" << clientExtensions[extNdx] << "' is not client extension" << TestLog::EndMessage;
228 m_testCtx.getLog() << TestLog::Message << "'" << displayExtensions[extNdx] << "' is not display extension" << TestLog::EndMessage;
306 m_testCtx.getLog() << TestLog::Message << "Extension '" << *iter << "' exists in client and display extension sets." << TestLog::EndMessage;
312 m_testCtx.getLog() << TestLog::Message << "Extension sets are not disjoint" << TestLog::EndMessage;
  /external/deqp/modules/gles31/functional/
es31fAndroidExtensionPackES31ATests.cpp 67 throw tcu::NotSupportedError("Test requires GL_ANDROID_extension_pack_es31a extension");
122 SubExtensionCase (Context& context, const char* name, const char* description, const char* extension);
130 SubExtensionCase::SubExtensionCase (Context& context, const char* name, const char* description, const char* extension)
132 , m_extension (extension)
140 << "Verifying that extension \"" << m_extension << "\" is supported."
147 << "Extension is supported."
156 << "Error, extension is not supported."
159 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Required extension not supported");
168 : TestCaseGroup(context, "android_extension_pack", "ANDROID_extension_pack_es31a extension tests")
252 const std::string description = "Check that extension " + name + " is supported if extension pack is supported"
    [all...]
  /external/deqp/modules/glshared/
glsFboUtil.cpp 186 static bool checkExtensionSupport (const ContextInfo& ctxInfo, const RenderContext& ctx, const std::string& extension)
188 if (de::beginsWith(extension, "GL_"))
189 return ctxInfo.isExtensionSupported(extension.c_str());
190 else if (extension == "DEQP_gles3_core_compatible")
192 else if (extension == "DEQP_gles31_core_compatible")
201 bool checkExtensionSupport (const RenderContext& ctx, const std::string& extension)
204 return checkExtensionSupport(*info, ctx, extension);
207 std::string getExtensionDescription (const std::string& extension)
209 if (de::beginsWith(extension, "GL_"))
210 return extension;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
LocaleExtensions.java 29 private SortedMap<Character, Extension> _map;
32 private static final SortedMap<Character, Extension> EMPTY_MAP =
33 Collections.unmodifiableSortedMap(new TreeMap<Character, Extension>());
46 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
51 NUMBER_THAI._map = new TreeMap<Character, Extension>();
73 // Build extension map
74 _map = new TreeMap<Character, Extension>();
88 Extension e = new Extension(key, AsciiUtil.toLowerString(value));
130 public Extension getExtension(Character key)
186 Extension extension = entry.getValue(); local
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
LocaleExtensions.java 25 private SortedMap<Character, Extension> _map;
28 private static final SortedMap<Character, Extension> EMPTY_MAP =
29 Collections.unmodifiableSortedMap(new TreeMap<Character, Extension>());
42 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
47 NUMBER_THAI._map = new TreeMap<Character, Extension>();
69 // Build extension map
70 _map = new TreeMap<Character, Extension>();
84 Extension e = new Extension(key, AsciiUtil.toLowerString(value));
126 public Extension getExtension(Character key)
182 Extension extension = entry.getValue(); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
LocaleExtensions.java 25 private SortedMap<Character, Extension> _map;
28 private static final SortedMap<Character, Extension> EMPTY_MAP =
29 Collections.unmodifiableSortedMap(new TreeMap<Character, Extension>());
42 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
47 NUMBER_THAI._map = new TreeMap<Character, Extension>();
69 // Build extension map
70 _map = new TreeMap<Character, Extension>();
84 Extension e = new Extension(key, AsciiUtil.toLowerString(value));
126 public Extension getExtension(Character key)
182 Extension extension = entry.getValue(); local
    [all...]
  /external/v8/src/parsing/
parse-info.h 17 class Extension;
108 v8::Extension* extension() const { return extension_; } function in class:v8::internal::ParseInfo
109 void set_extension(v8::Extension* extension) { extension_ = extension; }
260 v8::Extension* extension_;
  /external/webrtc/talk/media/webrtc/
webrtcmediaengine_unittest.cc 68 for (const auto& extension : extensions) {
69 if (last && *last > extension.name) {
72 last = &extension.name;
  /frameworks/av/drm/libdrmframework/plugins/passthru/src/
DrmPassthruPlugIn.cpp 162 String8 extension = path.getPathExtension(); local
163 extension.toLower();
164 return (String8(".passthru") == extension);

Completed in 3053 milliseconds

<<11121314151617181920>>