HomeSort by relevance Sort by last modified time
    Searched refs:typeId (Results 1 - 25 of 43) sorted by null

1 2

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedTypedExceptionHandler.java 38 private final int typeId;
43 this.typeId = reader.readSmallUleb128();
47 @Nonnull @Override public String getExceptionType() { return dexFile.getType(typeId); }
  /external/chromium_org/chrome/renderer/resources/extensions/
webview_request_custom_bindings.js 17 // Returns the schema definition of type |typeId| defined in
19 function getSchema(typeId) {
22 'declarativeWebRequest.' + typeId);
28 // {'instanceType': 'declarativeWebRequest.' + typeId} and validates the
29 // generated union dictionary against the schema for |typeId|.
30 function setupInstance(instance, parameters, typeId) {
37 instance.instanceType = 'declarativeWebRequest.' + typeId;
38 var schema = getSchema(typeId);
45 var typeId = typeSchema.id.replace('declarativeWebRequest.', '');
46 var action = function(typeId) {
    [all...]
declarative_content_custom_bindings.js 17 // Returns the schema definition of type |typeId| defined in |namespace|.
18 function getSchema(typeId) {
21 'declarativeContent.' + typeId);
27 // {'instanceType': 'declarativeContent.' + typeId} and validates the
28 // generated union dictionary against the schema for |typeId|.
29 function setupInstance(instance, parameters, typeId) {
35 instance.instanceType = 'declarativeContent.' + typeId;
36 var schema = getSchema(typeId);
declarative_webrequest_custom_bindings.js 15 // Returns the schema definition of type |typeId| defined in |namespace|.
16 function getSchema(typeId) {
19 'declarativeWebRequest.' + typeId);
25 // {'instanceType': 'declarativeWebRequest.' + typeId} and validates the
26 // generated union dictionary against the schema for |typeId|.
27 function setupInstance(instance, parameters, typeId) {
33 instance.instanceType = 'declarativeWebRequest.' + typeId;
34 var schema = getSchema(typeId);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
ProfileLauncherView.js 182 var typeId = WebInspector.settings.selectedProfileType.get();
183 if (!(typeId in this._typeIdToOptionElement))
184 typeId = Object.keys(this._typeIdToOptionElement)[0];
185 this._typeIdToOptionElement[typeId].checked = true;
186 var type = this._typeIdToOptionElement[typeId]._profileType;
ProfilesPanel.js 798 var typeId = profileType.id;
799 this._typeIdToSidebarSection[typeId].addProfileHeader(profile);
817 var typeId = profileType.id;
818 var sectionIsEmpty = this._typeIdToSidebarSection[typeId].removeProfileHeader(profile);
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
measunit.h 583 MeasureUnit(int32_t typeId, int32_t subTypeId) : fTypeId(typeId), fSubTypeId(subTypeId) {
586 void setTo(int32_t typeId, int32_t subTypeId);
588 static MeasureUnit *create(int typeId, int subTypeId, UErrorCode &status);
  /frameworks/base/core/java/android/widget/
RemoteViewsAdapter.java 442 public int getMappedViewType(int typeId) {
443 if (mTypeIdIndexMap.containsKey(typeId)) {
444 return mTypeIdIndexMap.get(typeId);
448 mTypeIdIndexMap.put(typeId, incrementalTypeId);
453 public boolean isViewTypeInRange(int typeId) {
454 int mappedType = getMappedViewType(typeId);
526 int typeId;
536 typeId = v.getLayoutId();
538 typeId = 0;
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
InstructionTransformer.java 89 int typeId = one.getIndex();
90 int mappedId = indexMap.adjustType(typeId);
  /external/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessage.java 438 // required int32 typeId = 2;
442 // "typeId" is the extension's field number. The extension can only be
451 int typeId = 0;
452 ByteString rawBytes = null; // If we encounter "message" before "typeId"
463 typeId = input.readUInt32();
465 if (typeId != 0) {
475 .findExtensionByNumber(type, typeId);
497 unknownFields.mergeField(typeId,
506 if (typeId == 0) {
512 unknownFields.mergeField(typeId,
    [all...]
  /external/icu/icu4c/source/i18n/
measunit.cpp 11 #include "utypeinfo.h" // for 'typeid' to work
619 if (typeid(*this) != typeid(other)) { // Different types, not equal
699 MeasureUnit *MeasureUnit::create(int typeId, int subTypeId, UErrorCode &status) {
703 MeasureUnit *result = new MeasureUnit(typeId, subTypeId);
732 void MeasureUnit::setTo(int32_t typeId, int32_t subTypeId) {
733 fTypeId = typeId;
  /hardware/intel/img/hwcomposer/ips/common/
WsbmWrapper.c 40 int typeId)
43 if(typeId == 0) {
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastResources.java 94 int typeId, int valueId) {
99 buf.append(context.getString(typeId));
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessage.java 606 // required int32 typeId = 2;
610 // "typeId" is the extension's field number. The extension can only be
619 int typeId = 0;
620 ByteString rawBytes = null; // If we encounter "message" before "typeId"
632 typeId = input.readUInt32();
633 if (typeId != 0) {
641 .findExtensionByNumber(type, typeId);
646 if (typeId != 0) {
668 if (rawBytes != null && typeId != 0) { // Zero is not a valid type ID.
674 unknownFields.mergeField(typeId, UnknownFieldSet.Field.newBuilder(
    [all...]
  /dalvik/libdex/
DexFile.h 639 /* return the TypeId with the specified index */
650 const DexTypeId* typeId = dexGetTypeId(pDexFile, idx);
651 return dexStringById(pDexFile, typeId->descriptorIdx);
  /frameworks/base/tools/aapt/
ResourceTable.h 205 uint32_t typeId,
208 return nameId | (typeId<<16) | (packageId<<24);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
NetworkPanel.js 167 for (var typeId in WebInspector.resourceTypes) {
168 var resourceType = WebInspector.resourceTypes[typeId];
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-util-0.9.0.M2.jar 
aether-impl-0.9.0.M2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /external/chromium_org/extensions/renderer/resources/
json_schema.js 150 * with "$ref": <typeId>. Each type must be a valid schema and define an
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-util/0.9.0.M3/
aether-util-0.9.0.M3.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.launching_3.5.100.v20100526.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/aether/aether-util/1.7/
aether-util-1.7.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/aether/aether-util/1.7/
aether-util-1.7.jar 

Completed in 821 milliseconds

1 2