Home
last modified time | relevance | path

Searched refs:overrides (Results 1 – 25 of 154) sorted by relevance

1234567

/external/clang/test/Index/
Doverrides.m100 // CHECK: overrides.m:12:9: ObjCInstanceMethodDecl=protoMethod:12:9 [Overrides @3:9]
101 // CHECK: overrides.m:22:9: ObjCInstanceMethodDecl=method:22:9 [Overrides @16:9]
102 // CHECK: overrides.m:23:9: ObjCInstanceMethodDecl=protoMethod:23:9 [Overrides @8:9, @12:9, @17:9, …
103 // CHECK: overrides.m:27:9: ObjCInstanceMethodDecl=method:27:9 (Definition) [Overrides @16:9]
104 // CHECK: overrides.m:28:9: ObjCClassMethodDecl=methodWithParam::28:9 (Definition) [Overrides @18:9]
105 // CHECK: overrides.m:32:9: ObjCInstanceMethodDecl=protoMethod:32:9 [Overrides @8:9]
106 // CHECK: overrides.m:36:9: ObjCInstanceMethodDecl=protoMethod:36:9 [Overrides @8:9, @12:9, @17:9, …
107 // CHECK: overrides.m:50:8: ObjCInstanceMethodDecl=meth:50:8 (Definition) [Overrides @43:8]
108 // CHECK: overrides.m:55:8: ObjCInstanceMethodDecl=kol:55:8 Extent=[55:1 - 55:12]
109 // CHECK: overrides.m:65:26: ObjCInstanceMethodDecl=prop1:65:26 [Overrides @59:25] Extent=[65:26 - …
[all …]
/external/emma/core/java12/com/vladium/emma/
DProcessor.java76 public synchronized final void setPropertyOverrides (final Properties overrides) in setPropertyOverrides() argument
78 m_propertyOverrides = EMMAProperties.wrap (overrides); in setPropertyOverrides()
85 public synchronized final void setPropertyOverrides (final IProperties overrides) in setPropertyOverrides() argument
87 m_propertyOverrides = overrides; in setPropertyOverrides()
/external/jsoncpp/
DAndroid.mk8 chromium-overrides/src/lib_json/json_value.cpp \
12 $(LOCAL_PATH)/chromium-overrides/include \
17 $(LOCAL_PATH)/chromium-overrides/include \
/external/emma/core/java12/com/vladium/util/
DProperty.java56 public static Properties combine (final Properties overrides, final Properties base) in combine() argument
62 if (overrides == null) in combine()
65 return overrides; in combine()
70 if (overrides == null) return base; in combine()
79 … for (Enumeration overrideNames = overrides.propertyNames (); overrideNames.hasMoreElements (); ) in combine()
82 final String v = overrides.getProperty (n); in combine()
DIProperties.java112 public static IProperties combine (final IProperties overrides, final IProperties base) in combine() argument
114 final IProperties result = overrides != null in combine()
115 ? overrides.copy () in combine()
/external/wpa_supplicant_8/src/utils/
Dradiotap.c121 iterator->overrides = NULL; in ieee80211_radiotap_iterator_init()
193 if (!iterator->overrides) in find_override()
197 if (iterator->_arg_index == iterator->overrides[i].field) { in find_override()
198 *align = iterator->overrides[i].align; in find_override()
199 *size = iterator->overrides[i].size; in find_override()
Dradiotap_iter.h74 const struct radiotap_override *overrides; member
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
Dantlr.js372 extend: function(subc, superc, overrides) { argument
386 if (overrides) {
387 for (var i in overrides) {
388 subc.prototype[i]=overrides[i];
391 org.antlr.lang._IEEnumFix(subc.prototype, overrides);
/external/emma/core/res/
Demma_default.properties4 # for user-editable property overrides use one of these options:
6 # (1) option-specific command line overrides, e.g.
/external/clang/tools/scan-view/
DScanView.py672 overrides = { 'ScanView' : {},
677 overrides['ScanView']['reporter'] = i
679 overrides['Radar']['Component'] = 'llvm - checker'
680 overrides['Radar']['Component Version'] = 'X'
681 return self.send_report(None, overrides)
/external/jemalloc/include/jemalloc/
Djemalloc_defs.h.in5 * Define overrides for non-standard allocator-related functions if they are
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
DDbg.stg31 /** Template overrides to add debugging to normal C output;
161 // Common debug event triggers used by region overrides below
177 // Region overrides that tell various constructs to add debugging triggers
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DCompositeGrammar.java402 Set<String> overrides = new HashSet<String>(); in _minimizeRuleSet() local
410 overrides.add(r.name); in _minimizeRuleSet()
415 p.grammar.overriddenRules = overrides; in _minimizeRuleSet()
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
DDbg.stg28 /** Template overrides to add debugging to normal Objective-C output;
143 // Common debug event triggers used by region overrides below
159 // Region overrides that tell various constructs to add debugging triggers
/external/dnsmasq/contrib/dnslist/
Ddhcp.css39 /* Any row but the first or second (overrides above rule) */
/external/clang/test/SemaObjC/
Dmethod-typecheck-3.m16 - (id)obj {return self;} // 'id' overrides are white-listed?
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
DDbg.stg56 // Common debug event triggers used by region overrides below
82 // Region overrides that tell various constructs to add debugging triggers
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DCalendar.java3564 if ( patternData.overrides != null ) { in formatHelper()
3565 String dateOverride = patternData.overrides[dateStyle + 4]; in formatHelper()
3566 String timeOverride = patternData.overrides[timeStyle]; in formatHelper()
3574 if ( patternData.overrides != null ) { in formatHelper()
3575 override = patternData.overrides[timeStyle]; in formatHelper()
3579 if ( patternData.overrides != null ) { in formatHelper()
3580 override = patternData.overrides[dateStyle + 4]; in formatHelper()
3593 private String[] overrides; field in Calendar.PatternData
3594 public PatternData(String[] patterns, String[] overrides) { in PatternData() argument
3596 this.overrides = overrides; in PatternData()
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
DDbg.stg31 /** Template overrides to add debugging to normal Java output;
211 // Common debug event triggers used by region overrides below
243 // Region overrides that tell various constructs to add debugging triggers
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
DDbg.stg28 /** Template overrides to add debugging to normal Java output;
179 // Common debug event triggers used by region overrides below
195 // Region overrides that tell various constructs to add debugging triggers
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
DDbg.stg32 /** Template overrides to add debugging to normal Java output;
210 // Common debug event triggers used by region overrides below
242 // Region overrides that tell various constructs to add debugging triggers
/external/clang/test/Analysis/inlining/
DDynDispatchBifurcate.m54 // Category overrides a public method.
88 int z = [c getZero]; // MyClass overrides getZero to return '1'.
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/
DTParser.g14 // methods, instance variables and overrides
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
DDbg.stg28 /** Template overrides to add debugging to normal Python output;
208 // Common debug event triggers used by region overrides below
224 // Region overrides that tell various constructs to add debugging triggers
/external/iptables/extensions/
Dlibxt_connlabel.man9 a number may be used instead. Using a number always overrides connlabel.conf.

1234567