HomeSort by relevance Sort by last modified time
    Searched refs:descriptor (Results 376 - 400 of 980) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 167 DecisionDescriptor descriptor = decisions.Get(g, decisionNumber);
168 if (descriptor == null) {
169 descriptor = new DecisionDescriptor();
170 decisions.Put(g, decisionNumber, descriptor);
171 descriptor.decision = decisionNumber;
172 descriptor.fileName = currentGrammarFileName.Peek();
173 descriptor.ruleName = currentRuleName.Peek();
174 descriptor.line = currentLine.Peek();
175 descriptor.pos = currentPos.Peek();
176 descriptor.couldBacktrack = couldBacktrack
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 179 DecisionDescriptor descriptor = decisions.Get(g, decisionNumber);
180 if (descriptor == null)
182 descriptor = new DecisionDescriptor();
183 decisions.Put(g, decisionNumber, descriptor);
184 descriptor.decision = decisionNumber;
185 descriptor.fileName = currentGrammarFileName.Peek();
186 descriptor.ruleName = currentRuleName.Peek();
187 descriptor.line = currentLine.Peek();
188 descriptor.pos = currentPos.Peek();
189 descriptor.couldBacktrack = couldBacktrack
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 223 DecisionDescriptor descriptor = decisions.get(g, decisionNumber); local
224 if ( descriptor == null ) {
225 descriptor = new DecisionDescriptor();
226 decisions.put(g, decisionNumber, descriptor);
227 descriptor.decision = decisionNumber;
228 descriptor.fileName = (String)currentGrammarFileName.peek();
229 descriptor.ruleName = (String)currentRuleName.peek();
230 descriptor.line = (Integer)currentLine.peek();
231 descriptor.pos = (Integer)currentPos.peek();
232 descriptor.couldBacktrack = couldBacktrack
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_enum.cc 48 EnumGenerator::EnumGenerator(const EnumDescriptor* descriptor,
50 : descriptor_(descriptor),
51 classname_(ClassName(descriptor, false)),
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_enum.cc 42 #include <google/protobuf/descriptor.pb.h>
50 EnumGenerator::EnumGenerator(const EnumDescriptor* descriptor)
51 : descriptor_(descriptor) {
178 // at module init time because it wouldn't work with descriptor.proto, but
java_enum_field.h 49 explicit EnumFieldGenerator(const FieldDescriptor* descriptor,
84 explicit RepeatedEnumFieldGenerator(const FieldDescriptor* descriptor,
java_message_field.h 49 explicit MessageFieldGenerator(const FieldDescriptor* descriptor,
91 explicit RepeatedMessageFieldGenerator(const FieldDescriptor* descriptor,
java_primitive_field.h 49 explicit PrimitiveFieldGenerator(const FieldDescriptor* descriptor,
84 explicit RepeatedPrimitiveFieldGenerator(const FieldDescriptor* descriptor,
  /external/emma/core/java12/com/vladium/jcd/cls/
ClassDef.java 331 // c. The descriptor of the field in UTF encoding
364 // c. The descriptor of the method, ()V, in UTF encoding.
368 // c. The descriptor of the method in UTF encoding.
372 // c. The descriptor of the method in UTF encoding.
375 // descriptor separators (this is done for methods only, not for fields)
539 public int addField (final String name, final String descriptor, final int access_flags)
545 final int descriptor_index = addCONSTANT_Utf8 (descriptor, true);
556 public int addField (final String name, final String descriptor, final int access_flags,
563 final int descriptor_index = addCONSTANT_Utf8 (descriptor, true);
573 public Method_info newEmptyMethod (final String name, final String descriptor, final int access_flags
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_enum.cc 48 EnumGenerator::EnumGenerator(const EnumDescriptor* descriptor,
50 : descriptor_(descriptor),
51 classname_(ClassName(descriptor, false)),
  /external/protobuf/src/google/protobuf/compiler/java/
java_enum.cc 41 #include <google/protobuf/descriptor.pb.h>
49 EnumGenerator::EnumGenerator(const EnumDescriptor* descriptor)
50 : descriptor_(descriptor) {
164 // at module init time because it wouldn't work with descriptor.proto, but
  /frameworks/av/include/media/
AudioEffect.h 74 * Returns an effect descriptor during effect
79 * descriptor: address where the effect descriptor should be returned.
85 * BAD_VALUE invalid descriptor pointer or index
89 * *descriptor: updated with effect descriptor
91 static status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor);
95 * Returns the descriptor for the specified effect uuid.
99 * descriptor: address where the effect descriptor should be returned
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 118 * @param descriptor the updated ElementDescriptor.
122 ViewElementDescriptor descriptor);
165 ViewElementDescriptor descriptor = map.get(fqcn); local
166 if (descriptor != null) {
167 return descriptor;
212 ViewElementDescriptor descriptor = new CustomViewDescriptor(name, fqcn, local
217 descriptor.setSuperClass(parentDescriptor);
226 map.put(fqcn, descriptor);
231 return descriptor;
457 // parent class is a valid View class with a descriptor, so we create on
471 ViewElementDescriptor descriptor = new CustomViewDescriptor(name, fqcn, local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/properties/
ValueCompleterTest.java 134 TestValueCompleter(AttributeDescriptor descriptor) {
135 mDescriptor = descriptor;
136 assert descriptor.getAttributeInfo() != null;
  /art/runtime/
class_linker.cc 337 SetClassRoot(kPrimitiveChar, char_class.get()); // needs descriptor
1474 const char* descriptor = dex_file.GetFieldTypeDescriptor(field_id); local
1725 const char* descriptor = dex_file.GetClassDescriptor(dex_class_def); local
2024 const char* descriptor = Primitive::Descriptor(type); local
2321 const char* descriptor = kh.GetDescriptor(); local
2553 const char* descriptor = ClassHelper(klass).GetDescriptor(); local
3185 const char* descriptor = it.GetDescriptor(); local
3197 const char* descriptor = dex_file.GetReturnTypeDescriptor(proto_id); local
3979 const char* descriptor = dex_file.StringByTypeIdx(type_idx); local
    [all...]
  /external/bluetooth/bluedroid/bta/hh/
bta_hh_utils.c 137 /* Free buffer for report descriptor info */
138 utl_freebuf((void **)&p_cb->dscp_info.descriptor.dsc_list);
201 /* store report descriptor info */
204 utl_freebuf((void **)&p_cb->dscp_info.descriptor.dsc_list);
207 (p_cb->dscp_info.descriptor.dsc_list =
210 p_cb->dscp_info.descriptor.dl_len = p_dscp_info->dl_len;
211 memcpy(p_cb->dscp_info.descriptor.dsc_list, p_dscp_info->dsc_list,
471 utl_freebuf((void **)&bta_hh_cb.kdev[xx].dscp_info.descriptor.dsc_list);
  /external/bluetooth/bluedroid/btif/src/
btif_hh.c 564 dest->descriptor.dl_len = 0;
565 if (src->descriptor.dl_len >0)
567 dest->descriptor.dsc_list = (UINT8 *) GKI_getbuf(src->descriptor.dl_len);
568 if (dest->descriptor.dsc_list == NULL)
574 memcpy(dest->descriptor.dsc_list, src->descriptor.dsc_list, src->descriptor.dl_len);
575 dest->descriptor.dl_len = src->descriptor.dl_len
    [all...]
  /external/chromium_org/chrome/browser/profiles/
off_the_record_profile_io_data.cc 107 StoragePartitionDescriptor descriptor(partition_path, in_memory);
109 app_request_context_getter_map_.find(descriptor);
124 StoragePartitionDescriptor descriptor(partition_path, in_memory);
125 DCHECK_EQ(app_request_context_getter_map_.count(descriptor), 0u);
133 profile_, io_data_, descriptor, protocol_handler_interceptor.Pass(),
135 app_request_context_getter_map_[descriptor] = context;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CSSMetadata.js 698 var descriptor = WebInspector.CSSMetadata.descriptor(propertyName);
699 if (descriptor && descriptor.values)
700 acceptedKeywords.push.apply(acceptedKeywords, descriptor.values);
710 WebInspector.CSSMetadata.descriptor = function(propertyName)
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
basic-strict-mode.js 201 shouldBeTrue("(function f(arg){'use strict'; var descriptor = Object.getOwnPropertyDescriptor(arguments, 'caller'); return descriptor.get === descriptor.set; })()");
202 shouldBeTrue("(function f(arg){'use strict'; var descriptor = Object.getOwnPropertyDescriptor(arguments, 'callee'); return descriptor.get === descriptor.set; })()");
203 shouldBeTrue("(function f(arg){'use strict'; var descriptor = Object.getOwnPropertyDescriptor(f, 'caller'); return descriptor.get === descriptor.set; })()");
204 shouldBeTrue("(function f(arg){'use strict'; var descriptor = Object.getOwnPropertyDescriptor(f, 'arguments'); return descriptor.get === descriptor.set; })()" (…)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutContentAssist.java 81 // Custom view with unknown children; just use the root descriptor
98 for (ElementDescriptor descriptor : descriptors) {
99 if (descriptor.getXmlLocalName().startsWith(parent)) {
100 matches.add(descriptor);
142 ViewElementDescriptor descriptor = customViews.getDescriptor(project, fqcn); local
143 if (descriptor != null) {
144 descriptors.add(descriptor);
  /art/runtime/native/
java_lang_Class.cc 62 std::string descriptor(DotToDescriptor(name.c_str()));
65 mirror::Class* c = class_linker->FindClass(descriptor.c_str(), class_loader);
  /external/chromium_org/base/files/
file_posix.cc 180 int descriptor = HANDLE_EINTR(open(name.value().c_str(), open_flags, mode)); local
183 if (descriptor < 0) {
188 descriptor = HANDLE_EINTR(open(name.value().c_str(), open_flags, mode));
189 if (descriptor >= 0)
194 if (descriptor >= 0 && (flags & (FLAG_CREATE_ALWAYS | FLAG_CREATE)))
197 if ((descriptor >= 0) && (flags & FLAG_DELETE_ON_CLOSE))
200 if (descriptor >= 0)
205 file_ = descriptor;
  /external/chromium_org/base/
platform_file_posix.cc 182 int descriptor = local
186 if (descriptor < 0) {
192 descriptor = HANDLE_EINTR(
194 if (created && descriptor >= 0)
199 if (created && (descriptor >= 0) &&
203 if ((descriptor >= 0) && (flags & PLATFORM_FILE_DELETE_ON_CLOSE)) {
208 if (descriptor >= 0)
214 return descriptor;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
importer.h 44 #include <google/protobuf/descriptor.h>
120 const Message* descriptor,

Completed in 713 milliseconds

<<11121314151617181920>>